index.rst 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. .. OpenLEADR documentation master file, created by
  2. sphinx-quickstart on Thu Jul 9 14:09:27 2020.
  3. You can adapt this file completely to your liking, but it should at least
  4. contain the root `toctree` directive.
  5. ====================
  6. Welcome to OpenLEADR
  7. ====================
  8. A friendly and compliant OpenADR implementation for Python 3.
  9. Key Features
  10. ============
  11. - Fully compliant OpenADR 2.0b implementation for both servers (Virtual Top Node) and clients (Virtual End Node)
  12. - Fully asyncio: you set up the coroutines that can handle certain events, and they get called when needed.
  13. - Fully pythonic: all messages are represented as simple Python dictionaries. All XML parsing and generation is done for you.
  14. Take a :ref:`feature_tour`!
  15. Project Status
  16. ==============
  17. The current version is |release|.
  18. This project is still a work in progress. Please see our :ref:`roadmap` for information.
  19. License
  20. =======
  21. This project is licensed under the Apache 2.0 license.
  22. Library Installation
  23. ====================
  24. .. code-block:: bash
  25. $ pip install openleadr
  26. OpenLEADR is compatible with Python 3.6+
  27. Getting Started
  28. ===============
  29. Client example::
  30. from openleadr import OpenADRClient
  31. import asyncio
  32. async def main():
  33. client = OpenADRClient(ven_name="Device001",
  34. vtn_url="http://localhost:8080/OpenADR2/Simple/2.0b")
  35. client.on_event = handle_event
  36. client.on_report = handle_report
  37. await client.run()
  38. async def handle_event(event):
  39. """
  40. This coroutine will be called
  41. when there is an event to be handled.
  42. """
  43. print("There is an event!")
  44. print(event)
  45. # Do something to determine whether to Opt In or Opt Out
  46. return 'optIn'
  47. async def handle_report(report):
  48. """
  49. This coroutine will be called
  50. when there is a report from the VTN.
  51. """
  52. print("There is a report!")
  53. print(report)
  54. loop = asyncio.get_event_loop()
  55. loop.create_task(main())
  56. loop.run_forever()
  57. This will connect to an OpenADR server (indicated by the vtn_url parameter), handle registration, start polling for events and reports, and will call your coroutines whenever an event or report is created for you.
  58. We have more examples available over at the :ref:`examples` page.
  59. Table of Contents
  60. =================
  61. .. toctree::
  62. :name: mastertoc
  63. :maxdepth: 2
  64. features
  65. openadr
  66. client
  67. server
  68. examples
  69. representations
  70. message_signing
  71. roadmap
  72. API Reference <api/modules>
  73. Representations of OpenADR payloads
  74. ===================================
  75. OpenLEADR uses Python dictionaries and vanilla Python types (like datetime and timedelta) to represent the OpenADR payloads. These pages serve as a reference to these representations.
  76. For example, this XML payload:
  77. .. code-block:: xml
  78. <?xml version="1.0" encoding="utf-8"?>
  79. <oadrPayload xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://openadr.org/oadr-2.0b/2012/07" xsi:schemaLocation="http://openadr.org/oadr-2.0b/2012/07 oadr_20b.xsd">
  80. <oadrSignedObject>
  81. <oadrResponse ei:schemaVersion="2.0b" xmlns:ei="http://docs.oasis-open.org/ns/energyinterop/201110">
  82. <ei:eiResponse>
  83. <ei:responseCode>200</ei:responseCode>
  84. <ei:responseDescription>OK</ei:responseDescription>
  85. <requestID xmlns="http://docs.oasis-open.org/ns/energyinterop/201110/payloads" />
  86. </ei:eiResponse>
  87. <ei:venID>o57b65be83</ei:venID>
  88. </oadrResponse>
  89. </oadrSignedObject>
  90. </oadrPayload>
  91. is represented in OpenLEADR as:
  92. .. code-block:: python3
  93. {'response': {'response_code': 200,
  94. 'response_description': 'OK'},
  95. 'ven_id': 'o57b65be83'}
  96. Read more about the representations at :ref:`representations`
  97. Indices and tables
  98. ==================
  99. * :ref:`genindex`
  100. * :ref:`modindex`
  101. * :ref:`search`