pyptp 0.0.5__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 (213) hide show
  1. pyptp-0.0.5/.gitignore +198 -0
  2. pyptp-0.0.5/LICENSE +674 -0
  3. pyptp-0.0.5/PKG-INFO +70 -0
  4. pyptp-0.0.5/README.md +39 -0
  5. pyptp-0.0.5/pyproject.toml +106 -0
  6. pyptp-0.0.5/pyptp/IO/exporters/__init__.py +4 -0
  7. pyptp-0.0.5/pyptp/IO/exporters/gnf_exporter.py +252 -0
  8. pyptp-0.0.5/pyptp/IO/exporters/ipysigma_exporter.py +56 -0
  9. pyptp-0.0.5/pyptp/IO/exporters/json_exporter.py +47 -0
  10. pyptp-0.0.5/pyptp/IO/exporters/vnf_exporter.py +284 -0
  11. pyptp-0.0.5/pyptp/IO/importers/__init__.py +4 -0
  12. pyptp-0.0.5/pyptp/IO/importers/_base_handler.py +554 -0
  13. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/__init__.py +4 -0
  14. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/async_generator_handler.py +35 -0
  15. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/async_motor_handler.py +40 -0
  16. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/battery_handler.py +53 -0
  17. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/cable_handler.py +76 -0
  18. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/circuit_breaker_handler.py +35 -0
  19. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/comment_handler.py +17 -0
  20. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/earthing_transformer_handler.py +35 -0
  21. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/frame_handler.py +29 -0
  22. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/fuse_handler.py +35 -0
  23. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/gm_type_handler.py +69 -0
  24. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/home_handler.py +61 -0
  25. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/legend_handler.py +187 -0
  26. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/link_handler.py +54 -0
  27. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/load_handler.py +48 -0
  28. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/load_switch_handler.py +35 -0
  29. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/measure_field_handler.py +30 -0
  30. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/node_handler.py +48 -0
  31. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/profile_handler.py +39 -0
  32. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/properties_handler.py +21 -0
  33. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/pv_handler.py +49 -0
  34. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/reactance_coil_handler.py +35 -0
  35. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/selection_handler.py +69 -0
  36. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/sheet_handler.py +18 -0
  37. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/shunt_capacitor_handler.py +30 -0
  38. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/source_handler.py +43 -0
  39. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/special_transformer_handler.py +35 -0
  40. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/sync_generator_handler.py +35 -0
  41. pyptp-0.0.5/pyptp/IO/importers/_gnf_handlers/transformer_handler.py +50 -0
  42. pyptp-0.0.5/pyptp/IO/importers/_strategies.py +256 -0
  43. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/__init__.py +4 -0
  44. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/async_generator_handler.py +40 -0
  45. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/async_motor_handler.py +40 -0
  46. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/battery_handler.py +54 -0
  47. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/cable_handler.py +49 -0
  48. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/calc_case_handler.py +51 -0
  49. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/circuit_breaker_handler.py +148 -0
  50. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/comment_handler.py +30 -0
  51. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/dynamic_case_handler.py +26 -0
  52. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/earthing_transformer_handler.py +33 -0
  53. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/frame_handler.py +50 -0
  54. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/fuse_handler.py +33 -0
  55. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/growth_handler.py +17 -0
  56. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/hyperlink_handler.py +29 -0
  57. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/indicator_handler.py +30 -0
  58. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/legend_handler.py +187 -0
  59. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/line_handler.py +39 -0
  60. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/link_handler.py +42 -0
  61. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/load_behaviour_handler.py +17 -0
  62. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/load_handler.py +65 -0
  63. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/load_switch_handler.py +33 -0
  64. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/measure_field_handler.py +48 -0
  65. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/mutual_handler.py +26 -0
  66. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/node_handler.py +54 -0
  67. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/profile_handler.py +38 -0
  68. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/properties_handler.py +93 -0
  69. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/pv_handler.py +65 -0
  70. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/rails_handler.py +38 -0
  71. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/reactance_coil_handler.py +43 -0
  72. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/scenario_handler.py +36 -0
  73. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/selection_handler.py +69 -0
  74. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/sheet_handler.py +28 -0
  75. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/shunt_capacitor_handler.py +33 -0
  76. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/shunt_coil_handler.py +30 -0
  77. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/source_handler.py +42 -0
  78. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/special_transformer_handler.py +50 -0
  79. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/sync_generator_handler.py +35 -0
  80. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/sync_motor_handler.py +35 -0
  81. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/text_handler.py +39 -0
  82. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/threewinding_transformer_handler.py +40 -0
  83. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/transformer_handler.py +48 -0
  84. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/transformer_load_handler.py +35 -0
  85. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/variable_handler.py +31 -0
  86. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/variant_handler.py +26 -0
  87. pyptp-0.0.5/pyptp/IO/importers/_vnf_handlers/windturbine_handler.py +60 -0
  88. pyptp-0.0.5/pyptp/IO/importers/gnf_importer.py +184 -0
  89. pyptp-0.0.5/pyptp/IO/importers/json_helper.py +89 -0
  90. pyptp-0.0.5/pyptp/IO/importers/vnf_importer.py +219 -0
  91. pyptp-0.0.5/pyptp/__init__.py +47 -0
  92. pyptp-0.0.5/pyptp/_credentials.py +49 -0
  93. pyptp-0.0.5/pyptp/api/__init__.py +38 -0
  94. pyptp-0.0.5/pyptp/api/_auth/__init__.py +12 -0
  95. pyptp-0.0.5/pyptp/api/_auth/credentials.py +77 -0
  96. pyptp-0.0.5/pyptp/api/_auth/environments.py +49 -0
  97. pyptp-0.0.5/pyptp/api/_auth/token_manager.py +189 -0
  98. pyptp-0.0.5/pyptp/api/_backends/__init__.py +4 -0
  99. pyptp-0.0.5/pyptp/api/_core/__init__.py +8 -0
  100. pyptp-0.0.5/pyptp/api/_core/exceptions.py +19 -0
  101. pyptp-0.0.5/pyptp/api/_models/__init__.py +8 -0
  102. pyptp-0.0.5/pyptp/api/client.py +188 -0
  103. pyptp-0.0.5/pyptp/convert/GaiaMigrator.dll +0 -0
  104. pyptp-0.0.5/pyptp/convert/VisionMigrator.dll +0 -0
  105. pyptp-0.0.5/pyptp/convert/__init__.py +4 -0
  106. pyptp-0.0.5/pyptp/convert/libGaiaMigrator.so +0 -0
  107. pyptp-0.0.5/pyptp/convert/libVisionMigrator.so +0 -0
  108. pyptp-0.0.5/pyptp/convert/version_migrator.py +166 -0
  109. pyptp-0.0.5/pyptp/elements/__init__.py +9 -0
  110. pyptp-0.0.5/pyptp/elements/color_utils.py +270 -0
  111. pyptp-0.0.5/pyptp/elements/element_utils.py +403 -0
  112. pyptp-0.0.5/pyptp/elements/lv/__init__.py +4 -0
  113. pyptp-0.0.5/pyptp/elements/lv/async_generator.py +279 -0
  114. pyptp-0.0.5/pyptp/elements/lv/async_motor.py +314 -0
  115. pyptp-0.0.5/pyptp/elements/lv/battery.py +315 -0
  116. pyptp-0.0.5/pyptp/elements/lv/cable.py +704 -0
  117. pyptp-0.0.5/pyptp/elements/lv/circuit_breaker.py +174 -0
  118. pyptp-0.0.5/pyptp/elements/lv/comment.py +66 -0
  119. pyptp-0.0.5/pyptp/elements/lv/connection.py +884 -0
  120. pyptp-0.0.5/pyptp/elements/lv/earthing_transformer.py +183 -0
  121. pyptp-0.0.5/pyptp/elements/lv/frame.py +372 -0
  122. pyptp-0.0.5/pyptp/elements/lv/fuse.py +180 -0
  123. pyptp-0.0.5/pyptp/elements/lv/gm_type.py +344 -0
  124. pyptp-0.0.5/pyptp/elements/lv/legend.py +219 -0
  125. pyptp-0.0.5/pyptp/elements/lv/link.py +411 -0
  126. pyptp-0.0.5/pyptp/elements/lv/load.py +267 -0
  127. pyptp-0.0.5/pyptp/elements/lv/load_switch.py +173 -0
  128. pyptp-0.0.5/pyptp/elements/lv/measure_field.py +189 -0
  129. pyptp-0.0.5/pyptp/elements/lv/node.py +270 -0
  130. pyptp-0.0.5/pyptp/elements/lv/presentations.py +401 -0
  131. pyptp-0.0.5/pyptp/elements/lv/profile.py +131 -0
  132. pyptp-0.0.5/pyptp/elements/lv/properties.py +313 -0
  133. pyptp-0.0.5/pyptp/elements/lv/pv.py +377 -0
  134. pyptp-0.0.5/pyptp/elements/lv/reactance_coil.py +239 -0
  135. pyptp-0.0.5/pyptp/elements/lv/selection.py +107 -0
  136. pyptp-0.0.5/pyptp/elements/lv/shared.py +623 -0
  137. pyptp-0.0.5/pyptp/elements/lv/sheet.py +175 -0
  138. pyptp-0.0.5/pyptp/elements/lv/shunt_capacitor.py +160 -0
  139. pyptp-0.0.5/pyptp/elements/lv/source.py +165 -0
  140. pyptp-0.0.5/pyptp/elements/lv/special_transformer.py +404 -0
  141. pyptp-0.0.5/pyptp/elements/lv/syn_generator.py +211 -0
  142. pyptp-0.0.5/pyptp/elements/lv/transformer.py +438 -0
  143. pyptp-0.0.5/pyptp/elements/mixins.py +171 -0
  144. pyptp-0.0.5/pyptp/elements/mv/__init__.py +4 -0
  145. pyptp-0.0.5/pyptp/elements/mv/async_generator.py +486 -0
  146. pyptp-0.0.5/pyptp/elements/mv/async_motor.py +509 -0
  147. pyptp-0.0.5/pyptp/elements/mv/battery.py +292 -0
  148. pyptp-0.0.5/pyptp/elements/mv/cable.py +380 -0
  149. pyptp-0.0.5/pyptp/elements/mv/calc_case.py +91 -0
  150. pyptp-0.0.5/pyptp/elements/mv/circuit_breaker.py +1755 -0
  151. pyptp-0.0.5/pyptp/elements/mv/comment.py +65 -0
  152. pyptp-0.0.5/pyptp/elements/mv/dynamic_case.py +124 -0
  153. pyptp-0.0.5/pyptp/elements/mv/earthing_transformer.py +217 -0
  154. pyptp-0.0.5/pyptp/elements/mv/frame.py +246 -0
  155. pyptp-0.0.5/pyptp/elements/mv/fuse.py +272 -0
  156. pyptp-0.0.5/pyptp/elements/mv/growth.py +118 -0
  157. pyptp-0.0.5/pyptp/elements/mv/hyperlink.py +36 -0
  158. pyptp-0.0.5/pyptp/elements/mv/indicator.py +167 -0
  159. pyptp-0.0.5/pyptp/elements/mv/legend.py +222 -0
  160. pyptp-0.0.5/pyptp/elements/mv/line.py +333 -0
  161. pyptp-0.0.5/pyptp/elements/mv/link.py +229 -0
  162. pyptp-0.0.5/pyptp/elements/mv/load.py +422 -0
  163. pyptp-0.0.5/pyptp/elements/mv/load_behaviour.py +97 -0
  164. pyptp-0.0.5/pyptp/elements/mv/load_switch.py +217 -0
  165. pyptp-0.0.5/pyptp/elements/mv/measure_field.py +457 -0
  166. pyptp-0.0.5/pyptp/elements/mv/mutual.py +102 -0
  167. pyptp-0.0.5/pyptp/elements/mv/node.py +621 -0
  168. pyptp-0.0.5/pyptp/elements/mv/presentations.py +528 -0
  169. pyptp-0.0.5/pyptp/elements/mv/profile.py +181 -0
  170. pyptp-0.0.5/pyptp/elements/mv/properties.py +330 -0
  171. pyptp-0.0.5/pyptp/elements/mv/pv.py +528 -0
  172. pyptp-0.0.5/pyptp/elements/mv/rails.py +123 -0
  173. pyptp-0.0.5/pyptp/elements/mv/reactance_coil.py +225 -0
  174. pyptp-0.0.5/pyptp/elements/mv/scenario.py +141 -0
  175. pyptp-0.0.5/pyptp/elements/mv/selection.py +107 -0
  176. pyptp-0.0.5/pyptp/elements/mv/shared.py +594 -0
  177. pyptp-0.0.5/pyptp/elements/mv/sheet.py +169 -0
  178. pyptp-0.0.5/pyptp/elements/mv/shunt_capacitor.py +313 -0
  179. pyptp-0.0.5/pyptp/elements/mv/shunt_coil.py +213 -0
  180. pyptp-0.0.5/pyptp/elements/mv/source.py +253 -0
  181. pyptp-0.0.5/pyptp/elements/mv/special_transformer.py +510 -0
  182. pyptp-0.0.5/pyptp/elements/mv/synchronous_generator.py +565 -0
  183. pyptp-0.0.5/pyptp/elements/mv/synchronous_motor.py +337 -0
  184. pyptp-0.0.5/pyptp/elements/mv/text.py +251 -0
  185. pyptp-0.0.5/pyptp/elements/mv/threewinding_transformer.py +496 -0
  186. pyptp-0.0.5/pyptp/elements/mv/transformer.py +512 -0
  187. pyptp-0.0.5/pyptp/elements/mv/transformer_load.py +323 -0
  188. pyptp-0.0.5/pyptp/elements/mv/variable.py +38 -0
  189. pyptp-0.0.5/pyptp/elements/mv/variant.py +136 -0
  190. pyptp-0.0.5/pyptp/elements/mv/windturbine.py +541 -0
  191. pyptp-0.0.5/pyptp/elements/presentation_helpers.py +164 -0
  192. pyptp-0.0.5/pyptp/elements/serialization_helpers.py +352 -0
  193. pyptp-0.0.5/pyptp/graph/__init__.py +4 -0
  194. pyptp-0.0.5/pyptp/graph/networkx_converter.py +298 -0
  195. pyptp-0.0.5/pyptp/network_lv.py +244 -0
  196. pyptp-0.0.5/pyptp/network_mv.py +220 -0
  197. pyptp-0.0.5/pyptp/ptp_log.py +97 -0
  198. pyptp-0.0.5/pyptp/type_reader/__init__.py +8 -0
  199. pyptp-0.0.5/pyptp/type_reader/_aliases.py +21 -0
  200. pyptp-0.0.5/pyptp/type_reader/_excel.py +55 -0
  201. pyptp-0.0.5/pyptp/type_reader/_lv.py +51 -0
  202. pyptp-0.0.5/pyptp/type_reader/_mv.py +48 -0
  203. pyptp-0.0.5/pyptp/type_reader/types.py +127 -0
  204. pyptp-0.0.5/pyptp/type_reader/types.xlsx +0 -0
  205. pyptp-0.0.5/pyptp/validator/__init__.py +12 -0
  206. pyptp-0.0.5/pyptp/validator/base.py +195 -0
  207. pyptp-0.0.5/pyptp/validator/registry.py +29 -0
  208. pyptp-0.0.5/pyptp/validator/runner.py +118 -0
  209. pyptp-0.0.5/pyptp/validator/shared/__init__.py +14 -0
  210. pyptp-0.0.5/pyptp/validator/shared/cable_node_reference.py +62 -0
  211. pyptp-0.0.5/pyptp/validator/shared/link_node_reference.py +47 -0
  212. pyptp-0.0.5/pyptp/validator/shared/transformer_node_reference.py +48 -0
  213. pyptp-0.0.5/pyptp/validator/test_helpers.py +85 -0
