pybiolib 1.1.2133__py3-none-any.whl → 1.1.2135__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.
@@ -1 +1,2 @@
1
- from .resources import * # noqa: F403
1
+ from .data_record import * # noqa: F403
2
+ from .resource import * # noqa: F403
@@ -0,0 +1,12 @@
1
+ from .typing import Dict, List, TypedDict
2
+
3
+
4
+ class DataRecordValidationRuleDict(TypedDict):
5
+ path: str
6
+ type: str
7
+ rule: Dict
8
+
9
+
10
+ class DataRecordTypeDict(TypedDict):
11
+ name: str
12
+ validation_rules: List[Dict]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pybiolib
3
- Version: 1.1.2133
3
+ Version: 1.1.2135
4
4
  Summary: BioLib Python Client
5
5
  Home-page: https://github.com/biolib
6
6
  License: MIT
@@ -16,8 +16,9 @@ biolib/_internal/libs/__init__.py,sha256=Jdf4tNPqe_oIIf6zYml6TiqhL_02Vyqwge6IELr
16
16
  biolib/_internal/libs/fusepy/__init__.py,sha256=AWDzNFS-XV_5yKb0Qx7kggIhPzq1nj_BZS5y2Nso08k,41944
17
17
  biolib/_internal/push_application.py,sha256=8P7eXvySn7CRp5XBDkO3xjTGixS8g7-jD-_iwzM_XDI,10020
18
18
  biolib/_internal/runtime.py,sha256=9pZ3s3L7LGxdqOgnHh1KK3Jjyn_9MjhQmKHI-6hMT3U,448
19
- biolib/_internal/types/__init__.py,sha256=h2I2aupN01HbhBelL-qQa8FLuXiH1tB3kKl8dPdhmnc,39
20
- biolib/_internal/types/resources.py,sha256=LlxuiesDDv3TvfEmz_BCCxH0V650bNHtS_LpBMA25T4,256
19
+ biolib/_internal/types/__init__.py,sha256=yVxn48Z7N240X5yVYM-gsbqXDyLF9VJ6-mbNpFvVzgU,79
20
+ biolib/_internal/types/data_record.py,sha256=fPtWmrgL29zKGrzifr-4JOcpVp_4vVY0lNg8v6H_Bc8,220
21
+ biolib/_internal/types/resource.py,sha256=LlxuiesDDv3TvfEmz_BCCxH0V650bNHtS_LpBMA25T4,256
21
22
  biolib/_internal/types/typing.py,sha256=D4EKKEe7kDx0K6lJi-H_XLtk-8w6nu2fdqn9bvzI-Xo,288
22
23
  biolib/_internal/utils/__init__.py,sha256=p5vsIFyu-zYqBgdSMfwW9NC_jk7rXvvCbV4Bzd3As7c,630
23
24
  biolib/_runtime/runtime.py,sha256=zy9HrE4X5hBqm8doUHkckyflquSBDSXV3REhT2MQGas,2767
@@ -113,8 +114,8 @@ biolib/utils/cache_state.py,sha256=u256F37QSRIVwqKlbnCyzAX4EMI-kl6Dwu6qwj-Qmag,3
113
114
  biolib/utils/multipart_uploader.py,sha256=XvGP1I8tQuKhAH-QugPRoEsCi9qvbRk-DVBs5PNwwJo,8452
114
115
  biolib/utils/seq_util.py,sha256=jC5WhH63FTD7SLFJbxQGA2hOt9NTwq9zHl_BEec1Z0c,4907
115
116
  biolib/utils/zip/remote_zip.py,sha256=0wErYlxir5921agfFeV1xVjf29l9VNgGQvNlWOlj2Yc,23232
116
- pybiolib-1.1.2133.dist-info/LICENSE,sha256=F2h7gf8i0agDIeWoBPXDMYScvQOz02pAWkKhTGOHaaw,1067
117
- pybiolib-1.1.2133.dist-info/METADATA,sha256=k2ZjDKeN9CN3wAWU_s7tnvroLfIDh57_vsPHy-JmElU,1508
118
- pybiolib-1.1.2133.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
119
- pybiolib-1.1.2133.dist-info/entry_points.txt,sha256=p6DyaP_2kctxegTX23WBznnrDi4mz6gx04O5uKtRDXg,42
120
- pybiolib-1.1.2133.dist-info/RECORD,,
117
+ pybiolib-1.1.2135.dist-info/LICENSE,sha256=F2h7gf8i0agDIeWoBPXDMYScvQOz02pAWkKhTGOHaaw,1067
118
+ pybiolib-1.1.2135.dist-info/METADATA,sha256=FdkUDiSOcWBss6_5vClW1valODFetu3Soa8jNm29IE4,1508
119
+ pybiolib-1.1.2135.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
120
+ pybiolib-1.1.2135.dist-info/entry_points.txt,sha256=p6DyaP_2kctxegTX23WBznnrDi4mz6gx04O5uKtRDXg,42
121
+ pybiolib-1.1.2135.dist-info/RECORD,,
File without changes