pybiolib 0.2.951__py3-none-any.whl → 1.2.1890__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 (262) hide show
  1. biolib/__init__.py +357 -11
  2. biolib/_data_record/data_record.py +380 -0
  3. biolib/_index/__init__.py +0 -0
  4. biolib/_index/index.py +55 -0
  5. biolib/_index/query_result.py +103 -0
  6. biolib/_internal/__init__.py +0 -0
  7. biolib/_internal/add_copilot_prompts.py +58 -0
  8. biolib/_internal/add_gui_files.py +81 -0
  9. biolib/_internal/data_record/__init__.py +1 -0
  10. biolib/_internal/data_record/data_record.py +85 -0
  11. biolib/_internal/data_record/push_data.py +116 -0
  12. biolib/_internal/data_record/remote_storage_endpoint.py +43 -0
  13. biolib/_internal/errors.py +5 -0
  14. biolib/_internal/file_utils.py +125 -0
  15. biolib/_internal/fuse_mount/__init__.py +1 -0
  16. biolib/_internal/fuse_mount/experiment_fuse_mount.py +209 -0
  17. biolib/_internal/http_client.py +159 -0
  18. biolib/_internal/lfs/__init__.py +1 -0
  19. biolib/_internal/lfs/cache.py +51 -0
  20. biolib/_internal/libs/__init__.py +1 -0
  21. biolib/_internal/libs/fusepy/__init__.py +1257 -0
  22. biolib/_internal/push_application.py +488 -0
  23. biolib/_internal/runtime.py +22 -0
  24. biolib/_internal/string_utils.py +13 -0
  25. biolib/_internal/templates/__init__.py +1 -0
  26. biolib/_internal/templates/copilot_template/.github/instructions/general-app-knowledge.instructions.md +10 -0
  27. biolib/_internal/templates/copilot_template/.github/instructions/style-general.instructions.md +20 -0
  28. biolib/_internal/templates/copilot_template/.github/instructions/style-python.instructions.md +16 -0
  29. biolib/_internal/templates/copilot_template/.github/instructions/style-react-ts.instructions.md +47 -0
  30. biolib/_internal/templates/copilot_template/.github/prompts/biolib_app_inputs.prompt.md +11 -0
  31. biolib/_internal/templates/copilot_template/.github/prompts/biolib_onboard_repo.prompt.md +19 -0
  32. biolib/_internal/templates/copilot_template/.github/prompts/biolib_run_apps.prompt.md +12 -0
  33. biolib/_internal/templates/dashboard_template/.biolib/config.yml +5 -0
  34. biolib/_internal/templates/github_workflow_template/.github/workflows/biolib.yml +21 -0
  35. biolib/_internal/templates/gitignore_template/.gitignore +10 -0
  36. biolib/_internal/templates/gui_template/.yarnrc.yml +1 -0
  37. biolib/_internal/templates/gui_template/App.tsx +53 -0
  38. biolib/_internal/templates/gui_template/Dockerfile +27 -0
  39. biolib/_internal/templates/gui_template/biolib-sdk.ts +82 -0
  40. biolib/_internal/templates/gui_template/dev-data/output.json +7 -0
  41. biolib/_internal/templates/gui_template/index.css +5 -0
  42. biolib/_internal/templates/gui_template/index.html +13 -0
  43. biolib/_internal/templates/gui_template/index.tsx +10 -0
  44. biolib/_internal/templates/gui_template/package.json +27 -0
  45. biolib/_internal/templates/gui_template/tsconfig.json +24 -0
  46. biolib/_internal/templates/gui_template/vite-plugin-dev-data.ts +50 -0
  47. biolib/_internal/templates/gui_template/vite.config.mts +10 -0
  48. biolib/_internal/templates/init_template/.biolib/config.yml +19 -0
  49. biolib/_internal/templates/init_template/Dockerfile +14 -0
  50. biolib/_internal/templates/init_template/requirements.txt +1 -0
  51. biolib/_internal/templates/init_template/run.py +12 -0
  52. biolib/_internal/templates/init_template/run.sh +4 -0
  53. biolib/_internal/templates/templates.py +25 -0
  54. biolib/_internal/tree_utils.py +106 -0
  55. biolib/_internal/utils/__init__.py +65 -0
  56. biolib/_internal/utils/auth.py +46 -0
  57. biolib/_internal/utils/job_url.py +33 -0
  58. biolib/_internal/utils/multinode.py +263 -0
  59. biolib/_runtime/runtime.py +157 -0
  60. biolib/_session/session.py +44 -0
  61. biolib/_shared/__init__.py +0 -0
  62. biolib/_shared/types/__init__.py +74 -0
  63. biolib/_shared/types/account.py +12 -0
  64. biolib/_shared/types/account_member.py +8 -0
  65. biolib/_shared/types/app.py +9 -0
  66. biolib/_shared/types/data_record.py +40 -0
  67. biolib/_shared/types/experiment.py +32 -0
  68. biolib/_shared/types/file_node.py +17 -0
  69. biolib/_shared/types/push.py +6 -0
  70. biolib/_shared/types/resource.py +37 -0
  71. biolib/_shared/types/resource_deploy_key.py +11 -0
  72. biolib/_shared/types/resource_permission.py +14 -0
  73. biolib/_shared/types/resource_version.py +19 -0
  74. biolib/_shared/types/result.py +14 -0
  75. biolib/_shared/types/typing.py +10 -0
  76. biolib/_shared/types/user.py +19 -0
  77. biolib/_shared/utils/__init__.py +7 -0
  78. biolib/_shared/utils/resource_uri.py +75 -0
  79. biolib/api/__init__.py +6 -0
  80. biolib/api/client.py +168 -0
  81. biolib/app/app.py +252 -49
  82. biolib/app/search_apps.py +45 -0
  83. biolib/biolib_api_client/api_client.py +126 -31
  84. biolib/biolib_api_client/app_types.py +24 -4
  85. biolib/biolib_api_client/auth.py +31 -8
  86. biolib/biolib_api_client/biolib_app_api.py +147 -52
  87. biolib/biolib_api_client/biolib_job_api.py +161 -141
  88. biolib/biolib_api_client/job_types.py +21 -5
  89. biolib/biolib_api_client/lfs_types.py +7 -23
  90. biolib/biolib_api_client/user_state.py +56 -0
  91. biolib/biolib_binary_format/__init__.py +1 -4
  92. biolib/biolib_binary_format/file_in_container.py +105 -0
  93. biolib/biolib_binary_format/module_input.py +24 -7
  94. biolib/biolib_binary_format/module_output_v2.py +149 -0
  95. biolib/biolib_binary_format/remote_endpoints.py +34 -0
  96. biolib/biolib_binary_format/remote_stream_seeker.py +59 -0
  97. biolib/biolib_binary_format/saved_job.py +3 -2
  98. biolib/biolib_binary_format/{attestation_document.py → stdout_and_stderr.py} +8 -8
  99. biolib/biolib_binary_format/system_status_update.py +3 -2
  100. biolib/biolib_binary_format/utils.py +175 -0
  101. biolib/biolib_docker_client/__init__.py +11 -2
  102. biolib/biolib_errors.py +36 -0
  103. biolib/biolib_logging.py +27 -10
  104. biolib/cli/__init__.py +38 -0
  105. biolib/cli/auth.py +46 -0
  106. biolib/cli/data_record.py +164 -0
  107. biolib/cli/index.py +32 -0
  108. biolib/cli/init.py +421 -0
  109. biolib/cli/lfs.py +101 -0
  110. biolib/cli/push.py +50 -0
  111. biolib/cli/run.py +63 -0
  112. biolib/cli/runtime.py +14 -0
  113. biolib/cli/sdk.py +16 -0
  114. biolib/cli/start.py +56 -0
  115. biolib/compute_node/cloud_utils/cloud_utils.py +110 -161
  116. biolib/compute_node/job_worker/cache_state.py +66 -88
  117. biolib/compute_node/job_worker/cache_types.py +1 -6
  118. biolib/compute_node/job_worker/docker_image_cache.py +112 -37
  119. biolib/compute_node/job_worker/executors/__init__.py +0 -3
  120. biolib/compute_node/job_worker/executors/docker_executor.py +532 -199
  121. biolib/compute_node/job_worker/executors/docker_types.py +9 -1
  122. biolib/compute_node/job_worker/executors/types.py +19 -9
  123. biolib/compute_node/job_worker/job_legacy_input_wait_timeout_thread.py +30 -0
  124. biolib/compute_node/job_worker/job_max_runtime_timer_thread.py +3 -5
  125. biolib/compute_node/job_worker/job_storage.py +108 -0
  126. biolib/compute_node/job_worker/job_worker.py +397 -212
  127. biolib/compute_node/job_worker/large_file_system.py +87 -38
  128. biolib/compute_node/job_worker/network_alloc.py +99 -0
  129. biolib/compute_node/job_worker/network_buffer.py +240 -0
  130. biolib/compute_node/job_worker/utilization_reporter_thread.py +197 -0
  131. biolib/compute_node/job_worker/utils.py +9 -24
  132. biolib/compute_node/remote_host_proxy.py +400 -98
  133. biolib/compute_node/utils.py +31 -9
  134. biolib/compute_node/webserver/compute_node_results_proxy.py +189 -0
  135. biolib/compute_node/webserver/proxy_utils.py +28 -0
  136. biolib/compute_node/webserver/webserver.py +130 -44
  137. biolib/compute_node/webserver/webserver_types.py +2 -6
  138. biolib/compute_node/webserver/webserver_utils.py +77 -12
  139. biolib/compute_node/webserver/worker_thread.py +183 -42
  140. biolib/experiments/__init__.py +0 -0
  141. biolib/experiments/experiment.py +356 -0
  142. biolib/jobs/__init__.py +1 -0
  143. biolib/jobs/job.py +741 -0
  144. biolib/jobs/job_result.py +185 -0
  145. biolib/jobs/types.py +50 -0
  146. biolib/py.typed +0 -0
  147. biolib/runtime/__init__.py +14 -0
  148. biolib/sdk/__init__.py +91 -0
  149. biolib/tables.py +34 -0
  150. biolib/typing_utils.py +2 -7
  151. biolib/user/__init__.py +1 -0
  152. biolib/user/sign_in.py +54 -0
  153. biolib/utils/__init__.py +162 -0
  154. biolib/utils/cache_state.py +94 -0
  155. biolib/utils/multipart_uploader.py +194 -0
  156. biolib/utils/seq_util.py +150 -0
  157. biolib/utils/zip/remote_zip.py +640 -0
  158. pybiolib-1.2.1890.dist-info/METADATA +41 -0
  159. pybiolib-1.2.1890.dist-info/RECORD +177 -0
  160. {pybiolib-0.2.951.dist-info → pybiolib-1.2.1890.dist-info}/WHEEL +1 -1
  161. pybiolib-1.2.1890.dist-info/entry_points.txt +2 -0
  162. README.md +0 -17
  163. biolib/app/app_result.py +0 -68
  164. biolib/app/utils.py +0 -62
  165. biolib/biolib-js/0-biolib.worker.js +0 -1
  166. biolib/biolib-js/1-biolib.worker.js +0 -1
  167. biolib/biolib-js/2-biolib.worker.js +0 -1
  168. biolib/biolib-js/3-biolib.worker.js +0 -1
  169. biolib/biolib-js/4-biolib.worker.js +0 -1
  170. biolib/biolib-js/5-biolib.worker.js +0 -1
  171. biolib/biolib-js/6-biolib.worker.js +0 -1
  172. biolib/biolib-js/index.html +0 -10
  173. biolib/biolib-js/main-biolib.js +0 -1
  174. biolib/biolib_api_client/biolib_account_api.py +0 -21
  175. biolib/biolib_api_client/biolib_large_file_system_api.py +0 -108
  176. biolib/biolib_binary_format/aes_encrypted_package.py +0 -42
  177. biolib/biolib_binary_format/module_output.py +0 -58
  178. biolib/biolib_binary_format/rsa_encrypted_aes_package.py +0 -57
  179. biolib/biolib_push.py +0 -114
  180. biolib/cli.py +0 -203
  181. biolib/cli_utils.py +0 -273
  182. biolib/compute_node/cloud_utils/enclave_parent_types.py +0 -7
  183. biolib/compute_node/enclave/__init__.py +0 -2
  184. biolib/compute_node/enclave/enclave_remote_hosts.py +0 -53
  185. biolib/compute_node/enclave/nitro_secure_module_utils.py +0 -64
  186. biolib/compute_node/job_worker/executors/base_executor.py +0 -18
  187. biolib/compute_node/job_worker/executors/pyppeteer_executor.py +0 -173
  188. biolib/compute_node/job_worker/executors/remote/__init__.py +0 -1
  189. biolib/compute_node/job_worker/executors/remote/nitro_enclave_utils.py +0 -81
  190. biolib/compute_node/job_worker/executors/remote/remote_executor.py +0 -51
  191. biolib/lfs.py +0 -196
  192. biolib/pyppeteer/.circleci/config.yml +0 -100
  193. biolib/pyppeteer/.coveragerc +0 -3
  194. biolib/pyppeteer/.gitignore +0 -89
  195. biolib/pyppeteer/.pre-commit-config.yaml +0 -28
  196. biolib/pyppeteer/CHANGES.md +0 -253
  197. biolib/pyppeteer/CONTRIBUTING.md +0 -26
  198. biolib/pyppeteer/LICENSE +0 -12
  199. biolib/pyppeteer/README.md +0 -137
  200. biolib/pyppeteer/docs/Makefile +0 -177
  201. biolib/pyppeteer/docs/_static/custom.css +0 -28
  202. biolib/pyppeteer/docs/_templates/layout.html +0 -10
  203. biolib/pyppeteer/docs/changes.md +0 -1
  204. biolib/pyppeteer/docs/conf.py +0 -299
  205. biolib/pyppeteer/docs/index.md +0 -21
  206. biolib/pyppeteer/docs/make.bat +0 -242
  207. biolib/pyppeteer/docs/reference.md +0 -211
  208. biolib/pyppeteer/docs/server.py +0 -60
  209. biolib/pyppeteer/poetry.lock +0 -1699
  210. biolib/pyppeteer/pyppeteer/__init__.py +0 -135
  211. biolib/pyppeteer/pyppeteer/accessibility.py +0 -286
  212. biolib/pyppeteer/pyppeteer/browser.py +0 -401
  213. biolib/pyppeteer/pyppeteer/browser_fetcher.py +0 -194
  214. biolib/pyppeteer/pyppeteer/command.py +0 -22
  215. biolib/pyppeteer/pyppeteer/connection/__init__.py +0 -242
  216. biolib/pyppeteer/pyppeteer/connection/cdpsession.py +0 -101
  217. biolib/pyppeteer/pyppeteer/coverage.py +0 -346
  218. biolib/pyppeteer/pyppeteer/device_descriptors.py +0 -787
  219. biolib/pyppeteer/pyppeteer/dialog.py +0 -79
  220. biolib/pyppeteer/pyppeteer/domworld.py +0 -597
  221. biolib/pyppeteer/pyppeteer/emulation_manager.py +0 -53
  222. biolib/pyppeteer/pyppeteer/errors.py +0 -48
  223. biolib/pyppeteer/pyppeteer/events.py +0 -63
  224. biolib/pyppeteer/pyppeteer/execution_context.py +0 -156
  225. biolib/pyppeteer/pyppeteer/frame/__init__.py +0 -299
  226. biolib/pyppeteer/pyppeteer/frame/frame_manager.py +0 -306
  227. biolib/pyppeteer/pyppeteer/helpers.py +0 -245
  228. biolib/pyppeteer/pyppeteer/input.py +0 -371
  229. biolib/pyppeteer/pyppeteer/jshandle.py +0 -598
  230. biolib/pyppeteer/pyppeteer/launcher.py +0 -683
  231. biolib/pyppeteer/pyppeteer/lifecycle_watcher.py +0 -169
  232. biolib/pyppeteer/pyppeteer/models/__init__.py +0 -103
  233. biolib/pyppeteer/pyppeteer/models/_protocol.py +0 -12460
  234. biolib/pyppeteer/pyppeteer/multimap.py +0 -82
  235. biolib/pyppeteer/pyppeteer/network_manager.py +0 -678
  236. biolib/pyppeteer/pyppeteer/options.py +0 -8
  237. biolib/pyppeteer/pyppeteer/page.py +0 -1728
  238. biolib/pyppeteer/pyppeteer/pipe_transport.py +0 -59
  239. biolib/pyppeteer/pyppeteer/target.py +0 -147
  240. biolib/pyppeteer/pyppeteer/task_queue.py +0 -24
  241. biolib/pyppeteer/pyppeteer/timeout_settings.py +0 -36
  242. biolib/pyppeteer/pyppeteer/tracing.py +0 -93
  243. biolib/pyppeteer/pyppeteer/us_keyboard_layout.py +0 -305
  244. biolib/pyppeteer/pyppeteer/util.py +0 -18
  245. biolib/pyppeteer/pyppeteer/websocket_transport.py +0 -47
  246. biolib/pyppeteer/pyppeteer/worker.py +0 -101
  247. biolib/pyppeteer/pyproject.toml +0 -97
  248. biolib/pyppeteer/spell.txt +0 -137
  249. biolib/pyppeteer/tox.ini +0 -72
  250. biolib/pyppeteer/utils/generate_protocol_types.py +0 -603
  251. biolib/start_cli.py +0 -7
  252. biolib/utils.py +0 -47
  253. biolib/validators/validate_app_version.py +0 -183
  254. biolib/validators/validate_argument.py +0 -134
  255. biolib/validators/validate_module.py +0 -323
  256. biolib/validators/validate_zip_file.py +0 -40
  257. biolib/validators/validator_utils.py +0 -103
  258. pybiolib-0.2.951.dist-info/LICENSE +0 -21
  259. pybiolib-0.2.951.dist-info/METADATA +0 -61
  260. pybiolib-0.2.951.dist-info/RECORD +0 -153
  261. pybiolib-0.2.951.dist-info/entry_points.txt +0 -3
  262. /LICENSE → /pybiolib-1.2.1890.dist-info/licenses/LICENSE +0 -0
