pyvlx 0.2.27__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (84) hide show
  1. pyvlx/__init__.py +21 -0
  2. pyvlx/api/__init__.py +23 -0
  3. pyvlx/api/activate_scene.py +63 -0
  4. pyvlx/api/api_event.py +73 -0
  5. pyvlx/api/command_send.py +85 -0
  6. pyvlx/api/factory_default.py +34 -0
  7. pyvlx/api/frame_creation.py +202 -0
  8. pyvlx/api/frames/__init__.py +76 -0
  9. pyvlx/api/frames/alias_array.py +45 -0
  10. pyvlx/api/frames/frame.py +56 -0
  11. pyvlx/api/frames/frame_activate_scene.py +92 -0
  12. pyvlx/api/frames/frame_activation_log_updated.py +14 -0
  13. pyvlx/api/frames/frame_command_send.py +280 -0
  14. pyvlx/api/frames/frame_discover_nodes.py +64 -0
  15. pyvlx/api/frames/frame_error_notification.py +42 -0
  16. pyvlx/api/frames/frame_facory_default.py +32 -0
  17. pyvlx/api/frames/frame_get_all_nodes_information.py +218 -0
  18. pyvlx/api/frames/frame_get_limitation.py +127 -0
  19. pyvlx/api/frames/frame_get_local_time.py +38 -0
  20. pyvlx/api/frames/frame_get_network_setup.py +64 -0
  21. pyvlx/api/frames/frame_get_node_information.py +223 -0
  22. pyvlx/api/frames/frame_get_protocol_version.py +53 -0
  23. pyvlx/api/frames/frame_get_scene_list.py +82 -0
  24. pyvlx/api/frames/frame_get_state.py +47 -0
  25. pyvlx/api/frames/frame_get_version.py +72 -0
  26. pyvlx/api/frames/frame_helper.py +40 -0
  27. pyvlx/api/frames/frame_house_status_monitor_disable_cfm.py +14 -0
  28. pyvlx/api/frames/frame_house_status_monitor_disable_req.py +14 -0
  29. pyvlx/api/frames/frame_house_status_monitor_enable_cfm.py +14 -0
  30. pyvlx/api/frames/frame_house_status_monitor_enable_req.py +14 -0
  31. pyvlx/api/frames/frame_leave_learn_state.py +41 -0
  32. pyvlx/api/frames/frame_node_information_changed.py +57 -0
  33. pyvlx/api/frames/frame_node_state_position_changed_notification.py +84 -0
  34. pyvlx/api/frames/frame_password_change.py +114 -0
  35. pyvlx/api/frames/frame_password_enter.py +70 -0
  36. pyvlx/api/frames/frame_reboot.py +32 -0
  37. pyvlx/api/frames/frame_set_node_name.py +73 -0
  38. pyvlx/api/frames/frame_set_utc.py +45 -0
  39. pyvlx/api/frames/frame_status_request.py +212 -0
  40. pyvlx/api/get_all_nodes_information.py +46 -0
  41. pyvlx/api/get_limitation.py +64 -0
  42. pyvlx/api/get_local_time.py +34 -0
  43. pyvlx/api/get_network_setup.py +34 -0
  44. pyvlx/api/get_node_information.py +42 -0
  45. pyvlx/api/get_protocol_version.py +40 -0
  46. pyvlx/api/get_scene_list.py +49 -0
  47. pyvlx/api/get_state.py +43 -0
  48. pyvlx/api/get_version.py +34 -0
  49. pyvlx/api/house_status_monitor.py +52 -0
  50. pyvlx/api/leave_learn_state.py +33 -0
  51. pyvlx/api/password_enter.py +39 -0
  52. pyvlx/api/reboot.py +33 -0
  53. pyvlx/api/session_id.py +20 -0
  54. pyvlx/api/set_node_name.py +32 -0
  55. pyvlx/api/set_utc.py +31 -0
  56. pyvlx/api/status_request.py +48 -0
  57. pyvlx/config.py +54 -0
  58. pyvlx/connection.py +182 -0
  59. pyvlx/const.py +685 -0
  60. pyvlx/dataobjects.py +161 -0
  61. pyvlx/discovery.py +100 -0
  62. pyvlx/exception.py +26 -0
  63. pyvlx/heartbeat.py +79 -0
  64. pyvlx/klf200gateway.py +167 -0
  65. pyvlx/lightening_device.py +102 -0
  66. pyvlx/log.py +4 -0
  67. pyvlx/node.py +74 -0
  68. pyvlx/node_helper.py +165 -0
  69. pyvlx/node_updater.py +162 -0
  70. pyvlx/nodes.py +99 -0
  71. pyvlx/on_off_switch.py +44 -0
  72. pyvlx/opening_device.py +644 -0
  73. pyvlx/parameter.py +357 -0
  74. pyvlx/py.typed +0 -0
  75. pyvlx/pyvlx.py +124 -0
  76. pyvlx/scene.py +53 -0
  77. pyvlx/scenes.py +60 -0
  78. pyvlx/slip.py +48 -0
  79. pyvlx/string_helper.py +20 -0
  80. pyvlx-0.2.27.dist-info/METADATA +122 -0
  81. pyvlx-0.2.27.dist-info/RECORD +84 -0
  82. pyvlx-0.2.27.dist-info/WHEEL +5 -0
  83. pyvlx-0.2.27.dist-info/licenses/LICENSE +165 -0
  84. pyvlx-0.2.27.dist-info/top_level.txt +1 -0
