ephys-link 2.0.0b6__tar.gz → 2.0.0b9__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 (59) hide show
  1. {ephys_link-2.0.0b6 → ephys_link-2.0.0b9}/.gitignore +293 -293
  2. {ephys_link-2.0.0b6 → ephys_link-2.0.0b9}/LICENSE +674 -674
  3. ephys_link-2.0.0b9/PKG-INFO +91 -0
  4. ephys_link-2.0.0b9/README.md +51 -0
  5. ephys_link-2.0.0b9/docs/assets/icon.png +0 -0
  6. ephys_link-2.0.0b9/docs/development/adding_a_manipulator.md +77 -0
  7. ephys_link-2.0.0b9/docs/development/code_organization.md +41 -0
  8. ephys_link-2.0.0b9/docs/development/index.md +27 -0
  9. ephys_link-2.0.0b9/docs/development/socketio_api.md +418 -0
  10. ephys_link-2.0.0b9/docs/home/citing.md +9 -0
  11. ephys_link-2.0.0b9/docs/home/contact.md +10 -0
  12. ephys_link-2.0.0b9/docs/home/how_it_works.md +76 -0
  13. ephys_link-2.0.0b9/docs/home/installation.md +40 -0
  14. ephys_link-2.0.0b9/docs/home/supported_manipulators.md +12 -0
  15. ephys_link-2.0.0b9/docs/index.md +52 -0
  16. ephys_link-2.0.0b9/docs/stylesheets/extra.css +5 -0
  17. ephys_link-2.0.0b9/docs/stylesheets/mkdocstrings.css +42 -0
  18. ephys_link-2.0.0b9/docs/usage/experiment_automation.md +10 -0
  19. ephys_link-2.0.0b9/docs/usage/starting_ephys_link.md +62 -0
  20. ephys_link-2.0.0b9/docs/usage/using_ephys_link.md +31 -0
  21. {ephys_link-2.0.0b6 → ephys_link-2.0.0b9}/ephys_link.spec +75 -75
  22. ephys_link-2.0.0b9/mkdocs.yml +111 -0
  23. {ephys_link-2.0.0b6 → ephys_link-2.0.0b9}/pyproject.toml +93 -122
  24. ephys_link-2.0.0b9/scripts/gen_ref_pages.py +35 -0
  25. {ephys_link-2.0.0b6 → ephys_link-2.0.0b9}/scripts/logger_test.py +17 -17
  26. {ephys_link-2.0.0b6 → ephys_link-2.0.0b9}/scripts/move_tester.py +16 -16
  27. {ephys_link-2.0.0b6 → ephys_link-2.0.0b9}/scripts/server_tester.py +23 -23
  28. ephys_link-2.0.0b9/src/ephys_link/__about__.py +1 -0
  29. {ephys_link-2.0.0b6 → ephys_link-2.0.0b9}/src/ephys_link/__main__.py +51 -43
  30. {ephys_link-2.0.0b6 → ephys_link-2.0.0b9}/src/ephys_link/back_end/platform_handler.py +315 -308
  31. {ephys_link-2.0.0b6 → ephys_link-2.0.0b9}/src/ephys_link/back_end/server.py +274 -202
  32. ephys_link-2.0.0b6/src/ephys_link/bindings/fake_bindings.py → ephys_link-2.0.0b9/src/ephys_link/bindings/fake_binding.py +84 -59
  33. ephys_link-2.0.0b6/src/ephys_link/bindings/mpm_bindings.py → ephys_link-2.0.0b9/src/ephys_link/bindings/mpm_binding.py +315 -278
  34. ephys_link-2.0.0b6/src/ephys_link/bindings/ump_4_bindings.py → ephys_link-2.0.0b9/src/ephys_link/bindings/ump_4_binding.py +157 -132
  35. {ephys_link-2.0.0b6 → ephys_link-2.0.0b9}/src/ephys_link/front_end/cli.py +104 -98
  36. {ephys_link-2.0.0b6 → ephys_link-2.0.0b9}/src/ephys_link/front_end/gui.py +204 -215
  37. ephys_link-2.0.0b6/src/ephys_link/util/base_bindings.py → ephys_link-2.0.0b9/src/ephys_link/utils/base_binding.py +176 -148
  38. {ephys_link-2.0.0b6/src/ephys_link/util → ephys_link-2.0.0b9/src/ephys_link/utils}/console.py +127 -130
  39. ephys_link-2.0.0b9/src/ephys_link/utils/constants.py +23 -0
  40. ephys_link-2.0.0b9/src/ephys_link/utils/converters.py +86 -0
  41. ephys_link-2.0.0b9/src/ephys_link/utils/startup.py +65 -0
  42. {ephys_link-2.0.0b6 → ephys_link-2.0.0b9}/tests/__init__.py +3 -3
  43. ephys_link-2.0.0b6/PKG-INFO +0 -166
  44. ephys_link-2.0.0b6/README.md +0 -126
  45. ephys_link-2.0.0b6/qodana.yaml +0 -29
  46. ephys_link-2.0.0b6/src/ephys_link/__about__.py +0 -1
  47. ephys_link-2.0.0b6/src/ephys_link/bindings/ump_3_bindings.py +0 -138
  48. ephys_link-2.0.0b6/src/ephys_link/resources/CP210xManufacturing.dll +0 -0
  49. ephys_link-2.0.0b6/src/ephys_link/resources/NstMotorCtrl.dll +0 -0
  50. ephys_link-2.0.0b6/src/ephys_link/resources/SiUSBXp.dll +0 -0
  51. ephys_link-2.0.0b6/src/ephys_link/util/common.py +0 -120
  52. /ephys_link-2.0.0b6/assets/icon.ico → /ephys_link-2.0.0b9/docs/assets/favicon.ico +0 -0
  53. {ephys_link-2.0.0b6 → ephys_link-2.0.0b9}/scripts/__init__.py +0 -0
  54. {ephys_link-2.0.0b6 → ephys_link-2.0.0b9}/src/ephys_link/__init__.py +0 -0
  55. {ephys_link-2.0.0b6 → ephys_link-2.0.0b9}/src/ephys_link/back_end/__init__.py +0 -0
  56. {ephys_link-2.0.0b6 → ephys_link-2.0.0b9}/src/ephys_link/bindings/__init__.py +0 -0
  57. {ephys_link-2.0.0b6 → ephys_link-2.0.0b9}/src/ephys_link/front_end/__init__.py +0 -0
  58. {ephys_link-2.0.0b6 → ephys_link-2.0.0b9}/src/ephys_link/resources/libum.dll +0 -0
  59. {ephys_link-2.0.0b6/src/ephys_link/util → ephys_link-2.0.0b9/src/ephys_link/utils}/__init__.py +0 -0