@@ -1,103 +0,0 @@
1
- from enum import Enum
2
- import re
3
-
4
-
5
- def validate_hostname_and_return_error_message(hostname):
6
- if '/' in hostname or '\\' in hostname:
7
- return 'The hostname can not contain slashes. Please only use the domain'
8
-
9
- if re.findall(r'[\s]', hostname):
10
- return 'The hostname can not contain whitespace'
11
-
12
- if hostname.split('.')[-1].isdigit():
13
- return 'The hostname can not be an IP address'
14
-
15
- # Using 'in' to catch subdomains as well i.e. 'account.biolib.com'
16
- if 'biolib.com' in hostname:
17
- return 'The biolib.com domain can not be used as a remote host'
18
-
19
-
20
- stdout_render_types = [
21
- ('text', 'Text'),
22
- ('markdown', 'Markdown'),
23
- ]
24
-
25
-
26
- class ChoicesEnum(Enum):
27
- """
28
- Class to be inherited from when using enums with the choice option in CharFields
29
- """
30
- @classmethod
31
- def choices(cls):
32
- return tuple((i.value, i.name) for i in cls)
33
-
34
- @classmethod
35
- def values(cls):
36
- return [i.value for i in cls]
37
-
38
-
39
- class AllowedYAMLEnvironments(ChoicesEnum):
40
- LOCAL_DOCKER = 'local-docker'
41
- DOCKERHUB = 'dockerhub'
42
- BIOLIB_APP = 'biolib'
43
-
44
-
45
- def normalize(string):
46
- return string.replace('-', '_').lower()
47
-
48
-
49
- custom_executors = {
50
- 'python3': {
51
- 'latest': '1.0.0',
52
- 'versions': [
53
- '1.0.0'
54
- ],
55
- },
56
- 'onnx': {
57
- 'latest': '1.0.0',
58
- 'versions': [
59
- '1.0.0'
60
- ],
61
- },
62
- 'r': {
63
- 'latest': '1.0.0',
64
- 'versions': [
65
- '1.0.0'
66
- ],
67
- },
68
- 'rust': {
69
- 'latest': '1.0.0',
70
- 'versions': [
71
- '1.0.0'
72
- ],
73
- },
74
- 'tensorflow': {
75
- 'latest': '1.0.0',
76
- 'versions': [
77
- '1.0.0'
78
- ],
79
- },
80
- 'tflite': {
81
- 'latest': '1.0.0',
82
- 'versions': [
83
- '1.0.0'
84
- ],
85
- },
86
- 'emscripten': {
87
- 'latest': '1.0.0',
88
- 'versions': [
89
- '1.0.0'
90
- ],
91
- }
92
- }
93
-
94
- old_to_new_executors_map = {
95
- 'bl-python3': 'python3',
96
- 'bl-onnx': 'onnx',
97
- 'bl-rust': 'rust',
98
- 'bl-r': 'r',
99
- 'bl-tensorflow': 'tensorflow',
100
- 'bl-emscripten': 'emscripten',
101
- 'bl-tflite': 'tflite'
102
- }
103
-
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2020 BioLib Inc
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
@@ -1,61 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: pybiolib
3
- Version: 0.2.951
4
- Summary: BioLib Python Client
5
- Home-page: https://github.com/biolib
6
- License: MIT
7
- Keywords: biolib
8
- Author: biolib
9
- Author-email: hello@biolib.com
10
- Requires-Python: >=3.6,<4.0
11
- Classifier: License :: OSI Approved :: MIT License
12
- Classifier: Operating System :: OS Independent
13
- Classifier: Programming Language :: Python :: 3
14
- Classifier: Programming Language :: Python :: 3.10
15
- Classifier: Programming Language :: Python :: 3.6
16
- Classifier: Programming Language :: Python :: 3.7
17
- Classifier: Programming Language :: Python :: 3.8
18
- Classifier: Programming Language :: Python :: 3.9
19
- Requires-Dist: aenum (>=2.2.3,<3.0.0)
20
- Requires-Dist: appdirs (>=1.4.3,<2.0.0)
21
- Requires-Dist: cbor2 (==5.2.0)
22
- Requires-Dist: certifi (>=2019.11.28)
23
- Requires-Dist: cose (==0.9.dev2)
24
- Requires-Dist: cryptography (>=3.1)
25
- Requires-Dist: docker (==4.4.1)
26
- Requires-Dist: flask (==2.0.1)
27
- Requires-Dist: flask-cors (==3.0.10)
28
- Requires-Dist: gunicorn (==20.1.0)
29
- Requires-Dist: importlib-metadata (>=1.6.1)
30
- Requires-Dist: nest_asyncio (>=1.4.0)
31
- Requires-Dist: ordered_set (>=4.0.1,<5.0.0)
32
- Requires-Dist: pyOpenSSL (==19.1.0)
33
- Requires-Dist: pycryptodome (==3.9.9)
34
- Requires-Dist: pyee (>=7.0.1,<8.0.0)
35
- Requires-Dist: pyyaml (>=5.3.1)
36
- Requires-Dist: requests (==2.24.0)
37
- Requires-Dist: termcolor (==1.1.0)
38
- Requires-Dist: tqdm (>=4.42.1,<5.0.0)
39
- Requires-Dist: typing_extensions (==3.10.0); python_version < "3.8"
40
- Requires-Dist: typing_inspect (>=0.5.0,<0.6.0); python_version < "3.8"
41
- Requires-Dist: websockets (>=8.0)
42
- Description-Content-Type: text/markdown
43
-
44
- # PyBioLib
45
-
46
- PyBioLib is a Python package for running BioLib applications from Python scripts, and the command line.
47
-
48
- ### Python Example
49
- ```python
50
- # pip3 install pybiolib
51
- import biolib
52
- samtools = biolib.load('samtools/samtools')
53
- print(samtools.cli(args='--help'))
54
- ```
55
-
56
- ### Command Line Example
57
- ```bash
58
- pip3 install pybiolib
59
- biolib run samtools/samtools --help
60
- ```
61
-
@@ -1,153 +0,0 @@
1
- LICENSE,sha256=F2h7gf8i0agDIeWoBPXDMYScvQOz02pAWkKhTGOHaaw,1067
2
- README.md,sha256=sp_kZhEXsN-AXApS2wdXb7Gq6ObNghH5lre2GooRxMk,363
3
- biolib/__init__.py,sha256=OQsZiN1pxWTSC_63_4Cg46GQ-8mrjQutGGZZ8yHyjDU,1085
4
- biolib/app/__init__.py,sha256=cdPtcfb_U-bxb9iSL4fCEq2rpD9OjkyY4W-Zw60B0LI,37
5
- biolib/app/app.py,sha256=7442_tHpPw61yzJXMGlYaSfcOU5PO83Gobj5aF7UkW4,3899
6
- biolib/app/app_result.py,sha256=pgMn-QBP-ZegC6Mx8jmhaJVhyyuSuEfyhT85jt_ByPU,2400
7
- biolib/app/utils.py,sha256=Ik2n0NdPXfLn2rpXJCXAwM1-8PM53ThcmBIJcp4SwK4,2184
8
- biolib/biolib-js/0-biolib.worker.js,sha256=POoaw6qWG9smlf6XGndWz5b_QbZl4tg_vM9QxIgsLVY,179151
9
- biolib/biolib-js/1-biolib.worker.js,sha256=POoaw6qWG9smlf6XGndWz5b_QbZl4tg_vM9QxIgsLVY,179151
10
- biolib/biolib-js/2-biolib.worker.js,sha256=POoaw6qWG9smlf6XGndWz5b_QbZl4tg_vM9QxIgsLVY,179151
11
- biolib/biolib-js/3-biolib.worker.js,sha256=Awb5cWXZtxF8G-in5C_uNE0tEKZaN3SNUQ7TPjR_Z3M,527590
12
- biolib/biolib-js/4-biolib.worker.js,sha256=uieMBpUpG2Q9gW4mEFgJ0x63MzOX5spVEttafwKy4ys,873473
13
- biolib/biolib-js/5-biolib.worker.js,sha256=MfparlzSY_gbPlOq7k83eSyG2yCOZ_6YWTFJ8tCJaYY,191218
14
- biolib/biolib-js/6-biolib.worker.js,sha256=POoaw6qWG9smlf6XGndWz5b_QbZl4tg_vM9QxIgsLVY,179151
15
- biolib/biolib-js/index.html,sha256=OmviCeZBa5jb8fjRJpT-e7FpYOQSCdLO-9VzbdhT50E,163
16
- biolib/biolib-js/main-biolib.js,sha256=PQ41JGjHAwjGEsUI6Wa1Ca61ibvsjFEoa06OH2IkKLE,292927
17
- biolib/biolib_api_client/__init__.py,sha256=E5EMa19wJoblwSdQPYrxc_BtIeRsAuO0L_jQweWw-Yk,182
18
- biolib/biolib_api_client/api_client.py,sha256=KN987GknVIdWU0Ee0JDpUPzS35pbg4aTpal9SEdZLeE,2731
19
- biolib/biolib_api_client/app_types.py,sha256=0euTpatyPZ2H_11jtHli10mDub1PmRJ3EcBQ5w5muj0,1971
20
- biolib/biolib_api_client/auth.py,sha256=bttYiF2z8LVzAh5_Al5tv8dYkWYwuE2f68enLBhNVGQ,317
21
- biolib/biolib_api_client/biolib_account_api.py,sha256=2Mc6SbmjBSsz8lF2H3iiaZHEm47LyI0B4rjmvzxKHt4,580
22
- biolib/biolib_api_client/biolib_app_api.py,sha256=JViUHCVMJJNmMUWz5J6xOFIm_LbIMo1jd1tmBFq2BMM,2606
23
- biolib/biolib_api_client/biolib_job_api.py,sha256=I-IXE97mfHlf6u0_Jdys5pDrZ31XQeCc3Xr3I2rOEAE,5818
24
- biolib/biolib_api_client/biolib_large_file_system_api.py,sha256=YStkeeJO4Xe6fo7IvOLyI-e0DZM99ONj8Tf7FA2H4cU,3959
25
- biolib/biolib_api_client/common_types.py,sha256=RH-1KNHqUF-EkTpfPOSTt5Mq1GPdfju_cqXDesscO1I,123
26
- biolib/biolib_api_client/job_types.py,sha256=_zIgydVuoTuWCDIrqH_1pk-RiQ_HdM70CCoVwjuhE-k,888
27
- biolib/biolib_api_client/lfs_types.py,sha256=tbGjKisAKDR-q0u_bhfG5gEwztlDK9TSKd8QohJcaWo,656
28
- biolib/biolib_binary_format/__init__.py,sha256=qA7CbvGZiRqsqCJ276TJMolpBhqDUm39xMHac-AFvR0,296
29
- biolib/biolib_binary_format/aes_encrypted_package.py,sha256=GDvWTECTsMqUC6-OUGrtJ2y6IallKdu51oQSbkVtyFU,1420
30
- biolib/biolib_binary_format/attestation_document.py,sha256=21N1GoKhAF2A7sEp0NCc3K1JWFt8K0_Nui_AodB8lUg,1041
31
- biolib/biolib_binary_format/base_bbf_package.py,sha256=vxRV4iKy0dXeDOlFWnMFI0hGnDBYDH5Cgh5gAfuObt8,959
32
- biolib/biolib_binary_format/module_input.py,sha256=WRX7USypSl8FJunsLljJYKAo7CMKvDShS4L_6P5C524,2499
33
- biolib/biolib_binary_format/module_output.py,sha256=4DKbaEfm49zp_Zth8RBYfqenBhST1GfSG0XX7Z6f7mU,2278
34
- biolib/biolib_binary_format/rsa_encrypted_aes_package.py,sha256=p2IAv1_FH67qQV3rj1fXKDQNSFxMuLaHEbuJ6WxRLdc,2269
35
- biolib/biolib_binary_format/saved_job.py,sha256=--CQl0NJdfANLesv6rI5yTSDWNfXWfvWr6pzOteRj4M,1047
36
- biolib/biolib_binary_format/system_exception.py,sha256=T3iL4_cSHAHim3RSDPS8Xyb1mfteaJBZonSXuRltc28,853
37
- biolib/biolib_binary_format/system_status_update.py,sha256=pZpNdMEC4Gc95M-qHnVY6QNS6A5XNUQQK9cbYwGPuKg,1133
38
- biolib/biolib_docker_client/__init__.py,sha256=Mor_M7Rt6K3l0Hx2a5qRJy7rxC-PIduVzYHsAjPU9uM,1118
39
- biolib/biolib_errors.py,sha256=raUwPgAzCASkqbHvn7AOXbs_Hg9AEM25GIiNiOniLxU,381
40
- biolib/biolib_logging.py,sha256=DeYzYpkxXOt-fHB4L7YQRjf8FnA5c5L-rixQZHZBmAU,2085
41
- biolib/biolib_push.py,sha256=762ZF0Rjsm5WPv-6Hc5Cp5pp_K8OBhr5KUCUuE-zQEk,4891
42
- biolib/cli.py,sha256=U_bSq9HXlsJEjVUUz4kJw4QHEamSnIX3ypIVXjvkZzI,8379
43
- biolib/cli_utils.py,sha256=gOd_ZDTPadoAU8Ahe2obmaN_y4ObWki1y3zrdp05dBk,9264
44
- biolib/compute_node/.gitignore,sha256=GZdZ4g7HftqfOfasFpBC5zV1YQAbht1a7EzcXD6f3zg,45
45
- biolib/compute_node/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
- biolib/compute_node/cloud_utils/__init__.py,sha256=VZSScLqaz5tg_gpMvWgwkAu9Qf-vgW_QHRoDOaAmU44,67
47
- biolib/compute_node/cloud_utils/cloud_utils.py,sha256=dfTZewYt2PTxYPz2_b610Bwv99TJ2xzTWQrLlPO7Oxw,9229
48
- biolib/compute_node/cloud_utils/enclave_parent_types.py,sha256=4QEH2kZQn1Km1wffVfb9_GIuh-XEDnhmc4SVz8d--Wo,125
49
- biolib/compute_node/enclave/__init__.py,sha256=REW--siuRe-JFx77ctM8cTQquQo06sQAipfdFZu1_EM,72
50
- biolib/compute_node/enclave/enclave_remote_hosts.py,sha256=WiR1T_mf-acuNak204tz7B4eeG-wgcYagcX4R56JGvo,2488
51
- biolib/compute_node/enclave/nitro_secure_module_utils.py,sha256=iDrX8-qmex690OMb_SuWyLrkrh2XbXbz1wuu_oTVoFc,2456
52
- biolib/compute_node/job_worker/__init__.py,sha256=ipdPWaABKYrltxny15e2kK8PWdEE7VzXbkKK6wM_zDk,71
53
- biolib/compute_node/job_worker/cache_state.py,sha256=0ZxdVG-pzECzwisES6wF_NCf8RAvTvuc7HGLWvf6_70,4826
54
- biolib/compute_node/job_worker/cache_types.py,sha256=MM_RXy5ToH83lBLDwsOwx4mQZHgacWcPuc4cfFfggrU,891
55
- biolib/compute_node/job_worker/docker_image_cache.py,sha256=ENSQdG4_U7fwFvjFlyH134_GBa1F2vwlBlP2439E9EE,4735
56
- biolib/compute_node/job_worker/executors/__init__.py,sha256=cGWGpVBi9WMRRZGNn_Jhb31nmugWcR-1WjGBsM9U6r0,311
57
- biolib/compute_node/job_worker/executors/base_executor.py,sha256=eaWziSxIeqOn-30xgvhhHnhIdP94Ih2FPKG_wVtYexc,448
58
- biolib/compute_node/job_worker/executors/docker_executor.py,sha256=1HtClVWSyG9d3MufqQvF0x1EK6e83z3bbnnIAe3n7m8,16209
59
- biolib/compute_node/job_worker/executors/docker_types.py,sha256=z8Y9SUaXlGMWvNkog0TSE09II1O53WZC1hJWXiKM8rc,122
60
- biolib/compute_node/job_worker/executors/pyppeteer_executor.py,sha256=EFvPgtuSXkVgU-z4t1GOS-2PV5e7ehs5hEHiv5BtnqE,6984
61
- biolib/compute_node/job_worker/executors/remote/__init__.py,sha256=Yjav4ARUUb3jscwJHF_XPDL0YQJR483OpDe-8i8Kl4w,91
62
- biolib/compute_node/job_worker/executors/remote/nitro_enclave_utils.py,sha256=TYVQ5zm-vF_JbopakO8lKOwcrTQe2mpuQOhoWpwviqQ,3442
63
- biolib/compute_node/job_worker/executors/remote/remote_executor.py,sha256=kAhTd5dxxMlwrK85_EdCCmkQWSdMu5wFnAuLY8BdHgc,2401
64
- biolib/compute_node/job_worker/executors/tars/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
- biolib/compute_node/job_worker/executors/types.py,sha256=mAkacxuo9YtwgEpVeyVyrk06befcMKFs0IKSILQIkeU,1325
66
- biolib/compute_node/job_worker/job_max_runtime_timer_thread.py,sha256=64770NDVjlHSciAsL8VyGLvTwkyUP4NwkjKFEcI8zDY,1276
67
- biolib/compute_node/job_worker/job_worker.py,sha256=OaoBzLM8vc_56g5-whMlTv51p3jvr0eeLzivPGM6FX4,22729
68
- biolib/compute_node/job_worker/large_file_system.py,sha256=I92ElYYDpem0C2l4Ia82wJO5D5aIn_0AWGKbh0U-iHg,6848
69
- biolib/compute_node/job_worker/mappings.py,sha256=Z48Kg4nbcOvsT2-9o3RRikBkqflgO4XeaWxTGz-CNvI,2499
70
- biolib/compute_node/job_worker/utils.py,sha256=q5tzLfPs-cO3VE-hQtsY2LNUfj-9RmPOIZhSMGN8tOw,1729
71
- biolib/compute_node/remote_host_proxy.py,sha256=tgV3a3Kp_XKwa-FXnUDa8qerhblTn7gSJXsiiEtZ1ys,7125
72
- biolib/compute_node/socker_listener_thread.py,sha256=T5_UikA3MB9bD5W_dckYLPTgixh72vKUlgbBvj9dbM0,1601
73
- biolib/compute_node/socket_sender_thread.py,sha256=YgamPHeUm2GjMFGx8qk-99WlZhEs-kAb3q_2O6qByig,971
74
- biolib/compute_node/utils.py,sha256=Tb2Q0S9UeX63r6RykArQ46ov6cDLFksGPnkN_GAxUI0,3890
75
- biolib/compute_node/webserver/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
76
- biolib/compute_node/webserver/gunicorn_flask_application.py,sha256=jPfR_YvNBekLUXWo_vHFV-FIwlb8s8tacKmGHvh93qc,914
77
- biolib/compute_node/webserver/webserver.py,sha256=xkR0T2pdHfNV--acm0BNzIP0QZPq5DlgvVHYjPYfLzw,5090
78
- biolib/compute_node/webserver/webserver_types.py,sha256=oRKRDfvGGdi1V47_dz7y6oNDokiau2Mzdz9Amn4MPNw,540
79
- biolib/compute_node/webserver/webserver_utils.py,sha256=-NXe_MhBv25kV1vZqmCXyq3y2KclWIYp3RKqodfgHIw,1602
80
- biolib/compute_node/webserver/worker_thread.py,sha256=1gwJsn7zqOidG46lx9ZVCbcbNluWsMHkajknsYQ7RdM,6196
81
- biolib/lfs.py,sha256=2mbReY8s73Mgb-UUsLZA74Dke2LY29G1YfAqTybCybs,8097
82
- biolib/pyppeteer/.circleci/config.yml,sha256=qycnzHgNJlgco2LEyJ1bHdYiB5JGsebIQTmAjFE3Tjo,2695
83
- biolib/pyppeteer/.coveragerc,sha256=wGcOWgOEbS2__OQg9zz_eZss1D9EkpXWoQZ5XAmxbxI,43
84
- biolib/pyppeteer/.gitignore,sha256=A9iuYlI9xu56EOJd0Oyfd3_KHKkk0p2smKQUt09RG2Q,1027
85
- biolib/pyppeteer/.pre-commit-config.yaml,sha256=fHA_Ogl3AGjjKgSpkXmbTdUgxkDSgF-4-sd1djTjIcA,876
86
- biolib/pyppeteer/CHANGES.md,sha256=ty0UVVKYAuHA8lq3Lfre2_kyD-BvqIoyrVLEDAVIKCU,8378
87
- biolib/pyppeteer/CONTRIBUTING.md,sha256=0HEAXKpjyQNkoqWn--CrDC3Zb_ftTDHmiBRTGzvQQs8,1347
88
- biolib/pyppeteer/LICENSE,sha256=t_-cAH6fP1i9jTxDh8fX357Q8SEZQUIs2-Jy71TYT5U,1154
89
- biolib/pyppeteer/README.md,sha256=tRs82aZlcBqLvjxARXM7jW5CEaQwg_sn4tmCCWN7GK4,5456
90
- biolib/pyppeteer/docs/Makefile,sha256=W9oWbfOkViuWEkF9eyEV9Tce-NPFgS6xh6mXFF4H_g8,6774
91
- biolib/pyppeteer/docs/_static/custom.css,sha256=rsWzqYJjeEuAd7vEBZGaMc1mPWah9OnFffHtV_m5J7g,421
92
- biolib/pyppeteer/docs/_templates/layout.html,sha256=4SRWQPDt1xVQY__RHiAbixScwD1BsYm-4rvkOcNfp3I,590
93
- biolib/pyppeteer/docs/changes.md,sha256=u7tDsI-0J9lT5cNDcRpJ2WrQhBv81GL42rDSehsToJ0,29
94
- biolib/pyppeteer/docs/conf.py,sha256=4i5AclJv0qYn8l9I40XU5mtxuP5foxVL49KVSHfrKsQ,9456
95
- biolib/pyppeteer/docs/index.md,sha256=mjfT2m28rjUrYLXutII8MlzBVugSEYiebQWX4bMlDX0,248
96
- biolib/pyppeteer/docs/make.bat,sha256=QmSsx4NuQyqkrx2TnI4h7cvUKVEDbw17OOfgnbAfR-Q,6465
97
- biolib/pyppeteer/docs/reference.md,sha256=0O3g6Yr1EGzgZXSVyW6-uI1Fo1taCZmCvxGIq5R1UIc,4375
98
- biolib/pyppeteer/docs/server.py,sha256=r8tlBPlGmx-LWLAZ_6tR-qt05p-UqiX6-hkEEK9QEDo,1439
99
- biolib/pyppeteer/poetry.lock,sha256=1jzUI9DIabhUVr2D8ceJnu7z936su-SCXOV_NRVdIro,80808
100
- biolib/pyppeteer/pyppeteer/__init__.py,sha256=jhqkxhUlwnIfrzNyxQ1Gvwy2Ky1vmWgn7cgvkZa27ms,4486
101
- biolib/pyppeteer/pyppeteer/accessibility.py,sha256=me3qz0oC28r4XG2vayYT4bdcQu7c5XtYfsK8cyWlGTI,9457
102
- biolib/pyppeteer/pyppeteer/browser.py,sha256=Vlf-D92vUfnuGKPN1q3U0_hnKBNBLHSNqLW1M_aUI2o,15346
103
- biolib/pyppeteer/pyppeteer/browser_fetcher.py,sha256=G5f7aiE-DoCiVuhCsuwLvPL8SZW2YXNdR3g7W1bp9Lc,7137
104
- biolib/pyppeteer/pyppeteer/command.py,sha256=sLaF1ag8YqpWyT1NdjKtUfV7whfE-nMojBaSYeQZROI,712
105
- biolib/pyppeteer/pyppeteer/connection/__init__.py,sha256=eKm9q1BkaPm5hh9kJur_aBAN0IYDrBu_2WR0pdemDsA,8506
106
- biolib/pyppeteer/pyppeteer/connection/cdpsession.py,sha256=Z3wjnseLBojA-PaJtUw_Pix-bZmJ5WXDmovnhtEjbEg,3608
107
- biolib/pyppeteer/pyppeteer/coverage.py,sha256=ctQ4Vxdlgp51qXi2fZ7qkCsgU2sGRHArJa7rK-MzgGw,13716
108
- biolib/pyppeteer/pyppeteer/device_descriptors.py,sha256=rk5RZRX8f3-9hOkn1FlFdAUJK3f69ZDxPuZQhybTFZ4,29042
109
- biolib/pyppeteer/pyppeteer/dialog.py,sha256=XBqXe22Da3_5poQ13eAkueZ5Iu4DyXp5zSUhdCM5qnk,2330
110
- biolib/pyppeteer/pyppeteer/domworld.py,sha256=ILIv0A1t39bJJ5fIiLU-uiLZAizj96zqj3yhncy5Rko,20875
111
- biolib/pyppeteer/pyppeteer/emulation_manager.py,sha256=sERPn54KJW1JGPyBXmWX_J2uQXL-I0gGUy-XZob4bRg,1901
112
- biolib/pyppeteer/pyppeteer/errors.py,sha256=PmzaEdA3aPkQS68TxBPUXg6aPClcSPfGlCLZLGwXXhs,822
113
- biolib/pyppeteer/pyppeteer/events.py,sha256=xHnj3QVPThy6cRYrNcyPuFcmsJxqeq6K8a3Yj-b-0cQ,2160
114
- biolib/pyppeteer/pyppeteer/execution_context.py,sha256=ynvakSdsfazNNqNCRYs_YJVZYgVRLbuoZlAedko5t5g,7019
115
- biolib/pyppeteer/pyppeteer/frame/__init__.py,sha256=Dnna1Qi5ZkUwqUnQdCq6AK6ndVmV-7ILmXGvcwQqurI,11539
116
- biolib/pyppeteer/pyppeteer/frame/frame_manager.py,sha256=3h7msWx4wwxZk9D70vM5bGF0bFMyLusHgw0ea2EOzog,12645
117
- biolib/pyppeteer/pyppeteer/helpers.py,sha256=RsAdU1Bo6ZHWRuLW_268W6HP8_0qJ8hiiRDnE_f_s4E,18217
118
- biolib/pyppeteer/pyppeteer/input.py,sha256=Odq6aujdQCPQ6i6ZD1Ns1knHQizFQCe741udjW8-bfo,12825
119
- biolib/pyppeteer/pyppeteer/jshandle.py,sha256=07HtUs9t-F0q8l2bdR4gTfvYt7a1aPO04dS2AFJwDx4,23049
120
- biolib/pyppeteer/pyppeteer/launcher.py,sha256=DTBzhSqT3XmO4f3MacWbqJtQldqtQh3nfAr4F9Yehu4,30040
121
- biolib/pyppeteer/pyppeteer/lifecycle_watcher.py,sha256=Ptxon5mfhNag4tjfRxJHA3ne5KK6-czuduB1tRP16h4,6747
122
- biolib/pyppeteer/pyppeteer/models/__init__.py,sha256=GyiFn8wMJgv6IF6dFMUfYgda66YTxZuOFSjkALICSCs,2263
123
- biolib/pyppeteer/pyppeteer/models/_protocol.py,sha256=D3vaaBxwAjyffNwd5QVxcWdFVDUJk8fbB2rxF5tYgqw,472516
124
- biolib/pyppeteer/pyppeteer/multimap.py,sha256=GBjtlGrart_Xzq1tUV9MQuMsxheKtlUO4giDaBT3nBA,2177
125
- biolib/pyppeteer/pyppeteer/network_manager.py,sha256=xgmJtvErEyYG4gP4R4GQRpZdNh1IehFZcnj6qP5FyFo,27489
126
- biolib/pyppeteer/pyppeteer/options.py,sha256=f8XJlUMBdoVNyoxWlTipTyUCZxhi--FLtbr58a_woVQ,124
127
- biolib/pyppeteer/pyppeteer/page.py,sha256=n5rhoFiCvFj8iGPex3rOdaop-X7bgkh84lwNJnVhHL8,70347
128
- biolib/pyppeteer/pyppeteer/pipe_transport.py,sha256=MaaFz5n1dEzwDfKzTTwIgoDxj_Fz1VP3UCE2qCVq18w,1853
129
- biolib/pyppeteer/pyppeteer/target.py,sha256=PCuqS_fg1zbc2uBfsPmmbW2f0EaonrwD23L2Nx6eHIA,5330
130
- biolib/pyppeteer/pyppeteer/task_queue.py,sha256=nSdLL5Jm92g7JqrLtRBcC86MigwnqMsBHHKG9jIl8es,755
131
- biolib/pyppeteer/pyppeteer/timeout_settings.py,sha256=9x8hYDeMPmYWeSqlZnNsIWmrN5ZjM4GlkWgrmvRLlW0,911
132
- biolib/pyppeteer/pyppeteer/tracing.py,sha256=4_DLoXtJThiq5_jKZ8XHwMYrWJYkt_27ZLLERKGYiss,2894
133
- biolib/pyppeteer/pyppeteer/us_keyboard_layout.py,sha256=v79jka7_fU1fIU5WHHajurLo6CaCnoUK6PzoMZcUYGY,17874
134
- biolib/pyppeteer/pyppeteer/util.py,sha256=R2Qr_JMxnxz8VQ8H0V0hHfQ1viv4nQ10dZfFuEwWTC8,308
135
- biolib/pyppeteer/pyppeteer/websocket_transport.py,sha256=bXpJrvCJEr-w-6zbKN5Ihd4I69W5KuXDRL_iA7qEL6Y,1712
136
- biolib/pyppeteer/pyppeteer/worker.py,sha256=SqyxNpwvf_R1HyeXmro46bN8HUhmNdYoO_XwSHRtkas,3654
137
- biolib/pyppeteer/pyproject.toml,sha256=kTFF6rlqDgeuQrQeGijuBoYKb_gemNWBnWfoil7tICw,2576
138
- biolib/pyppeteer/spell.txt,sha256=MiZk8d3S5rHBJ3NZSfXl1wPOPFnc846cB423YdESi6Y,1360
139
- biolib/pyppeteer/tox.ini,sha256=i5-HA9bjMb2_wfUbBsBklTzkbCTbHda-t5Qq5wwbW38,1935
140
- biolib/pyppeteer/utils/generate_protocol_types.py,sha256=RQGOHZwOAVVPZMl38cAQUxKK2DvrtBle1AouRoslZJo,26236
141
- biolib/start_cli.py,sha256=7P3XoXG8sU26M3jPRByr-8K7dEoEQZ-H6_Rx3ZzfIws,210
142
- biolib/typing_utils.py,sha256=Oh5TSevdPwevnho4m_vHNDj-Zkoha8YZpvMtMuPGHiY,230
143
- biolib/utils.py,sha256=OVW7NtJ3UgrLUDAfIURaDGt_F0OI7pdY_5zTedIF1gA,1856
144
- biolib/validators/validate_app_version.py,sha256=noatSFoPOQdkxR2L0-lf5rIWhil5CiwkH2fSFKmF2V8,6916
145
- biolib/validators/validate_argument.py,sha256=B-tqgMgXuTvJLhaMWcBTUKw18L5brJtIdfL_PSzXyGI,4300
146
- biolib/validators/validate_module.py,sha256=-1-U6c4jrmVLOpUfUSGgJmvj5mUI1bXULgtPwfZ4SY0,13239
147
- biolib/validators/validate_zip_file.py,sha256=2j8kJ1WF2u5OyMkfEDCoU_BvOtr8gLPWTtsmUG0zQ5g,1655
148
- biolib/validators/validator_utils.py,sha256=2QCJWdKiLTUHsvjDidrXKBjH95kKsEmFwd17muTGL0M,2135
149
- pybiolib-0.2.951.dist-info/entry_points.txt,sha256=p6DyaP_2kctxegTX23WBznnrDi4mz6gx04O5uKtRDXg,42
150
- pybiolib-0.2.951.dist-info/LICENSE,sha256=F2h7gf8i0agDIeWoBPXDMYScvQOz02pAWkKhTGOHaaw,1067
151
- pybiolib-0.2.951.dist-info/WHEEL,sha256=y3eDiaFVSNTPbgzfNn0nYn5tEn1cX6WrdetDlQM4xWw,83
152
- pybiolib-0.2.951.dist-info/METADATA,sha256=SzK9UQ5cKpylk2le5I_hW-7MhPPKtPf0hW896YfnZjI,1928
153
- pybiolib-0.2.951.dist-info/RECORD,,
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- biolib=biolib:call_cli
3
-