juham-automation 0.0.5__tar.gz → 0.0.7__tar.gz

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 (174) hide show
  1. {juham_automation-0.0.5 → juham_automation-0.0.7}/LICENSE.rst +25 -25
  2. {juham_automation-0.0.5 → juham_automation-0.0.7}/MANIFEST.in +12 -12
  3. {juham_automation-0.0.5 → juham_automation-0.0.7}/PKG-INFO +103 -103
  4. {juham_automation-0.0.5 → juham_automation-0.0.7}/README.rst +46 -46
  5. juham_automation-0.0.7/docs/build/html/.buildinfo +4 -0
  6. juham_automation-0.0.5/docs/build/html/.buildinfo → juham_automation-0.0.7/docs/build/html/.buildinfo.bak +4 -4
  7. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_modules/index.html +147 -147
  8. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_modules/juham_core/juham.html +477 -477
  9. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_modules/juham_core/juham_ts.html +271 -271
  10. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_modules/masterpiece/application.html +473 -473
  11. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_modules/masterpiece/composite.html +333 -333
  12. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_modules/masterpiece/masterpiece.html +642 -642
  13. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_sources/index.rst.txt +57 -57
  14. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_sources/juham_automation/index.rst.txt +9 -9
  15. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/basic.css +913 -924
  16. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-sphinx.css +221 -221
  17. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-sphinx.js +174 -174
  18. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/doctools.js +0 -7
  19. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/documentation_options.js +12 -12
  20. juham_automation-0.0.7/docs/build/html/_static/graphviz.css +12 -0
  21. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/juham.css +64 -64
  22. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/language_data.js +192 -199
  23. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/pygments.css +74 -74
  24. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/searchtools.js +37 -21
  25. juham_automation-0.0.7/docs/build/html/genindex.html +140 -0
  26. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/index.html +388 -405
  27. juham_automation-0.0.7/docs/build/html/juham_automation/index.html +161 -0
  28. juham_automation-0.0.7/docs/build/html/objects.inv +0 -0
  29. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/py-modindex.html +157 -157
  30. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/search.html +154 -154
  31. juham_automation-0.0.7/docs/build/html/searchindex.js +1 -0
  32. {juham_automation-0.0.5 → juham_automation-0.0.7}/examples/myapp.py +37 -37
  33. {juham_automation-0.0.5 → juham_automation-0.0.7}/juham_automation/__init__.py +38 -38
  34. {juham_automation-0.0.5 → juham_automation-0.0.7}/juham_automation/automation/__init__.py +21 -21
  35. {juham_automation-0.0.5 → juham_automation-0.0.7}/juham_automation/automation/energycostcalculator.py +266 -266
  36. {juham_automation-0.0.5 → juham_automation-0.0.7}/juham_automation/automation/hotwateroptimizer.py +573 -527
  37. {juham_automation-0.0.5 → juham_automation-0.0.7}/juham_automation/automation/powermeter_simulator.py +139 -139
  38. {juham_automation-0.0.5 → juham_automation-0.0.7}/juham_automation/automation/spothintafi.py +123 -123
  39. {juham_automation-0.0.5 → juham_automation-0.0.7}/juham_automation/automation/watercirculator.py +159 -159
  40. {juham_automation-0.0.5 → juham_automation-0.0.7}/juham_automation/japp.py +49 -49
  41. {juham_automation-0.0.5 → juham_automation-0.0.7}/juham_automation/ts/__init__.py +25 -25
  42. {juham_automation-0.0.5 → juham_automation-0.0.7}/juham_automation/ts/electricityprice_ts.py +47 -47
  43. {juham_automation-0.0.5 → juham_automation-0.0.7}/juham_automation/ts/energycostcalculator_ts.py +43 -43
  44. {juham_automation-0.0.5 → juham_automation-0.0.7}/juham_automation/ts/forecast_ts.py +97 -97
  45. {juham_automation-0.0.5 → juham_automation-0.0.7}/juham_automation/ts/log_ts.py +57 -57
  46. {juham_automation-0.0.5 → juham_automation-0.0.7}/juham_automation/ts/power_ts.py +49 -49
  47. {juham_automation-0.0.5 → juham_automation-0.0.7}/juham_automation/ts/powermeter_ts.py +70 -70
  48. {juham_automation-0.0.5 → juham_automation-0.0.7}/juham_automation/ts/powerplan_ts.py +45 -45
  49. {juham_automation-0.0.5 → juham_automation-0.0.7}/juham_automation.egg-info/PKG-INFO +103 -103
  50. {juham_automation-0.0.5 → juham_automation-0.0.7}/juham_automation.egg-info/SOURCES.txt +2 -30
  51. {juham_automation-0.0.5 → juham_automation-0.0.7}/juham_automation.egg-info/entry_points.txt +1 -1
  52. {juham_automation-0.0.5 → juham_automation-0.0.7}/juham_automation.egg-info/requires.txt +2 -2
  53. {juham_automation-0.0.5 → juham_automation-0.0.7}/pyproject.toml +77 -77
  54. {juham_automation-0.0.5 → juham_automation-0.0.7}/setup.cfg +4 -4
  55. {juham_automation-0.0.5 → juham_automation-0.0.7}/tests/__init__.py +1 -1
  56. {juham_automation-0.0.5 → juham_automation-0.0.7}/tests/automation/__init__.py +1 -1
  57. {juham_automation-0.0.5 → juham_automation-0.0.7}/tests/automation/test_energycostcalculator.py +118 -118
  58. {juham_automation-0.0.5 → juham_automation-0.0.7}/tests/automation/test_hotwateroptimizer.py +20 -20
  59. {juham_automation-0.0.5 → juham_automation-0.0.7}/tests/automation/test_juham.py +65 -65
  60. {juham_automation-0.0.5 → juham_automation-0.0.7}/tests/test_japp.py +18 -18
  61. juham_automation-0.0.7/tests/ts/__init__.py +1 -0
  62. {juham_automation-0.0.5 → juham_automation-0.0.7}/tests/ts/test_energycostcalculator_ts.py +14 -14
  63. {juham_automation-0.0.5 → juham_automation-0.0.7}/tests/ts/test_forecast_ts.py +14 -14
  64. {juham_automation-0.0.5 → juham_automation-0.0.7}/tests/ts/test_log_ts.py +14 -14
  65. {juham_automation-0.0.5 → juham_automation-0.0.7}/tests/ts/test_power_ts.py +14 -14
  66. {juham_automation-0.0.5 → juham_automation-0.0.7}/tests/ts/test_powermeter_ts.py +14 -14
  67. {juham_automation-0.0.5 → juham_automation-0.0.7}/tests/ts/test_powerplan_ts.py +14 -14
  68. juham_automation-0.0.5/docs/build/html/_images/inheritance-0c6ef089a7a7f411f3d0290bc4290f5c273d8ef6.svg +0 -269
  69. juham_automation-0.0.5/docs/build/html/_modules/juham_automation/automation/energycostcalculator.html +0 -434
  70. juham_automation-0.0.5/docs/build/html/_modules/juham_automation/automation/hotwateroptimizer.html +0 -709
  71. juham_automation-0.0.5/docs/build/html/_modules/juham_automation/automation/powermeter_simulator.html +0 -292
  72. juham_automation-0.0.5/docs/build/html/_modules/juham_automation/automation/spothintafi.html +0 -279
  73. juham_automation-0.0.5/docs/build/html/_modules/juham_automation/automation/watercirculator.html +0 -312
  74. juham_automation-0.0.5/docs/build/html/_modules/juham_automation/japp.html +0 -199
  75. juham_automation-0.0.5/docs/build/html/_modules/juham_automation/ts/electricityprice_ts.html +0 -194
  76. juham_automation-0.0.5/docs/build/html/_modules/juham_automation/ts/energycostcalculator_ts.html +0 -190
  77. juham_automation-0.0.5/docs/build/html/_modules/juham_automation/ts/forecast_ts.html +0 -244
  78. juham_automation-0.0.5/docs/build/html/_modules/juham_automation/ts/log_ts.html +0 -201
  79. juham_automation-0.0.5/docs/build/html/_modules/juham_automation/ts/power_ts.html +0 -193
  80. juham_automation-0.0.5/docs/build/html/_modules/juham_automation/ts/powermeter_ts.html +0 -223
  81. juham_automation-0.0.5/docs/build/html/_modules/juham_automation/ts/powerplan_ts.html +0 -189
  82. juham_automation-0.0.5/docs/build/html/_modules/juham_core/juham_thread.html +0 -248
  83. juham_automation-0.0.5/docs/build/html/_static/graphviz.css +0 -19
  84. juham_automation-0.0.5/docs/build/html/genindex.html +0 -1907
  85. juham_automation-0.0.5/docs/build/html/juham_automation/index.html +0 -12309
  86. juham_automation-0.0.5/docs/build/html/objects.inv +0 -0
  87. juham_automation-0.0.5/docs/build/html/searchindex.js +0 -1
  88. juham_automation-0.0.5/examples/myapp.log +0 -252
  89. juham_automation-0.0.5/tests/__pycache__/test_japp.cpython-312.pyc +0 -0
  90. juham_automation-0.0.5/tests/automation/__pycache__/__init__.cpython-312.pyc +0 -0
  91. juham_automation-0.0.5/tests/automation/__pycache__/test_energycostcalculator.cpython-312.pyc +0 -0
  92. juham_automation-0.0.5/tests/automation/__pycache__/test_hotwateroptimizer.cpython-312.pyc +0 -0
  93. juham_automation-0.0.5/tests/automation/__pycache__/test_juham.cpython-312.pyc +0 -0
  94. juham_automation-0.0.5/tests/automation/__pycache__/test_powermeter_simulator.cpython-312.pyc +0 -0
  95. juham_automation-0.0.5/tests/ts/__init__.py +0 -1
  96. juham_automation-0.0.5/tests/ts/__pycache__/__init__.cpython-312.pyc +0 -0
  97. juham_automation-0.0.5/tests/ts/__pycache__/test_energycostcalculator_ts.cpython-312.pyc +0 -0
  98. juham_automation-0.0.5/tests/ts/__pycache__/test_forecast_ts.cpython-312.pyc +0 -0
  99. juham_automation-0.0.5/tests/ts/__pycache__/test_log_ts.cpython-312.pyc +0 -0
  100. juham_automation-0.0.5/tests/ts/__pycache__/test_power_ts.cpython-312.pyc +0 -0
  101. juham_automation-0.0.5/tests/ts/__pycache__/test_powermeter_ts.cpython-312.pyc +0 -0
  102. juham_automation-0.0.5/tests/ts/__pycache__/test_powerplan_ts.cpython-312.pyc +0 -0
  103. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/.nojekyll +0 -0
  104. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_images/juham.png +0 -0
  105. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-2.3.2/css/bootstrap-responsive.css +0 -0
  106. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-2.3.2/css/bootstrap-responsive.min.css +0 -0
  107. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-2.3.2/css/bootstrap.css +0 -0
  108. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-2.3.2/css/bootstrap.min.css +0 -0
  109. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-2.3.2/img/glyphicons-halflings-white.png +0 -0
  110. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-2.3.2/img/glyphicons-halflings.png +0 -0
  111. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-2.3.2/js/bootstrap.js +0 -0
  112. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-2.3.2/js/bootstrap.min.js +0 -0
  113. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-3.4.1/css/bootstrap-theme.css +0 -0
  114. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-3.4.1/css/bootstrap-theme.css.map +0 -0
  115. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-3.4.1/css/bootstrap-theme.min.css +0 -0
  116. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-3.4.1/css/bootstrap-theme.min.css.map +0 -0
  117. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-3.4.1/css/bootstrap.css +0 -0
  118. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-3.4.1/css/bootstrap.css.map +0 -0
  119. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-3.4.1/css/bootstrap.min.css +0 -0
  120. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-3.4.1/css/bootstrap.min.css.map +0 -0
  121. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.eot +0 -0
  122. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.svg +0 -0
  123. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.ttf +0 -0
  124. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.woff +0 -0
  125. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-3.4.1/fonts/glyphicons-halflings-regular.woff2 +0 -0
  126. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-3.4.1/js/bootstrap.js +0 -0
  127. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-3.4.1/js/bootstrap.min.js +0 -0
  128. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootstrap-3.4.1/js/npm.js +0 -0
  129. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-2.3.2/amelia/bootstrap.min.css +0 -0
  130. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-2.3.2/cerulean/bootstrap.min.css +0 -0
  131. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-2.3.2/cosmo/bootstrap.min.css +0 -0
  132. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-2.3.2/cyborg/bootstrap.min.css +0 -0
  133. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-2.3.2/flatly/bootstrap.min.css +0 -0
  134. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-2.3.2/img/glyphicons-halflings-white.png +0 -0
  135. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-2.3.2/img/glyphicons-halflings.png +0 -0
  136. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-2.3.2/journal/bootstrap.min.css +0 -0
  137. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-2.3.2/readable/bootstrap.min.css +0 -0
  138. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-2.3.2/simplex/bootstrap.min.css +0 -0
  139. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-2.3.2/slate/bootstrap.min.css +0 -0
  140. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-2.3.2/spacelab/bootstrap.min.css +0 -0
  141. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-2.3.2/spruce/bootstrap.min.css +0 -0
  142. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-2.3.2/superhero/bootstrap.min.css +0 -0
  143. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-2.3.2/united/bootstrap.min.css +0 -0
  144. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-3.4.1/cerulean/bootstrap.min.css +0 -0
  145. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-3.4.1/cosmo/bootstrap.min.css +0 -0
  146. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-3.4.1/cyborg/bootstrap.min.css +0 -0
  147. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-3.4.1/darkly/bootstrap.min.css +0 -0
  148. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-3.4.1/flatly/bootstrap.min.css +0 -0
  149. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-3.4.1/fonts/glyphicons-halflings-regular.eot +0 -0
  150. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-3.4.1/fonts/glyphicons-halflings-regular.svg +0 -0
  151. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-3.4.1/fonts/glyphicons-halflings-regular.ttf +0 -0
  152. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-3.4.1/fonts/glyphicons-halflings-regular.woff +0 -0
  153. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-3.4.1/fonts/glyphicons-halflings-regular.woff2 +0 -0
  154. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-3.4.1/journal/bootstrap.min.css +0 -0
  155. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-3.4.1/lumen/bootstrap.min.css +0 -0
  156. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-3.4.1/paper/bootstrap.min.css +0 -0
  157. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-3.4.1/readable/bootstrap.min.css +0 -0
  158. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-3.4.1/sandstone/bootstrap.min.css +0 -0
  159. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-3.4.1/simplex/bootstrap.min.css +0 -0
  160. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-3.4.1/slate/bootstrap.min.css +0 -0
  161. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-3.4.1/spacelab/bootstrap.min.css +0 -0
  162. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-3.4.1/superhero/bootstrap.min.css +0 -0
  163. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-3.4.1/united/bootstrap.min.css +0 -0
  164. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/bootswatch-3.4.1/yeti/bootstrap.min.css +0 -0
  165. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/file.png +0 -0
  166. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/js/jquery-1.12.4.min.js +0 -0
  167. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/js/jquery-fix.js +0 -0
  168. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/juham.png +0 -0
  169. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/minus.png +0 -0
  170. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/plus.png +0 -0
  171. {juham_automation-0.0.5 → juham_automation-0.0.7}/docs/build/html/_static/sphinx_highlight.js +0 -0
  172. {juham_automation-0.0.5 → juham_automation-0.0.7}/juham_automation/py.typed +0 -0
  173. {juham_automation-0.0.5 → juham_automation-0.0.7}/juham_automation.egg-info/dependency_links.txt +0 -0
  174. {juham_automation-0.0.5 → juham_automation-0.0.7}/juham_automation.egg-info/top_level.txt +0 -0