@@ -1,294 +1,294 @@
1
- # Byte-compiled / optimized / DLL files
2
- __pycache__/
3
- *.py[cod]
4
- *$py.class
5
-
6
- # C extensions
7
- *.so
8
- !libum.so
9
-
10
- # Distribution / packaging
11
- .Python
12
- build/
13
- develop-eggs/
14
- dist/
15
- downloads/
16
- eggs/
17
- .eggs/
18
- lib/
19
- lib64/
20
- parts/
21
- sdist/
22
- var/
23
- wheels/
24
- pip-wheel-metadata/
25
- share/python-wheels/
26
- *.egg-info/
27
- .installed.cfg
28
- *.egg
29
- MANIFEST
30
-
31
- # PyInstaller
32
- # Usually these files are written by a python script from a template
33
- # before PyInstaller builds the exe, so as to inject date/other infos into it.
34
- *.manifest
35
-
36
- # Installer logs
37
- pip-log.txt
38
- pip-delete-this-directory.txt
39
-
40
- # Unit test / coverage reports
41
- htmlcov/
42
- .tox/
43
- .nox/
44
- .coverage
45
- .coverage.*
46
- .cache
47
- nosetests.xml
48
- coverage.xml
49
- *.cover
50
- *.py,cover
51
- .hypothesis/
52
- .pytest_cache/
53
-
54
- # Translations
55
- *.mo
56
- *.pot
57
-
58
- # Django stuff:
59
- *.log
60
- local_settings.py
61
- db.sqlite3
62
- db.sqlite3-journal
63
-
64
- # Flask stuff:
65
- instance/
66
- .webassets-cache
67
-
68
- # Scrapy stuff:
69
- .scrapy
70
-
71
- # Sphinx documentation
72
- docs/_build/
73
-
74
- # PyBuilder
75
- target/
76
-
77
- # Jupyter Notebook
78
- .ipynb_checkpoints
79
-
80
- # IPython
81
- profile_default/
82
- ipython_config.py
83
-
84
- # pyenv
85
- .python-version
86
-
87
- # pipenv
88
- # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
89
- # However, in case of collaboration, if having platform-specific dependencies or dependencies
90
- # having no cross-platform support, pipenv may install dependencies that don't work, or not
91
- # install all needed dependencies.
92
- #Pipfile.lock
93
-
94
- # PEP 582; used by e.g. github.com/David-OConnor/pyflow
95
- __pypackages__/
96
-
97
- # Celery stuff
98
- celerybeat-schedule
99
- celerybeat.pid
100
-
101
- # SageMath parsed files
102
- *.sage.py
103
-
104
- # Environments
105
- .env
106
- .venv
107
- env/
108
- venv/
109
- ENV/
110
- env.bak/
111
- venv.bak/
112
-
113
- # Spyder project settings
114
- .spyderproject
115
- .spyproject
116
-
117
- # Rope project settings
118
- .ropeproject
119
-
120
- # mkdocs documentation
121
- /site
122
-
123
- # mypy
124
- .mypy_cache/
125
- .dmypy.json
126
- dmypy.json
127
-
128
- # Pyre type checker
129
- .pyre/
130
-
131
-
132
-
133
- # Created by https://www.toptal.com/developers/gitignore/api/python,pycharm
134
- # Edit at https://www.toptal.com/developers/gitignore?templates=python,pycharm
135
-
136
- ### PyCharm ###
137
- # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
138
- # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
139
-
140
- # User-specific stuff
141
- .idea/**/workspace.xml
142
- .idea/**/tasks.xml
143
- .idea/**/usage.statistics.xml
144
- .idea/**/dictionaries
145
- .idea/**/shelf
146
-
147
- # AWS User-specific
148
- .idea/**/aws.xml
149
-
150
- # Generated files
151
- .idea/**/contentModel.xml
152
-
153
- # Sensitive or high-churn files
154
- .idea/**/dataSources/
155
- .idea/**/dataSources.ids
156
- .idea/**/dataSources.local.xml
157
- .idea/**/sqlDataSources.xml
158
- .idea/**/dynamic.xml
159
- .idea/**/uiDesigner.xml
160
- .idea/**/dbnavigator.xml
161
-
162
- # Gradle
163
- .idea/**/gradle.xml
164
- .idea/**/libraries
165
-
166
- # Gradle and Maven with auto-import
167
- # When using Gradle or Maven with auto-import, you should exclude module files,
168
- # since they will be recreated, and may cause churn. Uncomment if using
169
- # auto-import.
170
- # .idea/artifacts
171
- # .idea/compiler.xml
172
- # .idea/jarRepositories.xml
173
- # .idea/modules.xml
174
- # .idea/*.iml
175
- # .idea/modules
176
- # *.iml
177
- # *.ipr
178
-
179
- # CMake
180
- cmake-build-*/
181
-
182
- # Mongo Explorer plugin
183
- .idea/**/mongoSettings.xml
184
-
185
- # File-based project format
186
- *.iws
187
-
188
- # IntelliJ
189
- out/
190
-
191
- # mpeltonen/sbt-idea plugin
192
- .idea_modules/
193
-
194
- # JIRA plugin
195
- atlassian-ide-plugin.xml
196
-
197
- # Cursive Clojure plugin
198
- .idea/replstate.xml
199
-
200
- # SonarLint plugin
201
- .idea/sonarlint/
202
-
203
- # Crashlytics plugin (for Android Studio and IntelliJ)
204
- com_crashlytics_export_strings.xml
205
- crashlytics.properties
206
- crashlytics-build.properties
207
- fabric.properties
208
-
209
- # Editor-based Rest Client
210
- .idea/httpRequests
211
-
212
- # Android studio 3.1+ serialized cache file
213
- .idea/caches/build_file_checksums.ser
214
-
215
- ### PyCharm Patch ###
216
- # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
217
-
218
- # *.iml
219
- # modules.xml
220
- # .idea/misc.xml
221
- # *.ipr
222
-
223
- # Sonarlint plugin
224
- # https://plugins.jetbrains.com/plugin/7973-sonarlint
225
- .idea/**/sonarlint/
226
-
227
- # SonarQube Plugin
228
- # https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
229
- .idea/**/sonarIssues.xml
230
-
231
- # Markdown Navigator plugin
232
- # https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
233
- .idea/**/markdown-navigator.xml
234
- .idea/**/markdown-navigator-enh.xml
235
- .idea/**/markdown-navigator/
236
-
237
- # Cache file creation bug
238
- # See https://youtrack.jetbrains.com/issue/JBR-2257
239
- .idea/$CACHE_FILE$
240
-
241
- # CodeStream plugin
242
- # https://plugins.jetbrains.com/plugin/12206-codestream
243
- .idea/codestream.xml
244
-
245
- # Azure Toolkit for IntelliJ plugin
246
- # https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
247
- .idea/**/azureSettings.xml
248
-
249
-
250
- # PyBuilder
251
- .pybuilder/
252
-
253
-
254
- # pyenv
255
- # For a library or package, you might want to ignore these files since the code is
256
- # intended to run in multiple environments; otherwise, check them in:
257
- # .python-version
258
-
259
- # pipenv
260
- # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
261
- # However, in case of collaboration, if having platform-specific dependencies or dependencies
262
- # having no cross-platform support, pipenv may install dependencies that don't work, or not
263
- # install all needed dependencies.
264
- #Pipfile.lock
265
-
266
- # poetry
267
- # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
268
- # This is especially recommended for binary packages to ensure reproducibility, and is more
269
- # commonly ignored for libraries.
270
- # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
271
- #poetry.lock
272
-
273
- # pdm
274
- # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
275
- #pdm.lock
276
- # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
277
- # in version control.
278
- # https://pdm.fming.dev/#use-with-ide
279
- .pdm.toml
280
-
281
- # pytype static type analyzer
282
- .pytype/
283
-
284
- # Cython debug symbols
285
- cython_debug/
286
-
287
- # PyCharm
288
- # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
289
- # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
290
- # and can be added to the global gitignore or merged into this file. For a more nuclear
291
- # option (not recommended) you can uncomment the following to ignore the entire idea folder.
292
- #.idea/
293
-
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+ !libum.so
9
+
10
+ # Distribution / packaging
11
+ .Python
12
+ build/
13
+ develop-eggs/
14
+ dist/
15
+ downloads/
16
+ eggs/
17
+ .eggs/
18
+ lib/
19
+ lib64/
20
+ parts/
21
+ sdist/
22
+ var/
23
+ wheels/
24
+ pip-wheel-metadata/
25
+ share/python-wheels/
26
+ *.egg-info/
27
+ .installed.cfg
28
+ *.egg
29
+ MANIFEST
30
+
31
+ # PyInstaller
32
+ # Usually these files are written by a python script from a template
33
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
34
+ *.manifest
35
+
36
+ # Installer logs
37
+ pip-log.txt
38
+ pip-delete-this-directory.txt
39
+
40
+ # Unit test / coverage reports
41
+ htmlcov/
42
+ .tox/
43
+ .nox/
44
+ .coverage
45
+ .coverage.*
46
+ .cache
47
+ nosetests.xml
48
+ coverage.xml
49
+ *.cover
50
+ *.py,cover
51
+ .hypothesis/
52
+ .pytest_cache/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ target/
76
+
77
+ # Jupyter Notebook
78
+ .ipynb_checkpoints
79
+
80
+ # IPython
81
+ profile_default/
82
+ ipython_config.py
83
+
84
+ # pyenv
85
+ .python-version
86
+
87
+ # pipenv
88
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
89
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
90
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
91
+ # install all needed dependencies.
92
+ #Pipfile.lock
93
+
94
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow
95
+ __pypackages__/
96
+
97
+ # Celery stuff
98
+ celerybeat-schedule
99
+ celerybeat.pid
100
+
101
+ # SageMath parsed files
102
+ *.sage.py
103
+
104
+ # Environments
105
+ .env
106
+ .venv
107
+ env/
108
+ venv/
109
+ ENV/
110
+ env.bak/
111
+ venv.bak/
112
+
113
+ # Spyder project settings
114
+ .spyderproject
115
+ .spyproject
116
+
117
+ # Rope project settings
118
+ .ropeproject
119
+
120
+ # mkdocs documentation
121
+ /site
122
+
123
+ # mypy
124
+ .mypy_cache/
125
+ .dmypy.json
126
+ dmypy.json
127
+
128
+ # Pyre type checker
129
+ .pyre/
130
+
131
+
132
+
133
+ # Created by https://www.toptal.com/developers/gitignore/api/python,pycharm
134
+ # Edit at https://www.toptal.com/developers/gitignore?templates=python,pycharm
135
+
136
+ ### PyCharm ###
137
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
138
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
139
+
140
+ # User-specific stuff
141
+ .idea/**/workspace.xml
142
+ .idea/**/tasks.xml
143
+ .idea/**/usage.statistics.xml
144
+ .idea/**/dictionaries
145
+ .idea/**/shelf
146
+
147
+ # AWS User-specific
148
+ .idea/**/aws.xml
149
+
150
+ # Generated files
151
+ .idea/**/contentModel.xml
152
+
153
+ # Sensitive or high-churn files
154
+ .idea/**/dataSources/
155
+ .idea/**/dataSources.ids
156
+ .idea/**/dataSources.local.xml
157
+ .idea/**/sqlDataSources.xml
158
+ .idea/**/dynamic.xml
159
+ .idea/**/uiDesigner.xml
160
+ .idea/**/dbnavigator.xml
161
+
162
+ # Gradle
163
+ .idea/**/gradle.xml
164
+ .idea/**/libraries
165
+
166
+ # Gradle and Maven with auto-import
167
+ # When using Gradle or Maven with auto-import, you should exclude module files,
168
+ # since they will be recreated, and may cause churn. Uncomment if using
169
+ # auto-import.
170
+ # .idea/artifacts
171
+ # .idea/compiler.xml
172
+ # .idea/jarRepositories.xml
173
+ # .idea/modules.xml
174
+ # .idea/*.iml
175
+ # .idea/modules
176
+ # *.iml
177
+ # *.ipr
178
+
179
+ # CMake
180
+ cmake-build-*/
181
+
182
+ # Mongo Explorer plugin
183
+ .idea/**/mongoSettings.xml
184
+
185
+ # File-based project format
186
+ *.iws
187
+
188
+ # IntelliJ
189
+ out/
190
+
191
+ # mpeltonen/sbt-idea plugin
192
+ .idea_modules/
193
+
194
+ # JIRA plugin
195
+ atlassian-ide-plugin.xml
196
+
197
+ # Cursive Clojure plugin
198
+ .idea/replstate.xml
199
+
200
+ # SonarLint plugin
201
+ .idea/sonarlint/
202
+
203
+ # Crashlytics plugin (for Android Studio and IntelliJ)
204
+ com_crashlytics_export_strings.xml
205
+ crashlytics.properties
206
+ crashlytics-build.properties
207
+ fabric.properties
208
+
209
+ # Editor-based Rest Client
210
+ .idea/httpRequests
211
+
212
+ # Android studio 3.1+ serialized cache file
213
+ .idea/caches/build_file_checksums.ser
214
+
215
+ ### PyCharm Patch ###
216
+ # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
217
+
218
+ # *.iml
219
+ # modules.xml
220
+ # .idea/misc.xml
221
+ # *.ipr
222
+
223
+ # Sonarlint plugin
224
+ # https://plugins.jetbrains.com/plugin/7973-sonarlint
225
+ .idea/**/sonarlint/
226
+
227
+ # SonarQube Plugin
228
+ # https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
229
+ .idea/**/sonarIssues.xml
230
+
231
+ # Markdown Navigator plugin
232
+ # https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
233
+ .idea/**/markdown-navigator.xml
234
+ .idea/**/markdown-navigator-enh.xml
235
+ .idea/**/markdown-navigator/
236
+
237
+ # Cache file creation bug
238
+ # See https://youtrack.jetbrains.com/issue/JBR-2257
239
+ .idea/$CACHE_FILE$
240
+
241
+ # CodeStream plugin
242
+ # https://plugins.jetbrains.com/plugin/12206-codestream
243
+ .idea/codestream.xml
244
+
245
+ # Azure Toolkit for IntelliJ plugin
246
+ # https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
247
+ .idea/**/azureSettings.xml
248
+
249
+
250
+ # PyBuilder
251
+ .pybuilder/
252
+
253
+
254
+ # pyenv
255
+ # For a library or package, you might want to ignore these files since the code is
256
+ # intended to run in multiple environments; otherwise, check them in:
257
+ # .python-version
258
+
259
+ # pipenv
260
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
261
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
262
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
263
+ # install all needed dependencies.
264
+ #Pipfile.lock
265
+
266
+ # poetry
267
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
268
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
269
+ # commonly ignored for libraries.
270
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
271
+ #poetry.lock
272
+
273
+ # pdm
274
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
275
+ #pdm.lock
276
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
277
+ # in version control.
278
+ # https://pdm.fming.dev/#use-with-ide
279
+ .pdm.toml
280
+
281
+ # pytype static type analyzer
282
+ .pytype/
283
+
284
+ # Cython debug symbols
285
+ cython_debug/
286
+
287
+ # PyCharm
288
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
289
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
290
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
291
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
292
+ #.idea/
293
+
294
294
  # End of https://www.toptal.com/developers/gitignore/api/python,pycharm