pyptp-0.0.5/.gitignore ADDED
@@ -0,0 +1,198 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # Distribution / packaging
7
+ .Python
8
+ build/
9
+ develop-eggs/
10
+ dist/
11
+ downloads/
12
+ eggs/
13
+ .eggs/
14
+ lib/
15
+ lib64/
16
+ parts/
17
+ sdist/
18
+ var/
19
+ wheels/
20
+ share/python-wheels/
21
+ *.egg-info/
22
+ .installed.cfg
23
+ *.egg
24
+ MANIFEST
25
+
26
+ # PyInstaller
27
+ # Usually these files are written by a python script from a template
28
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
29
+ *.manifest
30
+ *.spec
31
+
32
+ # Installer logs
33
+ pip-log.txt
34
+ pip-delete-this-directory.txt
35
+
36
+ # Unit test / coverage reports
37
+ htmlcov/
38
+ .tox/
39
+ .nox/
40
+ .coverage
41
+ .coverage.*
42
+ .cache
43
+ nosetests.xml
44
+ coverage.xml
45
+ *.cover
46
+ *.py,cover
47
+ .hypothesis/
48
+ .pytest_cache/
49
+ cover/
50
+ .sonar/
51
+
52
+ # Translations
53
+ *.mo
54
+ *.pot
55
+
56
+ # Django stuff:
57
+ *.log
58
+ local_settings.py
59
+ db.sqlite3
60
+ db.sqlite3-journal
61
+
62
+ # Flask stuff:
63
+ instance/
64
+ .webassets-cache
65
+
66
+ # Scrapy stuff:
67
+ .scrapy
68
+
69
+ # Sphinx documentation
70
+ docs/_build/
71
+
72
+ # PyBuilder
73
+ .pybuilder/
74
+ target/
75
+
76
+ # Jupyter Notebook
77
+ .ipynb_checkpoints
78
+
79
+ # IPython
80
+ profile_default/
81
+ ipython_config.py
82
+
83
+ # pyenv
84
+ # For a library or package, you might want to ignore these files since the code is
85
+ # intended to run in multiple environments; otherwise, check them in:
86
+ # .python-version
87
+
88
+ # pipenv
89
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
90
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
91
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
92
+ # install all needed dependencies.
93
+ #Pipfile.lock
94
+
95
+ # UV
96
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
97
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
98
+ # commonly ignored for libraries.
99
+ #uv.lock
100
+
101
+ # poetry
102
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
103
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
104
+ # commonly ignored for libraries.
105
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
106
+ #poetry.lock
107
+
108
+ # pdm
109
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
110
+ #pdm.lock
111
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
112
+ # in version control.
113
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
114
+ .pdm.toml
115
+ .pdm-python
116
+ .pdm-build/
117
+
118
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
119
+ __pypackages__/
120
+
121
+ # Celery stuff
122
+ celerybeat-schedule
123
+ celerybeat.pid
124
+
125
+ # SageMath parsed files
126
+ *.sage.py
127
+
128
+ # Environments
129
+ .env
130
+ .venv
131
+ env/
132
+ venv/
133
+ ENV/
134
+ env.bak/
135
+ venv.bak/
136
+
137
+ # API Credentials - NEVER commit these!
138
+ .env.local
139
+ .env.*.local
140
+ **/api_credentials.json
141
+ **/credentials.json
142
+ **/*_credentials.json
143
+ **/*_credentials.yaml
144
+ **/*_credentials.yml
145
+
146
+ # Spyder project settings
147
+ .spyderproject
148
+ .spyproject
149
+
150
+ # Rope project settings
151
+ .ropeproject
152
+
153
+ # mkdocs documentation
154
+ /site
155
+
156
+ # mypy
157
+ .mypy_cache/
158
+ .dmypy.json
159
+ dmypy.json
160
+
161
+ # Pyre type checker
162
+ .pyre/
163
+
164
+ # pytype static type analyzer
165
+ .pytype/
166
+
167
+ # Cython debug symbols
168
+ cython_debug/
169
+
170
+ # PyCharm
171
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
172
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
173
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
174
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
175
+ #.idea/
176
+
177
+ # PyPI configuration file
178
+ .pypirc
179
+ .vs/
180
+ pyptp/__recovery/
181
+ pyptp/__history/
182
+
183
+ **/.vscode
184
+ **/.vs
185
+ **/.pytest_cache
186
+ /dist
187
+ /pyptp/__history
188
+ /pyptp/__recovery
189
+ /pyptp/ptplog.log
190
+ /Pyptp.sln
191
+ /Pyptp.slnLaunch
192
+ **/__pycache__
193
+ /tests/private
194
+ **/.ruff_cache
195
+ # Internal files (GitHub protection)
196
+ .gitlab-ci.yml
197
+ .claude/
198
+