ncbi-datasets-pyclient 18.14.0__py3-none-any.whl → 18.16.0__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 (24) hide show
  1. ncbi/datasets/openapi/__init__.py +23 -1
  2. ncbi/datasets/openapi/api/organelle_api.py +24 -24
  3. ncbi/datasets/openapi/api/virus_api.py +132 -132
  4. ncbi/datasets/openapi/api_client.py +1 -1
  5. ncbi/datasets/openapi/configuration.py +1 -1
  6. ncbi/datasets/openapi/models/__init__.py +11 -0
  7. ncbi/datasets/openapi/models/ncbigsupgcolv2_assembly_accessions_reply.py +87 -0
  8. ncbi/datasets/openapi/models/ncbigsupgcolv2_assembly_check_m_histogram_request.py +87 -0
  9. ncbi/datasets/openapi/models/ncbigsupgcolv2_assembly_data_report_draft_request.py +89 -0
  10. ncbi/datasets/openapi/models/ncbigsupgcolv2_assembly_data_reports_request.py +87 -0
  11. ncbi/datasets/openapi/models/ncbigsupgcolv2_chromosome_location.py +54 -0
  12. ncbi/datasets/openapi/models/ncbigsupgcolv2_chromosome_type.py +42 -0
  13. ncbi/datasets/openapi/models/ncbigsupgcolv2_sequence_accession_request.py +87 -0
  14. ncbi/datasets/openapi/models/ncbiprotddv2_parsed_abstract.py +107 -0
  15. ncbi/datasets/openapi/models/ncbiprotddv2_parsed_abstract_author.py +89 -0
  16. ncbi/datasets/openapi/models/ncbiprotddv2_parsed_abstract_epub.py +93 -0
  17. ncbi/datasets/openapi/models/ncbiprotddv2_pubmed_abstract_request.py +87 -0
  18. ncbi/datasets/openapi/models/ncbiprotddv2_redundancy_level.py +1 -0
  19. ncbi/datasets/openapi/models/ncbiprotddv2_similar_structure_request.py +2 -2
  20. {ncbi_datasets_pyclient-18.14.0.dist-info → ncbi_datasets_pyclient-18.16.0.dist-info}/METADATA +14 -3
  21. {ncbi_datasets_pyclient-18.14.0.dist-info → ncbi_datasets_pyclient-18.16.0.dist-info}/RECORD +24 -13
  22. {ncbi_datasets_pyclient-18.14.0.dist-info → ncbi_datasets_pyclient-18.16.0.dist-info}/WHEEL +1 -1
  23. {ncbi_datasets_pyclient-18.14.0.dist-info → ncbi_datasets_pyclient-18.16.0.dist-info}/licenses/LICENSE +0 -0
  24. {ncbi_datasets_pyclient-18.14.0.dist-info → ncbi_datasets_pyclient-18.16.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,89 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ NCBI Datasets API
5
+
6
+ ### NCBI Datasets is a resource that lets you easily gather data from NCBI. The NCBI Datasets version 2 API is updated often to add new features, fix bugs, and enhance usability.
7
+
8
+ The version of the OpenAPI document: v2
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from __future__ import annotations
16
+ import pprint
17
+ import re # noqa: F401
18
+ import json
19
+
20
+ from pydantic import BaseModel, ConfigDict, StrictStr
21
+ from typing import Any, ClassVar, Dict, List, Optional
22
+ from typing import Optional, Set
23
+ from typing_extensions import Self
24
+
25
+ class Ncbiprotddv2ParsedAbstractAuthor(BaseModel):
26
+ """
27
+ Ncbiprotddv2ParsedAbstractAuthor
28
+ """ # noqa: E501
29
+ surname: Optional[StrictStr] = None
30
+ given_name_initials: Optional[StrictStr] = None
31
+ __properties: ClassVar[List[str]] = ["surname", "given_name_initials"]
32
+
33
+ model_config = ConfigDict(
34
+ populate_by_name=True,
35
+ validate_assignment=True,
36
+ protected_namespaces=(),
37
+ )
38
+
39
+
40
+ def to_str(self) -> str:
41
+ """Returns the string representation of the model using alias"""
42
+ return pprint.pformat(self.model_dump(by_alias=True))
43
+
44
+ def to_json(self) -> str:
45
+ """Returns the JSON representation of the model using alias"""
46
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
47
+ return json.dumps(self.to_dict())
48
+
49
+ @classmethod
50
+ def from_json(cls, json_str: str) -> Optional[Self]:
51
+ """Create an instance of Ncbiprotddv2ParsedAbstractAuthor from a JSON string"""
52
+ return cls.from_dict(json.loads(json_str))
53
+
54
+ def to_dict(self) -> Dict[str, Any]:
55
+ """Return the dictionary representation of the model using alias.
56
+
57
+ This has the following differences from calling pydantic's
58
+ `self.model_dump(by_alias=True)`:
59
+
60
+ * `None` is only added to the output dict for nullable fields that
61
+ were set at model initialization. Other fields with value `None`
62
+ are ignored.
63
+ """
64
+ excluded_fields: Set[str] = set([
65
+ ])
66
+
67
+ _dict = self.model_dump(
68
+ by_alias=True,
69
+ exclude=excluded_fields,
70
+ exclude_none=True,
71
+ )
72
+ return _dict
73
+
74
+ @classmethod
75
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
76
+ """Create an instance of Ncbiprotddv2ParsedAbstractAuthor from a dict"""
77
+ if obj is None:
78
+ return None
79
+
80
+ if not isinstance(obj, dict):
81
+ return cls.model_validate(obj)
82
+
83
+ _obj = cls.model_validate({
84
+ "surname": obj.get("surname"),
85
+ "given_name_initials": obj.get("given_name_initials")
86
+ })
87
+ return _obj
88
+
89
+
@@ -0,0 +1,93 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ NCBI Datasets API
5
+
6
+ ### NCBI Datasets is a resource that lets you easily gather data from NCBI. The NCBI Datasets version 2 API is updated often to add new features, fix bugs, and enhance usability.
7
+
8
+ The version of the OpenAPI document: v2
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from __future__ import annotations
16
+ import pprint
17
+ import re # noqa: F401
18
+ import json
19
+
20
+ from pydantic import BaseModel, ConfigDict, StrictInt, StrictStr
21
+ from typing import Any, ClassVar, Dict, List, Optional
22
+ from typing import Optional, Set
23
+ from typing_extensions import Self
24
+
25
+ class Ncbiprotddv2ParsedAbstractEpub(BaseModel):
26
+ """
27
+ Ncbiprotddv2ParsedAbstractEpub
28
+ """ # noqa: E501
29
+ journal: Optional[StrictStr] = None
30
+ year: Optional[StrictInt] = None
31
+ volume: Optional[StrictInt] = None
32
+ pages: Optional[StrictStr] = None
33
+ __properties: ClassVar[List[str]] = ["journal", "year", "volume", "pages"]
34
+
35
+ model_config = ConfigDict(
36
+ populate_by_name=True,
37
+ validate_assignment=True,
38
+ protected_namespaces=(),
39
+ )
40
+
41
+
42
+ def to_str(self) -> str:
43
+ """Returns the string representation of the model using alias"""
44
+ return pprint.pformat(self.model_dump(by_alias=True))
45
+
46
+ def to_json(self) -> str:
47
+ """Returns the JSON representation of the model using alias"""
48
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
49
+ return json.dumps(self.to_dict())
50
+
51
+ @classmethod
52
+ def from_json(cls, json_str: str) -> Optional[Self]:
53
+ """Create an instance of Ncbiprotddv2ParsedAbstractEpub from a JSON string"""
54
+ return cls.from_dict(json.loads(json_str))
55
+
56
+ def to_dict(self) -> Dict[str, Any]:
57
+ """Return the dictionary representation of the model using alias.
58
+
59
+ This has the following differences from calling pydantic's
60
+ `self.model_dump(by_alias=True)`:
61
+
62
+ * `None` is only added to the output dict for nullable fields that
63
+ were set at model initialization. Other fields with value `None`
64
+ are ignored.
65
+ """
66
+ excluded_fields: Set[str] = set([
67
+ ])
68
+
69
+ _dict = self.model_dump(
70
+ by_alias=True,
71
+ exclude=excluded_fields,
72
+ exclude_none=True,
73
+ )
74
+ return _dict
75
+
76
+ @classmethod
77
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
78
+ """Create an instance of Ncbiprotddv2ParsedAbstractEpub from a dict"""
79
+ if obj is None:
80
+ return None
81
+
82
+ if not isinstance(obj, dict):
83
+ return cls.model_validate(obj)
84
+
85
+ _obj = cls.model_validate({
86
+ "journal": obj.get("journal"),
87
+ "year": obj.get("year"),
88
+ "volume": obj.get("volume"),
89
+ "pages": obj.get("pages")
90
+ })
91
+ return _obj
92
+
93
+
@@ -0,0 +1,87 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ NCBI Datasets API
5
+
6
+ ### NCBI Datasets is a resource that lets you easily gather data from NCBI. The NCBI Datasets version 2 API is updated often to add new features, fix bugs, and enhance usability.
7
+
8
+ The version of the OpenAPI document: v2
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from __future__ import annotations
16
+ import pprint
17
+ import re # noqa: F401
18
+ import json
19
+
20
+ from pydantic import BaseModel, ConfigDict, StrictStr
21
+ from typing import Any, ClassVar, Dict, List, Optional
22
+ from typing import Optional, Set
23
+ from typing_extensions import Self
24
+
25
+ class Ncbiprotddv2PubmedAbstractRequest(BaseModel):
26
+ """
27
+ Ncbiprotddv2PubmedAbstractRequest
28
+ """ # noqa: E501
29
+ pmid: Optional[StrictStr] = None
30
+ __properties: ClassVar[List[str]] = ["pmid"]
31
+
32
+ model_config = ConfigDict(
33
+ populate_by_name=True,
34
+ validate_assignment=True,
35
+ protected_namespaces=(),
36
+ )
37
+
38
+
39
+ def to_str(self) -> str:
40
+ """Returns the string representation of the model using alias"""
41
+ return pprint.pformat(self.model_dump(by_alias=True))
42
+
43
+ def to_json(self) -> str:
44
+ """Returns the JSON representation of the model using alias"""
45
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
46
+ return json.dumps(self.to_dict())
47
+
48
+ @classmethod
49
+ def from_json(cls, json_str: str) -> Optional[Self]:
50
+ """Create an instance of Ncbiprotddv2PubmedAbstractRequest from a JSON string"""
51
+ return cls.from_dict(json.loads(json_str))
52
+
53
+ def to_dict(self) -> Dict[str, Any]:
54
+ """Return the dictionary representation of the model using alias.
55
+
56
+ This has the following differences from calling pydantic's
57
+ `self.model_dump(by_alias=True)`:
58
+
59
+ * `None` is only added to the output dict for nullable fields that
60
+ were set at model initialization. Other fields with value `None`
61
+ are ignored.
62
+ """
63
+ excluded_fields: Set[str] = set([
64
+ ])
65
+
66
+ _dict = self.model_dump(
67
+ by_alias=True,
68
+ exclude=excluded_fields,
69
+ exclude_none=True,
70
+ )
71
+ return _dict
72
+
73
+ @classmethod
74
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
75
+ """Create an instance of Ncbiprotddv2PubmedAbstractRequest from a dict"""
76
+ if obj is None:
77
+ return None
78
+
79
+ if not isinstance(obj, dict):
80
+ return cls.model_validate(obj)
81
+
82
+ _obj = cls.model_validate({
83
+ "pmid": obj.get("pmid")
84
+ })
85
+ return _obj
86
+
87
+
@@ -26,6 +26,7 @@ class Ncbiprotddv2RedundancyLevel(str, Enum):
26
26
  """
27
27
  allowed enum values
28
28
  """
29
+ NOT_SPECIFIED = 'NOT_SPECIFIED'
29
30
  ALL_SEQUENCES = 'ALL_SEQUENCES'
30
31
  LOW = 'LOW'
31
32
  MEDIUM = 'MEDIUM'
@@ -30,7 +30,7 @@ class Ncbiprotddv2SimilarStructureRequest(BaseModel):
30
30
  """ # noqa: E501
31
31
  sdid: Optional[StrictStr] = None
32
32
  page_token: Optional[StrictStr] = None
33
- redundancy_level: Optional[Ncbiprotddv2RedundancyLevel] = Ncbiprotddv2RedundancyLevel.ALL_SEQUENCES
33
+ redundancy_level: Optional[Ncbiprotddv2RedundancyLevel] = Ncbiprotddv2RedundancyLevel.NOT_SPECIFIED
34
34
  sort_by: Optional[Ncbiprotddv2SortById] = Ncbiprotddv2SortById.NONE
35
35
  hits_per_page: Optional[StrictInt] = None
36
36
  __properties: ClassVar[List[str]] = ["sdid", "page_token", "redundancy_level", "sort_by", "hits_per_page"]
@@ -88,7 +88,7 @@ class Ncbiprotddv2SimilarStructureRequest(BaseModel):
88
88
  _obj = cls.model_validate({
89
89
  "sdid": obj.get("sdid"),
90
90
  "page_token": obj.get("page_token"),
91
- "redundancy_level": obj.get("redundancy_level") if obj.get("redundancy_level") is not None else Ncbiprotddv2RedundancyLevel.ALL_SEQUENCES,
91
+ "redundancy_level": obj.get("redundancy_level") if obj.get("redundancy_level") is not None else Ncbiprotddv2RedundancyLevel.NOT_SPECIFIED,
92
92
  "sort_by": obj.get("sort_by") if obj.get("sort_by") is not None else Ncbiprotddv2SortById.NONE,
93
93
  "hits_per_page": obj.get("hits_per_page")
94
94
  })
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ncbi-datasets-pyclient
3
- Version: 18.14.0
3
+ Version: 18.16.0
4
4
  Summary: NCBI Datasets API
5
5
  Home-page:
6
6
  Author: NCBI
@@ -25,8 +25,8 @@ The NCBI Datasets version 2 API is updated often to add new features, fix bugs,
25
25
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
26
26
 
27
27
  - API version: v2
28
- - Package version: v18.14.0
29
- - Generator version: 7.18.0
28
+ - Package version: v18.16.0
29
+ - Generator version: 7.19.0
30
30
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
31
31
 
32
32
  ## Requirements.
@@ -227,7 +227,18 @@ Class | Method | HTTP request | Description
227
227
 
228
228
  ## Documentation For Models
229
229
 
230
+ - [Ncbigsupgcolv2AssemblyAccessionsReply](docs/Ncbigsupgcolv2AssemblyAccessionsReply.md)
231
+ - [Ncbigsupgcolv2AssemblyCheckMHistogramRequest](docs/Ncbigsupgcolv2AssemblyCheckMHistogramRequest.md)
232
+ - [Ncbigsupgcolv2AssemblyDataReportDraftRequest](docs/Ncbigsupgcolv2AssemblyDataReportDraftRequest.md)
233
+ - [Ncbigsupgcolv2AssemblyDataReportsRequest](docs/Ncbigsupgcolv2AssemblyDataReportsRequest.md)
234
+ - [Ncbigsupgcolv2ChromosomeLocation](docs/Ncbigsupgcolv2ChromosomeLocation.md)
235
+ - [Ncbigsupgcolv2ChromosomeType](docs/Ncbigsupgcolv2ChromosomeType.md)
236
+ - [Ncbigsupgcolv2SequenceAccessionRequest](docs/Ncbigsupgcolv2SequenceAccessionRequest.md)
230
237
  - [Ncbiprotddv2ChainFootprint](docs/Ncbiprotddv2ChainFootprint.md)
238
+ - [Ncbiprotddv2ParsedAbstract](docs/Ncbiprotddv2ParsedAbstract.md)
239
+ - [Ncbiprotddv2ParsedAbstractAuthor](docs/Ncbiprotddv2ParsedAbstractAuthor.md)
240
+ - [Ncbiprotddv2ParsedAbstractEpub](docs/Ncbiprotddv2ParsedAbstractEpub.md)
241
+ - [Ncbiprotddv2PubmedAbstractRequest](docs/Ncbiprotddv2PubmedAbstractRequest.md)
231
242
  - [Ncbiprotddv2QueryStructureDefinition](docs/Ncbiprotddv2QueryStructureDefinition.md)
232
243
  - [Ncbiprotddv2RedundancyLevel](docs/Ncbiprotddv2RedundancyLevel.md)
233
244
  - [Ncbiprotddv2SdidRequest](docs/Ncbiprotddv2SdidRequest.md)
@@ -1,9 +1,9 @@
1
1
  ncbi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  ncbi/datasets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- ncbi/datasets/openapi/__init__.py,sha256=M-TECgwgDztgK2I51HX90ZFH5f-YPxns-HoL2ZtV1KQ,48153
4
- ncbi/datasets/openapi/api_client.py,sha256=TgI9ofKkCpGh6JhkgD0eEDc0KoqLg3vTsEc7fBeYV-k,27914
3
+ ncbi/datasets/openapi/__init__.py,sha256=Mk-PsvR8LqQmve3jMMCQWtz-dVT_zzwIIDdWFqv-HHc,50329
4
+ ncbi/datasets/openapi/api_client.py,sha256=lpW-JVIvLU_n1Dz15PkaF06YojCJq55U7WDlOAVOij8,27914
5
5
  ncbi/datasets/openapi/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
6
- ncbi/datasets/openapi/configuration.py,sha256=Y2oUyxFeIocARGWgMcGM7Yz45aEN_67kPMOEyPHYh9U,19631
6
+ ncbi/datasets/openapi/configuration.py,sha256=JvrWml71inPlC5aeD4B2LwvTyupoAzHNFOUIf6BdAWE,19631
7
7
  ncbi/datasets/openapi/exceptions.py,sha256=xadY9SBMaA6_xxeVXrQxSZ0HAZzTsGyLV2K0FvEcyyM,6618
8
8
  ncbi/datasets/openapi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  ncbi/datasets/openapi/rest.py,sha256=Ctofd5lL4uvuj0TGuAZJCuow61p24oeTTwncy8HlnuU,9742
@@ -11,19 +11,30 @@ ncbi/datasets/openapi/api/__init__.py,sha256=2VCn5BqhrzOpHK-aKjTkyqdMh8X0NQdS_cr
11
11
  ncbi/datasets/openapi/api/bio_sample_api.py,sha256=nvtfxO09Nb7ewWRsytXl0d1isnc4Mc8h7_AKNYVEvdM,12032
12
12
  ncbi/datasets/openapi/api/gene_api.py,sha256=N3zPvT7mDP3oTOnexBop50xsDotuEEd5UjRYRF0gkkQ,542577
13
13
  ncbi/datasets/openapi/api/genome_api.py,sha256=Dmrp1zfeDn3-4j8CFthi-UQSjstKEEiKeLcD56kxh8g,616583
14
- ncbi/datasets/openapi/api/organelle_api.py,sha256=GvVbCx4K42UMr3-4a8X7fkgLxIVyF-oZS-f8xBCF97I,88266
14
+ ncbi/datasets/openapi/api/organelle_api.py,sha256=pByg846dvlCrCgTAjn5BE8LJ4ZdUylLNnRMhe-nkzMQ,85182
15
15
  ncbi/datasets/openapi/api/prokaryote_api.py,sha256=dtb8wb05CoP5May7PgQlJjZEQVhdKFFWIDp3llsOvKE,29531
16
16
  ncbi/datasets/openapi/api/taxonomy_api.py,sha256=KoTvpjVcCaudZ54iyNyla6b9iAYTfRIag8eYeTQ1otw,265686
17
17
  ncbi/datasets/openapi/api/version_api.py,sha256=-u0LbcBTWXEdvjFMVC7B58W-7dp16GKHeB8kqK6FQ7Q,10525
18
- ncbi/datasets/openapi/api/virus_api.py,sha256=MMqvTIWFORyZKP_ktcR_8yr38GCIHZwJGJswKsADw4c,389817
19
- ncbi/datasets/openapi/models/__init__.py,sha256=6S9hs-WnoOcl1B8L9Pnx7rNGAOhmG0zvBabl44OVocs,28243
18
+ ncbi/datasets/openapi/api/virus_api.py,sha256=aC_wIFVF5MvkWiJv02qrP_421mmwMdM23GQprmVYqPk,380049
19
+ ncbi/datasets/openapi/models/__init__.py,sha256=YLQgH5oE0T4aZRi05cZvEHdnKJAJj8aw5YQ20h-SXsw,29519
20
+ ncbi/datasets/openapi/models/ncbigsupgcolv2_assembly_accessions_reply.py,sha256=AWUYTpLsvzXhoSSwP5tPasPLXaJBBESZDxXW6zht6OA,2697
21
+ ncbi/datasets/openapi/models/ncbigsupgcolv2_assembly_check_m_histogram_request.py,sha256=FayH7_ZcZQUha4Ur3IJGWms9ssMIj7bqNhQgo7NVX8s,2707
22
+ ncbi/datasets/openapi/models/ncbigsupgcolv2_assembly_data_report_draft_request.py,sha256=6hMfNGZTpCfUG1J2XdW_hnlwwwbE0jo5Xja8y_2sYjY,2881
23
+ ncbi/datasets/openapi/models/ncbigsupgcolv2_assembly_data_reports_request.py,sha256=E_eG4jq8hHYPzDRFCLQkOdiVvj5YzARrmTJhW6y2qjg,2713
24
+ ncbi/datasets/openapi/models/ncbigsupgcolv2_chromosome_location.py,sha256=tYPeoxTzaWVyM6o1g9tiDjuIdxy17t_F1HuNzJQoomQ,1475
25
+ ncbi/datasets/openapi/models/ncbigsupgcolv2_chromosome_type.py,sha256=milNKqMiLuWC1sv4XppYbY_hZSK0NiHpDGNbIwAODkE,1039
26
+ ncbi/datasets/openapi/models/ncbigsupgcolv2_sequence_accession_request.py,sha256=6_NR49lU499HWOi-KunpLohSK-ao8nrHgrIPHozi7VI,2695
20
27
  ncbi/datasets/openapi/models/ncbiprotddv2_chain_footprint.py,sha256=8_GuyO6jpuEenXMtfIbbzy2SxqcdsX-BWgNiCzUUeDE,2985
28
+ ncbi/datasets/openapi/models/ncbiprotddv2_parsed_abstract.py,sha256=TZInU3ClwzQ8YdfsE0hhh5GBs-JwJCUlbXkQvxsmxJY,3939
29
+ ncbi/datasets/openapi/models/ncbiprotddv2_parsed_abstract_author.py,sha256=IJlLBB6rAUbzN6XIHkqPNrZ0gaAtvD6AcyKfK-unilY,2805
30
+ ncbi/datasets/openapi/models/ncbiprotddv2_parsed_abstract_epub.py,sha256=t0GBYTTS9JrGgQNpZjCfqhdp1uk5KSrhktCqxMvnElQ,2924
31
+ ncbi/datasets/openapi/models/ncbiprotddv2_pubmed_abstract_request.py,sha256=rhSfqMPjIvRL6ukxmad9R63GxqrAjLzWZ4EyvNjdHkY,2655
21
32
  ncbi/datasets/openapi/models/ncbiprotddv2_query_structure_definition.py,sha256=83S9XFg_tQXlGPS6N4XG-T_JBFU58HXfxVykZmllRb0,3188
22
- ncbi/datasets/openapi/models/ncbiprotddv2_redundancy_level.py,sha256=q1VcHJ6V1eplq7QmoPpt5IPtvHHYecStBDhwAEVF0ms,922
33
+ ncbi/datasets/openapi/models/ncbiprotddv2_redundancy_level.py,sha256=RrPUzexOEwd4dFiGxG5NrKC2BHKIwP9uZJ_r0fK1IuQ,958
23
34
  ncbi/datasets/openapi/models/ncbiprotddv2_sdid_request.py,sha256=5Hgvai33V7Gr0INCyvbDUJ2HqmSNkKOhHkvZRtEC_yI,2615
24
35
  ncbi/datasets/openapi/models/ncbiprotddv2_similar_structure_report.py,sha256=gcEXKL-sc4bZ8Mgi_sNR7eZ6oH-7NGnNbr4DK47AC5E,4784
25
36
  ncbi/datasets/openapi/models/ncbiprotddv2_similar_structure_report_page.py,sha256=bAsQba0OOq9c11_LQpD3ALz0TyFNzZv5J0Ac2iK-TPM,3647
26
- ncbi/datasets/openapi/models/ncbiprotddv2_similar_structure_request.py,sha256=iuI-LHwdJR2PCFFEChFsHbVmcyDtghHHQTuDa8v39mg,3549
37
+ ncbi/datasets/openapi/models/ncbiprotddv2_similar_structure_request.py,sha256=t8Hf97NjHpqAfc5DUy5mAozS0Yh8Fno0k5whKzIWQVY,3549
27
38
  ncbi/datasets/openapi/models/ncbiprotddv2_sort_by_id.py,sha256=2Auuv6Wkr8-OsAenP87Gn7tKweF7IBmPHSaqCHdNUQU,1279
28
39
  ncbi/datasets/openapi/models/ncbiprotddv2_structure_data_report.py,sha256=-lEwoIM-PMlStDv7pOYGEoZ0XA698JVi2ro4Rg0Zzt4,6685
29
40
  ncbi/datasets/openapi/models/ncbiprotddv2_structure_data_report_biounit_chain.py,sha256=FsbGDbeBRQpDejl--Rv3IXZJsKm_rPawsQEHu8UGXVQ,3270
@@ -298,8 +309,8 @@ ncbi/datasets/openapi/models/v2reports_warning.py,sha256=ra1UBVPtnrtaV9oLkmfizs4
298
309
  ncbi/datasets/openapi/models/v2reports_warning_gene_warning_code.py,sha256=6RDXn2v5GymCsGQMtoFVyp_x6qN_II3GKZRR5zsIEl8,1378
299
310
  ncbi/datasets/openapi/models/v2reports_warning_replaced_id.py,sha256=MQh3OXNaIEtRSYq0sp-V3FqfD8qHra0dp-va3xsHG4I,2745
300
311
  ncbi/datasets/openapi/models/v2reports_wgs_info.py,sha256=LDWjSZgSVmdUg894kdeBsOCIHWmQUKrA90_4ktnmM2o,2903
301
- ncbi_datasets_pyclient-18.14.0.dist-info/licenses/LICENSE,sha256=4hywPAiqr3WLJWIV6zs2wK9aCcBUQVRwLJWPi2AegMk,1501
302
- ncbi_datasets_pyclient-18.14.0.dist-info/METADATA,sha256=LyBJa_ZcFQDEgR9TZrlAiA2dfd1PSoYwUh4uISwVwg0,43941
303
- ncbi_datasets_pyclient-18.14.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
304
- ncbi_datasets_pyclient-18.14.0.dist-info/top_level.txt,sha256=nraz3S7SoUNG6x6jm3du082BqAAEJWm-Jm5TmKNo320,5
305
- ncbi_datasets_pyclient-18.14.0.dist-info/RECORD,,
312
+ ncbi_datasets_pyclient-18.16.0.dist-info/licenses/LICENSE,sha256=4hywPAiqr3WLJWIV6zs2wK9aCcBUQVRwLJWPi2AegMk,1501
313
+ ncbi_datasets_pyclient-18.16.0.dist-info/METADATA,sha256=AP2LaYOJieATr3Wr82SGkEeVup-mANtfzo1PZ5y4SUU,44885
314
+ ncbi_datasets_pyclient-18.16.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
315
+ ncbi_datasets_pyclient-18.16.0.dist-info/top_level.txt,sha256=nraz3S7SoUNG6x6jm3du082BqAAEJWm-Jm5TmKNo320,5
316
+ ncbi_datasets_pyclient-18.16.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5