@@ -0,0 +1,122 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyvlx
3
+ Version: 0.2.27
4
+ Summary: PyVLX is a wrapper for the Velux KLF 200 API. PyVLX enables you to run scenes and or open and close velux windows.
5
+ Home-page: https://github.com/Julius2342/pyvlx
6
+ Download-URL: https://github.com/Julius2342/pyvlx/archive/0.2.27.zip
7
+ Author: Julius Mittenzwei
8
+ Author-email: julius@mittenzwei.com
9
+ License: LGPL
10
+ Keywords: velux KLF 200 home automation
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: End Users/Desktop
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Topic :: System :: Hardware :: Hardware Drivers
15
+ Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Requires-Python: >=3.11
19
+ Description-Content-Type: text/markdown
20
+ License-File: LICENSE
21
+ Requires-Dist: PyYAML
22
+ Requires-Dist: zeroconf
23
+ Dynamic: author
24
+ Dynamic: author-email
25
+ Dynamic: classifier
26
+ Dynamic: description
27
+ Dynamic: description-content-type
28
+ Dynamic: download-url
29
+ Dynamic: home-page
30
+ Dynamic: keywords
31
+ Dynamic: license
32
+ Dynamic: license-file
33
+ Dynamic: requires-dist
34
+ Dynamic: requires-python
35
+ Dynamic: summary
36
+
37
+ PyVLX - controling VELUX windows with Python
38
+ ============================================
39
+
40
+ [![CI](https://github.com/Julius2342/pyvlx/actions/workflows/ci.yml/badge.svg)](https://github.com/Julius2342/pyvlx/actions/workflows/ci.yml)
41
+
42
+ PyVLX uses the Velux KLF 200 interface to control io-Homecontrol devices, e.g. Velux Windows.
43
+
44
+ Installation
45
+ ------------
46
+
47
+ PyVLX can be installed via:
48
+
49
+ ```bash
50
+ pip3 install pyvlx
51
+ ```
52
+
53
+ Home Assistant Plugin
54
+ ---------------------
55
+
56
+ PyVLX is used within [Home Assistant](https://www.home-assistant.io/components/velux/). To enable it add the following lines to your ~/.homeassistant/configuration.yml:
57
+
58
+ ```yaml
59
+ velux:
60
+ host: "192.168.0.0"
61
+ password: "1ADwl48dka"
62
+ ```
63
+
64
+ *Please note that this uses the WiFi password, not the web login.*
65
+
66
+ For debugging frames add:
67
+
68
+ ```yaml
69
+ logger:
70
+ default: warning
71
+ logs:
72
+ homeassistant.components.velux: debug
73
+ pyvlx: debug
74
+ ```
75
+
76
+
77
+ Basic Operations
78
+ ----------------
79
+
80
+ ```python
81
+ """Just a demo of the new PyVLX module."""
82
+ import asyncio
83
+ from pyvlx import PyVLX, Position
84
+
85
+
86
+ async def main(loop):
87
+ """Demonstrate functionality of PyVLX."""
88
+ pyvlx = PyVLX('pyvlx.yaml', loop=loop)
89
+ # Alternative:
90
+ # pyvlx = PyVLX(host="192.168.2.127", password="velux123", loop=loop)
91
+
92
+ # Runing scenes:
93
+ await pyvlx.load_scenes()
94
+ await pyvlx.scenes["All Windows Closed"].run()
95
+
96
+ # Changing position of windows:
97
+ await pyvlx.load_nodes()
98
+ await pyvlx.nodes['Bath'].open()
99
+ await pyvlx.nodes['Bath'].close()
100
+ await pyvlx.nodes['Bath'].set_position(Position(position_percent=45))
101
+
102
+ # Read limits of windows
103
+ # limit = await pyvlx.nodes['Bath'].get_limitation()
104
+ # limit.min_value
105
+ # limit.max_value
106
+
107
+ # Changing of on-off switches:
108
+ # await pyvlx.nodes['CoffeeMaker'].set_on()
109
+ # await pyvlx.nodes['CoffeeMaker'].set_off()
110
+
111
+ # You can easily rename nodes:
112
+ # await pyvlx.nodes["Window 10"].rename("Window 11")
113
+
114
+ await pyvlx.disconnect()
115
+
116
+ if __name__ == '__main__':
117
+ # pylint: disable=invalid-name
118
+ LOOP = asyncio.get_event_loop()
119
+ LOOP.run_until_complete(main(LOOP))
120
+ # LOOP.run_forever()
121
+ LOOP.close()
122
+ ```
@@ -0,0 +1,84 @@
1
+ pyvlx/__init__.py,sha256=9-lFF4trEhSYuXaiI7ha3sG_MSLstR3jB6CRzE3ahJw,766
2
+ pyvlx/config.py,sha256=H8AcBohRkIAdwM6fjSSTrUbVqxYb2SAUp_JZLfPeYWI,1993
3
+ pyvlx/connection.py,sha256=A4qCv7QV0vcFdRyOcsazuB4q7mRUMW3-j9_GoFxbTIk,6942
4
+ pyvlx/const.py,sha256=caqHWviz7vRaAtpW-1mSbeuFuaCruKH1TsTnWdPQ5Po,25559
5
+ pyvlx/dataobjects.py,sha256=qJaKTTZ67eSeB4xkV-iV7ZOTgcYhtuFtWviYO57GBuQ,5890
6
+ pyvlx/discovery.py,sha256=yoPMNsCBaHhQgrVcQmJfE8KeDONowUGOpwLrrj_p5GU,3908
7
+ pyvlx/exception.py,sha256=NsYGSl9OF7ttFtHqiLFZnEYytH3CnIDNoRCHo2h08l4,796
8
+ pyvlx/heartbeat.py,sha256=NaBu-OdV0eFyGemSOAwzLdLYMsJEEUuDI3lON9yBiF4,2911
9
+ pyvlx/klf200gateway.py,sha256=-Z8UqkU9xQdR5MEN91FNt4ogeyMrSAC64XnnGub_wBA,7124
10
+ pyvlx/lightening_device.py,sha256=dzaBJrrR_U8erxw2IpLXtEbs4hExSseOGnWiDJKr1U4,3267
11
+ pyvlx/log.py,sha256=d57nQrR2ZyiZUZBG0y1fcZiXtXs95kOCh_YRIqcLNvA,104
12
+ pyvlx/node.py,sha256=cNu4by0L-iaP0PBUxJebjoSa0npF7DwHsTfQ3G_o724,2666
13
+ pyvlx/node_helper.py,sha256=CvmgCf3jBmomLUvk3rHovaeBsuGHc0D0xmu6YnTpam4,5422
14
+ pyvlx/node_updater.py,sha256=WLVuMd393_UqPgflMhJrzdTotrUlQXY9KpWb_fQmURo,7972
15
+ pyvlx/nodes.py,sha256=UDqs4F7STqN5LuGIg4j_Jp4gkz31Nf2b9TIRRSBsMWw,3616
16
+ pyvlx/on_off_switch.py,sha256=YPXoj4uPpzag_1jNhOYTNS5JRIQIvxH8J_YPB2ksq9s,1436
17
+ pyvlx/opening_device.py,sha256=PWNZaGauEEPEff7dRvf5pis8RwudbbXnLTo7FT_V908,22575
18
+ pyvlx/parameter.py,sha256=s8EptpopumJyePbIazBcMGUb6n8jN7aBs1NO323y9wo,12219
19
+ pyvlx/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
+ pyvlx/pyvlx.py,sha256=l0PWgHl_Bu1cnvKbvyxFDd0KRdXZM2iL5g3t3QEG74U,4828
21
+ pyvlx/scene.py,sha256=fKh15jl5cmWUpMKwHlXXgVzNzyH-CCkRY_eL9eR8q5Q,1538
22
+ pyvlx/scenes.py,sha256=szJ5cAjraI8WL8FEFFvqVsT9MBSmcXYCHJCBE_nVldw,1993
23
+ pyvlx/slip.py,sha256=ugdL1QVXHpLCM063zYVmu2H1qn1GwincHElMhDJIC1g,1375
24
+ pyvlx/string_helper.py,sha256=bDzAhEyQcT2iPCof1JoopUZcLOD5VZ0UdMLqFOxjDGA,631
25
+ pyvlx/api/__init__.py,sha256=wGsaA6hn8qAV36mu6KSCFvc5vG2QEhIP3lAxT2_m4Nk,941
26
+ pyvlx/api/activate_scene.py,sha256=_fLnVBmd6KGU_DweTcxn7Phjfq8idwq21RZ9tCYT2z4,2498
27
+ pyvlx/api/api_event.py,sha256=o99YlqF08wevrIPspkVUmp94I5uKr2jHJcmlavQ0krg,2906
28
+ pyvlx/api/command_send.py,sha256=L70yS4CiGowgYOP33qrrJ8wAbZ31VOQP_xzHLiqZt9Y,3215
29
+ pyvlx/api/factory_default.py,sha256=mQuRKR9EgtlEPQSkGKhSzbzS3Lrk0yS1PAyDjrEj6Rs,1126
30
+ pyvlx/api/frame_creation.py,sha256=k2C5oenL2N5i_dnKK1zj79QjfRgIBCc0D0KTMM1v6JY,9105
31
+ pyvlx/api/get_all_nodes_information.py,sha256=dnsUSMTa9HzqJqXfWzVc_cTPAgCrVKZTS83wyleGBKE,1855
32
+ pyvlx/api/get_limitation.py,sha256=ePWTAe1xBg-5SboXYBpdxZZR247OXLcnzqpbBNJHLHo,2653
33
+ pyvlx/api/get_local_time.py,sha256=nccu42RpDA15xgB2CvgJuPDTwJE7S86dZcEMTHbb0ZY,1086
34
+ pyvlx/api/get_network_setup.py,sha256=f3rPqAW0S9jc33H1214ERBgcFACk_fTedTMxFidqJNM,1189
35
+ pyvlx/api/get_node_information.py,sha256=4GOm3mvqhqd2ktoax4vkWAhLdmaeHgnPkWzPu5oX-Ho,1569
36
+ pyvlx/api/get_protocol_version.py,sha256=_vA4-8XiYOPqQiSCxHDqkmOLu4a6Y4Xhebc_d9FpO3A,1421
37
+ pyvlx/api/get_scene_list.py,sha256=dRdw_qlz2lLHho1tDc_yDL6q8K5fe4NOrP__oZH3BU0,1851
38
+ pyvlx/api/get_state.py,sha256=RDUpZSFyBj2ksJl-q9LfgB4hniEcwmJBtDj8nrm090A,1526
39
+ pyvlx/api/get_version.py,sha256=ZhHYBBgxrWdObvft2M3U151I3_idPojKxHZ6gttYPWY,1186
40
+ pyvlx/api/house_status_monitor.py,sha256=lDrH4TXKuDq_lUlSaf_weIp4GQVHwUWXH5ilY_ti90I,1866
41
+ pyvlx/api/leave_learn_state.py,sha256=y9Zqjf7bQhkJn6oVz_xk-Xx3mMZ-mECacA2NDUYfZi0,1108
42
+ pyvlx/api/password_enter.py,sha256=28wvCffn6oD4vK4HxyJW9i5pgIam6gcvY5_1mSysBvs,1384
43
+ pyvlx/api/reboot.py,sha256=GSAPf6NAonIWV2nH876hUBYwslMZ9Ye4TILTFmfMvEI,1044
44
+ pyvlx/api/session_id.py,sha256=roFHItnE-fBmYpwgpE8r1W9kbIya72ImT_dIi9W33DY,572
45
+ pyvlx/api/set_node_name.py,sha256=vdL0Z_c-lY13GvGScMyWqNC0pQiuul0ncvDMbYABbi8,1123
46
+ pyvlx/api/set_utc.py,sha256=iQLO87hG7-3eJtp_obh28Y4R8MrUmp_S-XOtuBVnVgs,1041
47
+ pyvlx/api/status_request.py,sha256=bmAPZ5idcFWZho5d-95lMEF0hxLw85cwiIFj1ZC1SKk,1738
48
+ pyvlx/api/frames/__init__.py,sha256=mNJ2ippywvody9dq7jTxU4VGMPVT1E1tL9kh4if_F8I,3715
49
+ pyvlx/api/frames/alias_array.py,sha256=lGqUwAfy8LeHu9GwE2Fuat4rozFZ8nA38rcAEKANk1c,1626
50
+ pyvlx/api/frames/frame.py,sha256=yFbydr25zpl8Eyk8ZAX3zIHZ72bR348v9Bn2J5WadLE,1800
51
+ pyvlx/api/frames/frame_activate_scene.py,sha256=s54eG302_qMq5G1pw1bPKzOOgDF9IZLlZkfzOE1SDgw,3197
52
+ pyvlx/api/frames/frame_activation_log_updated.py,sha256=zyD8EB9LAYTRe8ojX-fibpY-G_GKNhlmBorEuzTscCE,355
53
+ pyvlx/api/frames/frame_command_send.py,sha256=6FYRy95Yhn8V81q0sl51zqpmnx38kXvYwusxE-kAMjE,10437
54
+ pyvlx/api/frames/frame_discover_nodes.py,sha256=9EyyXn2IhfvO3qMoBNKLcSyng96iUAgs1rfX3_R03Tg,1865
55
+ pyvlx/api/frames/frame_error_notification.py,sha256=8y4GpccMzdegoOMQre262dOSeCXTkDZer9qFWm6oTU8,1138
56
+ pyvlx/api/frames/frame_facory_default.py,sha256=WFdqNw5LC4ELPuUyDMUOdjGbkpVZv_gUlpjXDGrjncE,874
57
+ pyvlx/api/frames/frame_get_all_nodes_information.py,sha256=wutKFOCF-OOi4Uj6iNOGbJwiMqaC2HKyADXmBm9KhZI,8380
58
+ pyvlx/api/frames/frame_get_limitation.py,sha256=38BhHAIYsDZ4AGmYz2p-8ZDNez13tVz6Rq4bGrOip24,4720
59
+ pyvlx/api/frames/frame_get_local_time.py,sha256=o6N2if_-fy8G7iTmyscXr4ktAzjBuYpIgt9Q2zrW39Y,1075
60
+ pyvlx/api/frames/frame_get_network_setup.py,sha256=rhUb_yxQwWh3-rjCLnSXv5IgiNcW92FaKtOG3fYD7uk,2158
61
+ pyvlx/api/frames/frame_get_node_information.py,sha256=Du8Jnt-fvf1yvVgqUbTIIRR4AZFQjdOLVcpbqlvuOH0,8663
62
+ pyvlx/api/frames/frame_get_protocol_version.py,sha256=VAm_X4Y33guSADJx6stMWsdHM8KPsXhkO196I-VgJBU,1647
63
+ pyvlx/api/frames/frame_get_scene_list.py,sha256=-yHTZHj4-XBmwR2PndyTjGzMm7o9yTKmg-JvoxgWKyM,2680
64
+ pyvlx/api/frames/frame_get_state.py,sha256=WUXd9kloLF2S4wo1D253VSKxQqVBuiTXNmLDeQ5rBvk,1557
65
+ pyvlx/api/frames/frame_get_version.py,sha256=2DgGPinlRrgEdgpYWVMJVCTH--gJ4jvutVuUbwmjDOA,2480
66
+ pyvlx/api/frames/frame_helper.py,sha256=s8QjTDDykdI8mtEAZl9celcFAgdHzO1NCXI2K01QrBs,1317
67
+ pyvlx/api/frames/frame_house_status_monitor_disable_cfm.py,sha256=ZFX__mguYuOZAjHP7a0hw6M9BXjOpGjEfmtI1yy4B7c,426
68
+ pyvlx/api/frames/frame_house_status_monitor_disable_req.py,sha256=PfUgpmpIRHr2CZjRDiiKgggmK9mSamAzCJ2VwZAWOsU,415
69
+ pyvlx/api/frames/frame_house_status_monitor_enable_cfm.py,sha256=KPgeBWvs3wp94Y4cYufHUFqpM7Ritaw4lJlm4awQNrA,428
70
+ pyvlx/api/frames/frame_house_status_monitor_enable_req.py,sha256=i2mKQNUvJzdYjVYf860iX63u-NJiznIV_7cV8Oew_NM,411
71
+ pyvlx/api/frames/frame_leave_learn_state.py,sha256=OQL1gFL079CghS12wIqf3EtkHoGp2jy-DWcSTzhsHt8,1297
72
+ pyvlx/api/frames/frame_node_information_changed.py,sha256=TxJTTkmFwBtoAzJmxoi9X5mB1bGas9Sk_y4j_imZaAw,1971
73
+ pyvlx/api/frames/frame_node_state_position_changed_notification.py,sha256=rMWZZdgK0Ek6ZtAbRhk--Un9eRuiS1JYzAE-iECjGlo,3404
74
+ pyvlx/api/frames/frame_password_change.py,sha256=QwsONY1mNmYEZ5jely9zGprQbkGxN5iJrdt3Hj8wwu0,4158
75
+ pyvlx/api/frames/frame_password_enter.py,sha256=TJlu59Wq1GKyOlQldaKieCLJJcJGLfJKycR2-UTX3Gs,2297
76
+ pyvlx/api/frames/frame_reboot.py,sha256=QhP5THt6axA6IU9BdPh1I3kV9Z9xu79UGLGNbHUSt-0,827
77
+ pyvlx/api/frames/frame_set_node_name.py,sha256=NidbbDo6up8Z7vWyBoYnWy7D_UfM490RhF-UAOsl_A8,2295
78
+ pyvlx/api/frames/frame_set_utc.py,sha256=qKy-NyV6baolbTzT4KbYYG-_dqvCZmKF5Buq6fOU85E,1316
79
+ pyvlx/api/frames/frame_status_request.py,sha256=cy_bPG8priEQf5KVreXVrURUq9engfLq_a7E_6ap-1c,8265
80
+ pyvlx-0.2.27.dist-info/licenses/LICENSE,sha256=6n0EnHcF3BOvwgLdGOGCfzSE-CEv0_p7gvxKDDY0Msk,7816
81
+ pyvlx-0.2.27.dist-info/METADATA,sha256=v8MiJ3AEY_5aNJwpc_25AUxhPeO0m81SDQaKu3Uw574,3474
82
+ pyvlx-0.2.27.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
83
+ pyvlx-0.2.27.dist-info/top_level.txt,sha256=e8iDCwK-J6mO8CKEqA3HZMpBG0wez9FMYK5JKz1Wbrc,6
84
+ pyvlx-0.2.27.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,165 @@
1
+ GNU LESSER GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+
9
+ This version of the GNU Lesser General Public License incorporates
10
+ the terms and conditions of version 3 of the GNU General Public
11
+ License, supplemented by the additional permissions listed below.
12
+
13
+ 0. Additional Definitions.
14
+
15
+ As used herein, "this License" refers to version 3 of the GNU Lesser
16
+ General Public License, and the "GNU GPL" refers to version 3 of the GNU
17
+ General Public License.
18
+
19
+ "The Library" refers to a covered work governed by this License,
20
+ other than an Application or a Combined Work as defined below.
21
+
22
+ An "Application" is any work that makes use of an interface provided
23
+ by the Library, but which is not otherwise based on the Library.
24
+ Defining a subclass of a class defined by the Library is deemed a mode
25
+ of using an interface provided by the Library.
26
+
27
+ A "Combined Work" is a work produced by combining or linking an
28
+ Application with the Library. The particular version of the Library
29
+ with which the Combined Work was made is also called the "Linked
30
+ Version".
31
+
32
+ The "Minimal Corresponding Source" for a Combined Work means the
33
+ Corresponding Source for the Combined Work, excluding any source code
34
+ for portions of the Combined Work that, considered in isolation, are
35
+ based on the Application, and not on the Linked Version.
36
+
37
+ The "Corresponding Application Code" for a Combined Work means the
38
+ object code and/or source code for the Application, including any data
39
+ and utility programs needed for reproducing the Combined Work from the
40
+ Application, but excluding the System Libraries of the Combined Work.
41
+
42
+ 1. Exception to Section 3 of the GNU GPL.
43
+
44
+ You may convey a covered work under sections 3 and 4 of this License
45
+ without being bound by section 3 of the GNU GPL.
46
+
47
+ 2. Conveying Modified Versions.
48
+
49
+ If you modify a copy of the Library, and, in your modifications, a
50
+ facility refers to a function or data to be supplied by an Application
51
+ that uses the facility (other than as an argument passed when the
52
+ facility is invoked), then you may convey a copy of the modified
53
+ version:
54
+
55
+ a) under this License, provided that you make a good faith effort to
56
+ ensure that, in the event an Application does not supply the
57
+ function or data, the facility still operates, and performs
58
+ whatever part of its purpose remains meaningful, or
59
+
60
+ b) under the GNU GPL, with none of the additional permissions of
61
+ this License applicable to that copy.
62
+
63
+ 3. Object Code Incorporating Material from Library Header Files.
64
+
65
+ The object code form of an Application may incorporate material from
66
+ a header file that is part of the Library. You may convey such object
67
+ code under terms of your choice, provided that, if the incorporated
68
+ material is not limited to numerical parameters, data structure
69
+ layouts and accessors, or small macros, inline functions and templates
70
+ (ten or fewer lines in length), you do both of the following:
71
+
72
+ a) Give prominent notice with each copy of the object code that the
73
+ Library is used in it and that the Library and its use are
74
+ covered by this License.
75
+
76
+ b) Accompany the object code with a copy of the GNU GPL and this license
77
+ document.
78
+
79
+ 4. Combined Works.
80
+
81
+ You may convey a Combined Work under terms of your choice that,
82
+ taken together, effectively do not restrict modification of the
83
+ portions of the Library contained in the Combined Work and reverse
84
+ engineering for debugging such modifications, if you also do each of
85
+ the following:
86
+
87
+ a) Give prominent notice with each copy of the Combined Work that
88
+ the Library is used in it and that the Library and its use are
89
+ covered by this License.
90
+
91
+ b) Accompany the Combined Work with a copy of the GNU GPL and this license
92
+ document.
93
+
94
+ c) For a Combined Work that displays copyright notices during
95
+ execution, include the copyright notice for the Library among
96
+ these notices, as well as a reference directing the user to the
97
+ copies of the GNU GPL and this license document.
98
+
99
+ d) Do one of the following:
100
+
101
+ 0) Convey the Minimal Corresponding Source under the terms of this
102
+ License, and the Corresponding Application Code in a form
103
+ suitable for, and under terms that permit, the user to
104
+ recombine or relink the Application with a modified version of
105
+ the Linked Version to produce a modified Combined Work, in the
106
+ manner specified by section 6 of the GNU GPL for conveying
107
+ Corresponding Source.
108
+
109
+ 1) Use a suitable shared library mechanism for linking with the
110
+ Library. A suitable mechanism is one that (a) uses at run time
111
+ a copy of the Library already present on the user's computer
112
+ system, and (b) will operate properly with a modified version
113
+ of the Library that is interface-compatible with the Linked
114
+ Version.
115
+
116
+ e) Provide Installation Information, but only if you would otherwise
117
+ be required to provide such information under section 6 of the
118
+ GNU GPL, and only to the extent that such information is
119
+ necessary to install and execute a modified version of the
120
+ Combined Work produced by recombining or relinking the
121
+ Application with a modified version of the Linked Version. (If
122
+ you use option 4d0, the Installation Information must accompany
123
+ the Minimal Corresponding Source and Corresponding Application
124
+ Code. If you use option 4d1, you must provide the Installation
125
+ Information in the manner specified by section 6 of the GNU GPL
126
+ for conveying Corresponding Source.)
127
+
128
+ 5. Combined Libraries.
129
+
130
+ You may place library facilities that are a work based on the
131
+ Library side by side in a single library together with other library
132
+ facilities that are not Applications and are not covered by this
133
+ License, and convey such a combined library under terms of your
134
+ choice, if you do both of the following:
135
+
136
+ a) Accompany the combined library with a copy of the same work based
137
+ on the Library, uncombined with any other library facilities,
138
+ conveyed under the terms of this License.
139
+
140
+ b) Give prominent notice with the combined library that part of it
141
+ is a work based on the Library, and explaining where to find the
142
+ accompanying uncombined form of the same work.
143
+
144
+ 6. Revised Versions of the GNU Lesser General Public License.
145
+
146
+ The Free Software Foundation may publish revised and/or new versions
147
+ of the GNU Lesser General Public License from time to time. Such new
148
+ versions will be similar in spirit to the present version, but may
149
+ differ in detail to address new problems or concerns.
150
+
151
+ Each version is given a distinguishing version number. If the
152
+ Library as you received it specifies that a certain numbered version
153
+ of the GNU Lesser General Public License "or any later version"
154
+ applies to it, you have the option of following the terms and
155
+ conditions either of that published version or of any later version
156
+ published by the Free Software Foundation. If the Library as you
157
+ received it does not specify a version number of the GNU Lesser
158
+ General Public License, you may choose any version of the GNU Lesser
159
+ General Public License ever published by the Free Software Foundation.
160
+
161
+ If the Library as you received it specifies that a proxy can decide
162
+ whether future versions of the GNU Lesser General Public License shall
163
+ apply, that proxy's public statement of acceptance of any version is
164
+ permanent authorization for you to choose that version for the
165
+ Library.
@@ -0,0 +1 @@
1
+ pyvlx