@@ -1,25 +1,25 @@
1
- LICENSE
2
- =======
3
-
4
- Copyright (c) 2024, Juha Meskanen
5
-
6
- Permission is hereby granted, free of charge, to any person obtaining
7
- a copy of this software and associated documentation files (the
8
- "Software"), to deal in the Software without restriction, including
9
- without limitation the rights to use, copy, modify, merge, publish,
10
- distribute, sublicense, and/or sell copies of the Software, and to
11
- permit persons to whom the Software is furnished to do so, subject to
12
- the following conditions:
13
-
14
- **The above copyright notice and this permission notice shall be included in all
15
- copies or substantial portions of the Software.**
16
-
17
-
18
- ** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
22
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. **
25
-
1
+ LICENSE
2
+ =======
3
+
4
+ Copyright (c) 2024, Juha Meskanen
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining
7
+ a copy of this software and associated documentation files (the
8
+ "Software"), to deal in the Software without restriction, including
9
+ without limitation the rights to use, copy, modify, merge, publish,
10
+ distribute, sublicense, and/or sell copies of the Software, and to
11
+ permit persons to whom the Software is furnished to do so, subject to
12
+ the following conditions:
13
+
14
+ **The above copyright notice and this permission notice shall be included in all
15
+ copies or substantial portions of the Software.**
16
+
17
+
18
+ ** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
22
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. **
25
+
@@ -1,12 +1,12 @@
1
- include docs/source/README.rst
2
- include docs/source/CHANGELOG.rst
3
- include docs/source/LICENSE.rst
4
- include docs/source/CONTRIBUTING.rst
5
-
6
- recursive-include examples *
7
- recursive-include tests *
8
- recursive-include docs/build/html *
9
-
10
- # files to be excluded
11
- global-exclude *~ \#*
12
- config/*
1
+ include docs/source/README.rst
2
+ include docs/source/CHANGELOG.rst
3
+ include docs/source/LICENSE.rst
4
+ include docs/source/CONTRIBUTING.rst
5
+
6
+ recursive-include examples *
7
+ recursive-include tests *
8
+ recursive-include docs/build/html *
9
+
10
+ # files to be excluded
11
+ global-exclude *~ \#*
12
+ config/*
@@ -1,103 +1,103 @@
1
- Metadata-Version: 2.2
2
- Name: juham-automation
3
- Version: 0.0.5
4
- Summary: Juha's Ultimate Home Automation Masterpiece
5
- Author-email: J Meskanen <juham.api@gmail.com>
6
- Maintainer-email: "J. Meskanen" <juham.api@gmail.com>
7
- License: LICENSE
8
- =======
9
-
10
- Copyright (c) 2024, Juha Meskanen
11
-
12
- Permission is hereby granted, free of charge, to any person obtaining
13
- a copy of this software and associated documentation files (the
14
- "Software"), to deal in the Software without restriction, including
15
- without limitation the rights to use, copy, modify, merge, publish,
16
- distribute, sublicense, and/or sell copies of the Software, and to
17
- permit persons to whom the Software is furnished to do so, subject to
18
- the following conditions:
19
-
20
- **The above copyright notice and this permission notice shall be included in all
21
- copies or substantial portions of the Software.**
22
-
23
-
24
- ** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
27
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
28
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
29
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
30
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. **
31
-
32
-
33
- Project-URL: Homepage, https://gitlab.com/juham/juham/juham-automation.git
34
- Project-URL: Bug Reports, https://gitlab.com/juham/juham/juham-automation.git
35
- Project-URL: Funding, https://meskanen.com
36
- Project-URL: Say Thanks!, http://meskanen.com
37
- Project-URL: Source, https://gitlab.com/juham/juham/juham-automation.git
38
- Keywords: home,automation,juham
39
- Classifier: Development Status :: 2 - Pre-Alpha
40
- Classifier: Intended Audience :: Developers
41
- Classifier: Topic :: Software Development
42
- Classifier: License :: Public Domain
43
- Classifier: Programming Language :: Python :: 3.8
44
- Requires-Python: >=3.8
45
- Description-Content-Type: text/markdown
46
- License-File: LICENSE.rst
47
- Requires-Dist: masterpiece>=0.1.19
48
- Requires-Dist: masterpiece_influx>=0.0.2
49
- Requires-Dist: masterpiece_pahomqtt>=0.0.3
50
- Requires-Dist: juham_core>=0.0.4
51
- Requires-Dist: requests>=2.31
52
- Requires-Dist: pytz>=2024.1
53
- Requires-Dist: importlib-metadata
54
- Provides-Extra: dev
55
- Requires-Dist: check-manifest; extra == "dev"
56
- Requires-Dist: types-pyz; extra == "dev"
57
-
58
- Welcome to Juham™ - Juha's Ultimate Home Automation Masterpiece
59
- ================================================================
60
-
61
- Project Description
62
- -------------------
63
-
64
- This package extends the ``juham_core`` package, providing home automation building blocks that cover most common needs.
65
- It consists of two main sub-modules:
66
-
67
- - ``automation``
68
- * **spothintafi**: Acquires electricity prices in Finland.
69
- * **watercirculator**: Automates a water circulator pump based on hot water temperature and motion detection.
70
- * **hotwateroptimizer**: Controls hot water radiators based on temperature sensors and electricity price data.
71
- * **energycostcalculator**: Monitors power consumption and electricity prices, and computes the energy balance in euros.
72
-
73
-
74
- - ``ts``
75
- * This folder contains time series recorders that listen for Juham™ topics and store the data in a time series database
76
- for later inspection.
77
-
78
-
79
- Project Status
80
- --------------
81
-
82
- **Current State**: **Pre-Alpha (Status 2)**
83
-
84
- All classes have been tested to some extent, and no known bugs have been reported. However, the code still requires work in
85
- terms of design and robustness. For instance, electricity prices are currently hard-coded to use euros, but this should be
86
- configurable to support multiple currencies.
87
-
88
-
89
- Special Thanks
90
- --------------
91
-
92
- This project would not have been possible without the generous support of two exceptional individuals: Teppo K. and Mahi.
93
-
94
- Teppo K. provided the initial spark for this project by donating a Raspberry Pi, a temperature sensor, and giving an inspiring
95
- demonstration of his own home automation system—effectively dragging me down the rabbit hole of endless tinkering.
96
-
97
- Mahi has been instrumental in translating my half-baked ideas into Python code, offering invaluable support and
98
- encouragement—while also ensuring that every time I thought I was done, I wasn’t.
99
-
100
- Because of these two gentlemen, my already minimal spare time dropped into the negatives as I desperately tried to push the
101
- system to some semblance of professionalism.
102
-
103
- I’m truly grateful to both—really. 😅
1
+ Metadata-Version: 2.2
2
+ Name: juham-automation
3
+ Version: 0.0.7
4
+ Summary: Juha's Ultimate Home Automation Masterpiece
5
+ Author-email: J Meskanen <juham.api@gmail.com>
6
+ Maintainer-email: "J. Meskanen" <juham.api@gmail.com>
7
+ License: LICENSE
8
+ =======
9
+
10
+ Copyright (c) 2024, Juha Meskanen
11
+
12
+ Permission is hereby granted, free of charge, to any person obtaining
13
+ a copy of this software and associated documentation files (the
14
+ "Software"), to deal in the Software without restriction, including
15
+ without limitation the rights to use, copy, modify, merge, publish,
16
+ distribute, sublicense, and/or sell copies of the Software, and to
17
+ permit persons to whom the Software is furnished to do so, subject to
18
+ the following conditions:
19
+
20
+ **The above copyright notice and this permission notice shall be included in all
21
+ copies or substantial portions of the Software.**
22
+
23
+
24
+ ** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
27
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
28
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
29
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
30
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. **
31
+
32
+
33
+ Project-URL: Homepage, https://gitlab.com/juham/juham/juham-automation.git
34
+ Project-URL: Bug Reports, https://gitlab.com/juham/juham/juham-automation.git
35
+ Project-URL: Funding, https://meskanen.com
36
+ Project-URL: Say Thanks!, http://meskanen.com
37
+ Project-URL: Source, https://gitlab.com/juham/juham/juham-automation.git
38
+ Keywords: home,automation,juham
39
+ Classifier: Development Status :: 2 - Pre-Alpha
40
+ Classifier: Intended Audience :: Developers
41
+ Classifier: Topic :: Software Development
42
+ Classifier: License :: Public Domain
43
+ Classifier: Programming Language :: Python :: 3.8
44
+ Requires-Python: >=3.8
45
+ Description-Content-Type: text/markdown
46
+ License-File: LICENSE.rst
47
+ Requires-Dist: masterpiece>=0.1.21
48
+ Requires-Dist: masterpiece_influx>=0.0.2
49
+ Requires-Dist: masterpiece_pahomqtt>=0.0.3
50
+ Requires-Dist: juham_core>=0.0.7
51
+ Requires-Dist: requests>=2.31
52
+ Requires-Dist: pytz>=2024.1
53
+ Requires-Dist: importlib-metadata
54
+ Provides-Extra: dev
55
+ Requires-Dist: check-manifest; extra == "dev"
56
+ Requires-Dist: types-pyz; extra == "dev"
57
+
58
+ Welcome to Juham™ - Juha's Ultimate Home Automation Masterpiece
59
+ ================================================================
60
+
61
+ Project Description
62
+ -------------------
63
+
64
+ This package extends the ``juham_core`` package, providing home automation building blocks that cover most common needs.
65
+ It consists of two main sub-modules:
66
+
67
+ - ``automation``
68
+ * **spothintafi**: Acquires electricity prices in Finland.
69
+ * **watercirculator**: Automates a water circulator pump based on hot water temperature and motion detection.
70
+ * **hotwateroptimizer**: Controls hot water radiators based on temperature sensors and electricity price data.
71
+ * **energycostcalculator**: Monitors power consumption and electricity prices, and computes the energy balance in euros.
72
+
73
+
74
+ - ``ts``
75
+ * This folder contains time series recorders that listen for Juham™ topics and store the data in a time series database
76
+ for later inspection.
77
+
78
+
79
+ Project Status
80
+ --------------
81
+
82
+ **Current State**: **Pre-Alpha (Status 2)**
83
+
84
+ All classes have been tested to some extent, and no known bugs have been reported. However, the code still requires work in
85
+ terms of design and robustness. For instance, electricity prices are currently hard-coded to use euros, but this should be
86
+ configurable to support multiple currencies.
87
+
88
+
89
+ Special Thanks
90
+ --------------
91
+
92
+ This project would not have been possible without the generous support of two exceptional individuals: Teppo K. and Mahi.
93
+
94
+ Teppo K. provided the initial spark for this project by donating a Raspberry Pi, a temperature sensor, and giving an inspiring
95
+ demonstration of his own home automation system—effectively dragging me down the rabbit hole of endless tinkering.
96
+
97
+ Mahi has been instrumental in translating my half-baked ideas into Python code, offering invaluable support and
98
+ encouragement—while also ensuring that every time I thought I was done, I wasn’t.
99
+
100
+ Because of these two gentlemen, my already minimal spare time dropped into the negatives as I desperately tried to push the
101
+ system to some semblance of professionalism.
102
+
103
+ I’m truly grateful to both—really. 😅
@@ -1,46 +1,46 @@
1
- Welcome to Juham™ - Juha's Ultimate Home Automation Masterpiece
2
- ================================================================
3
-
4
- Project Description
5
- -------------------
6
-
7
- This package extends the ``juham_core`` package, providing home automation building blocks that cover most common needs.
8
- It consists of two main sub-modules:
9
-
10
- - ``automation``
11
- * **spothintafi**: Acquires electricity prices in Finland.
12
- * **watercirculator**: Automates a water circulator pump based on hot water temperature and motion detection.
13
- * **hotwateroptimizer**: Controls hot water radiators based on temperature sensors and electricity price data.
14
- * **energycostcalculator**: Monitors power consumption and electricity prices, and computes the energy balance in euros.
15
-
16
-
17
- - ``ts``
18
- * This folder contains time series recorders that listen for Juham™ topics and store the data in a time series database
19
- for later inspection.
20
-
21
-
22
- Project Status
23
- --------------
24
-
25
- **Current State**: **Pre-Alpha (Status 2)**
26
-
27
- All classes have been tested to some extent, and no known bugs have been reported. However, the code still requires work in
28
- terms of design and robustness. For instance, electricity prices are currently hard-coded to use euros, but this should be
29
- configurable to support multiple currencies.
30
-
31
-
32
- Special Thanks
33
- --------------
34
-
35
- This project would not have been possible without the generous support of two exceptional individuals: Teppo K. and Mahi.
36
-
37
- Teppo K. provided the initial spark for this project by donating a Raspberry Pi, a temperature sensor, and giving an inspiring
38
- demonstration of his own home automation system—effectively dragging me down the rabbit hole of endless tinkering.
39
-
40
- Mahi has been instrumental in translating my half-baked ideas into Python code, offering invaluable support and
41
- encouragement—while also ensuring that every time I thought I was done, I wasn’t.
42
-
43
- Because of these two gentlemen, my already minimal spare time dropped into the negatives as I desperately tried to push the
44
- system to some semblance of professionalism.
45
-
46
- I’m truly grateful to both—really. 😅
1
+ Welcome to Juham™ - Juha's Ultimate Home Automation Masterpiece
2
+ ================================================================
3
+
4
+ Project Description
5
+ -------------------
6
+
7
+ This package extends the ``juham_core`` package, providing home automation building blocks that cover most common needs.
8
+ It consists of two main sub-modules:
9
+
10
+ - ``automation``
11
+ * **spothintafi**: Acquires electricity prices in Finland.
12
+ * **watercirculator**: Automates a water circulator pump based on hot water temperature and motion detection.
13
+ * **hotwateroptimizer**: Controls hot water radiators based on temperature sensors and electricity price data.
14
+ * **energycostcalculator**: Monitors power consumption and electricity prices, and computes the energy balance in euros.
15
+
16
+
17
+ - ``ts``
18
+ * This folder contains time series recorders that listen for Juham™ topics and store the data in a time series database
19
+ for later inspection.
20
+
21
+
22
+ Project Status
23
+ --------------
24
+
25
+ **Current State**: **Pre-Alpha (Status 2)**
26
+
27
+ All classes have been tested to some extent, and no known bugs have been reported. However, the code still requires work in
28
+ terms of design and robustness. For instance, electricity prices are currently hard-coded to use euros, but this should be
29
+ configurable to support multiple currencies.
30
+
31
+
32
+ Special Thanks
33
+ --------------
34
+
35
+ This project would not have been possible without the generous support of two exceptional individuals: Teppo K. and Mahi.
36
+
37
+ Teppo K. provided the initial spark for this project by donating a Raspberry Pi, a temperature sensor, and giving an inspiring
38
+ demonstration of his own home automation system—effectively dragging me down the rabbit hole of endless tinkering.
39
+
40
+ Mahi has been instrumental in translating my half-baked ideas into Python code, offering invaluable support and
41
+ encouragement—while also ensuring that every time I thought I was done, I wasn’t.
42
+
43
+ Because of these two gentlemen, my already minimal spare time dropped into the negatives as I desperately tried to push the
44
+ system to some semblance of professionalism.
45
+
46
+ I’m truly grateful to both—really. 😅
@@ -0,0 +1,4 @@
1
+ # Sphinx build info version 1
2
+ # This file records the configuration used when building these files. When it is not found, a full rebuild will be done.
3
+ config: f36b75219feb06d1d2436d7de76f29e1
4
+ tags: 645f666f9bcd5a90fca523b33c5a78b7
@@ -1,4 +1,4 @@
1
- # Sphinx build info version 1
2
- # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3
- config: 64f67e183e88374ef9504a7d68e8136b
4
- tags: 645f666f9bcd5a90fca523b33c5a78b7
1
+ # Sphinx build info version 1
2
+ # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3
+ config: 64f67e183e88374ef9504a7d68e8136b
4
+ tags: 645f666f9bcd5a90fca523b33c5a78b7