wds-client 0.6.0__py3-none-any.whl → 0.8.0__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. wds_client/__init__.py +8 -10
  2. wds_client/api/__init__.py +1 -2
  3. wds_client/api/capabilities_api.py +237 -102
  4. wds_client/api/cloning_api.py +782 -329
  5. wds_client/api/general_wds_information_api.py +463 -191
  6. wds_client/api/import_api.py +288 -127
  7. wds_client/api/instances_api.py +783 -333
  8. wds_client/api/job_api.py +518 -215
  9. wds_client/api/records_api.py +2512 -1089
  10. wds_client/api/schema_api.py +1450 -626
  11. wds_client/api_client.py +414 -310
  12. wds_client/api_response.py +21 -0
  13. wds_client/configuration.py +110 -53
  14. wds_client/exceptions.py +99 -20
  15. wds_client/models/__init__.py +4 -8
  16. wds_client/models/app.py +68 -125
  17. wds_client/models/attribute_data_type.py +31 -94
  18. wds_client/models/attribute_schema.py +71 -157
  19. wds_client/models/attribute_schema_update.py +69 -127
  20. wds_client/models/backup_job.py +96 -298
  21. wds_client/models/backup_response.py +70 -157
  22. wds_client/models/backup_restore_request.py +68 -129
  23. wds_client/models/batch_operation.py +83 -137
  24. wds_client/models/batch_record_request.py +70 -160
  25. wds_client/models/batch_response.py +68 -127
  26. wds_client/models/build.py +79 -207
  27. wds_client/models/capabilities.py +83 -103
  28. wds_client/models/clone_job.py +96 -298
  29. wds_client/models/clone_response.py +68 -129
  30. wds_client/models/commit.py +69 -125
  31. wds_client/models/error_response.py +78 -222
  32. wds_client/models/generic_job.py +102 -334
  33. wds_client/models/git.py +76 -129
  34. wds_client/models/import_request.py +77 -165
  35. wds_client/models/job.py +87 -243
  36. wds_client/models/job_v1.py +97 -277
  37. wds_client/models/record_query_response.py +86 -162
  38. wds_client/models/record_request.py +60 -96
  39. wds_client/models/record_response.py +70 -160
  40. wds_client/models/record_type_schema.py +84 -191
  41. wds_client/models/search_filter.py +60 -95
  42. wds_client/models/search_request.py +84 -220
  43. wds_client/models/search_sort_direction.py +17 -80
  44. wds_client/models/status_response.py +68 -125
  45. wds_client/models/tsv_upload_response.py +68 -127
  46. wds_client/models/version_response.py +86 -155
  47. wds_client/py.typed +0 -0
  48. wds_client/rest.py +136 -170
  49. wds_client-0.8.0.dist-info/METADATA +17 -0
  50. wds_client-0.8.0.dist-info/RECORD +52 -0
  51. wds_client/models/backup_job_all_of.py +0 -148
  52. wds_client/models/clone_job_all_of.py +0 -148
  53. wds_client/models/generic_job_all_of.py +0 -150
  54. wds_client/models/inline_object.py +0 -123
  55. wds_client-0.6.0.dist-info/METADATA +0 -16
  56. wds_client-0.6.0.dist-info/RECORD +0 -54
  57. {wds_client-0.6.0.dist-info → wds_client-0.8.0.dist-info}/WHEEL +0 -0
  58. {wds_client-0.6.0.dist-info → wds_client-0.8.0.dist-info}/top_level.txt +0 -0
@@ -1,148 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- Workspace Data Service
5
-
6
- This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
7
-
8
- The version of the OpenAPI document: v0.2
9
- Generated by: https://openapi-generator.tech
10
- """
11
-
12
-
13
- import pprint
14
- import re # noqa: F401
15
-
16
- import six
17
-
18
- from wds_client.configuration import Configuration
19
-
20
-
21
- class CloneJobAllOf(object):
22
- """NOTE: This class is auto generated by OpenAPI Generator.
23
- Ref: https://openapi-generator.tech
24
-
25
- Do not edit the class manually.
26
- """
27
-
28
- """
29
- Attributes:
30
- openapi_types (dict): The key is attribute name
31
- and the value is attribute type.
32
- attribute_map (dict): The key is attribute name
33
- and the value is json key in definition.
34
- """
35
- openapi_types = {
36
- 'input': 'object',
37
- 'result': 'CloneResponse'
38
- }
39
-
40
- attribute_map = {
41
- 'input': 'input',
42
- 'result': 'result'
43
- }
44
-
45
- def __init__(self, input=None, result=None, local_vars_configuration=None): # noqa: E501
46
- """CloneJobAllOf - a model defined in OpenAPI""" # noqa: E501
47
- if local_vars_configuration is None:
48
- local_vars_configuration = Configuration()
49
- self.local_vars_configuration = local_vars_configuration
50
-
51
- self._input = None
52
- self._result = None
53
- self.discriminator = None
54
-
55
- if input is not None:
56
- self.input = input
57
- if result is not None:
58
- self.result = result
59
-
60
- @property
61
- def input(self):
62
- """Gets the input of this CloneJobAllOf. # noqa: E501
63
-
64
- Input arguments; expected to be empty. # noqa: E501
65
-
66
- :return: The input of this CloneJobAllOf. # noqa: E501
67
- :rtype: object
68
- """
69
- return self._input
70
-
71
- @input.setter
72
- def input(self, input):
73
- """Sets the input of this CloneJobAllOf.
74
-
75
- Input arguments; expected to be empty. # noqa: E501
76
-
77
- :param input: The input of this CloneJobAllOf. # noqa: E501
78
- :type: object
79
- """
80
-
81
- self._input = input
82
-
83
- @property
84
- def result(self):
85
- """Gets the result of this CloneJobAllOf. # noqa: E501
86
-
87
-
88
- :return: The result of this CloneJobAllOf. # noqa: E501
89
- :rtype: CloneResponse
90
- """
91
- return self._result
92
-
93
- @result.setter
94
- def result(self, result):
95
- """Sets the result of this CloneJobAllOf.
96
-
97
-
98
- :param result: The result of this CloneJobAllOf. # noqa: E501
99
- :type: CloneResponse
100
- """
101
-
102
- self._result = result
103
-
104
- def to_dict(self):
105
- """Returns the model properties as a dict"""
106
- result = {}
107
-
108
- for attr, _ in six.iteritems(self.openapi_types):
109
- value = getattr(self, attr)
110
- if isinstance(value, list):
111
- result[attr] = list(map(
112
- lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
113
- value
114
- ))
115
- elif hasattr(value, "to_dict"):
116
- result[attr] = value.to_dict()
117
- elif isinstance(value, dict):
118
- result[attr] = dict(map(
119
- lambda item: (item[0], item[1].to_dict())
120
- if hasattr(item[1], "to_dict") else item,
121
- value.items()
122
- ))
123
- else:
124
- result[attr] = value
125
-
126
- return result
127
-
128
- def to_str(self):
129
- """Returns the string representation of the model"""
130
- return pprint.pformat(self.to_dict())
131
-
132
- def __repr__(self):
133
- """For `print` and `pprint`"""
134
- return self.to_str()
135
-
136
- def __eq__(self, other):
137
- """Returns true if both objects are equal"""
138
- if not isinstance(other, CloneJobAllOf):
139
- return False
140
-
141
- return self.to_dict() == other.to_dict()
142
-
143
- def __ne__(self, other):
144
- """Returns true if both objects are not equal"""
145
- if not isinstance(other, CloneJobAllOf):
146
- return True
147
-
148
- return self.to_dict() != other.to_dict()
@@ -1,150 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- Workspace Data Service
5
-
6
- This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
7
-
8
- The version of the OpenAPI document: v0.2
9
- Generated by: https://openapi-generator.tech
10
- """
11
-
12
-
13
- import pprint
14
- import re # noqa: F401
15
-
16
- import six
17
-
18
- from wds_client.configuration import Configuration
19
-
20
-
21
- class GenericJobAllOf(object):
22
- """NOTE: This class is auto generated by OpenAPI Generator.
23
- Ref: https://openapi-generator.tech
24
-
25
- Do not edit the class manually.
26
- """
27
-
28
- """
29
- Attributes:
30
- openapi_types (dict): The key is attribute name
31
- and the value is attribute type.
32
- attribute_map (dict): The key is attribute name
33
- and the value is json key in definition.
34
- """
35
- openapi_types = {
36
- 'input': 'object',
37
- 'result': 'object'
38
- }
39
-
40
- attribute_map = {
41
- 'input': 'input',
42
- 'result': 'result'
43
- }
44
-
45
- def __init__(self, input=None, result=None, local_vars_configuration=None): # noqa: E501
46
- """GenericJobAllOf - a model defined in OpenAPI""" # noqa: E501
47
- if local_vars_configuration is None:
48
- local_vars_configuration = Configuration()
49
- self.local_vars_configuration = local_vars_configuration
50
-
51
- self._input = None
52
- self._result = None
53
- self.discriminator = None
54
-
55
- if input is not None:
56
- self.input = input
57
- if result is not None:
58
- self.result = result
59
-
60
- @property
61
- def input(self):
62
- """Gets the input of this GenericJobAllOf. # noqa: E501
63
-
64
- Input arguments for this job # noqa: E501
65
-
66
- :return: The input of this GenericJobAllOf. # noqa: E501
67
- :rtype: object
68
- """
69
- return self._input
70
-
71
- @input.setter
72
- def input(self, input):
73
- """Sets the input of this GenericJobAllOf.
74
-
75
- Input arguments for this job # noqa: E501
76
-
77
- :param input: The input of this GenericJobAllOf. # noqa: E501
78
- :type: object
79
- """
80
-
81
- self._input = input
82
-
83
- @property
84
- def result(self):
85
- """Gets the result of this GenericJobAllOf. # noqa: E501
86
-
87
- Result of this job # noqa: E501
88
-
89
- :return: The result of this GenericJobAllOf. # noqa: E501
90
- :rtype: object
91
- """
92
- return self._result
93
-
94
- @result.setter
95
- def result(self, result):
96
- """Sets the result of this GenericJobAllOf.
97
-
98
- Result of this job # noqa: E501
99
-
100
- :param result: The result of this GenericJobAllOf. # noqa: E501
101
- :type: object
102
- """
103
-
104
- self._result = result
105
-
106
- def to_dict(self):
107
- """Returns the model properties as a dict"""
108
- result = {}
109
-
110
- for attr, _ in six.iteritems(self.openapi_types):
111
- value = getattr(self, attr)
112
- if isinstance(value, list):
113
- result[attr] = list(map(
114
- lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
115
- value
116
- ))
117
- elif hasattr(value, "to_dict"):
118
- result[attr] = value.to_dict()
119
- elif isinstance(value, dict):
120
- result[attr] = dict(map(
121
- lambda item: (item[0], item[1].to_dict())
122
- if hasattr(item[1], "to_dict") else item,
123
- value.items()
124
- ))
125
- else:
126
- result[attr] = value
127
-
128
- return result
129
-
130
- def to_str(self):
131
- """Returns the string representation of the model"""
132
- return pprint.pformat(self.to_dict())
133
-
134
- def __repr__(self):
135
- """For `print` and `pprint`"""
136
- return self.to_str()
137
-
138
- def __eq__(self, other):
139
- """Returns true if both objects are equal"""
140
- if not isinstance(other, GenericJobAllOf):
141
- return False
142
-
143
- return self.to_dict() == other.to_dict()
144
-
145
- def __ne__(self, other):
146
- """Returns true if both objects are not equal"""
147
- if not isinstance(other, GenericJobAllOf):
148
- return True
149
-
150
- return self.to_dict() != other.to_dict()
@@ -1,123 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- Workspace Data Service
5
-
6
- This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
7
-
8
- The version of the OpenAPI document: v0.2
9
- Generated by: https://openapi-generator.tech
10
- """
11
-
12
-
13
- import pprint
14
- import re # noqa: F401
15
-
16
- import six
17
-
18
- from wds_client.configuration import Configuration
19
-
20
-
21
- class InlineObject(object):
22
- """NOTE: This class is auto generated by OpenAPI Generator.
23
- Ref: https://openapi-generator.tech
24
-
25
- Do not edit the class manually.
26
- """
27
-
28
- """
29
- Attributes:
30
- openapi_types (dict): The key is attribute name
31
- and the value is attribute type.
32
- attribute_map (dict): The key is attribute name
33
- and the value is json key in definition.
34
- """
35
- openapi_types = {
36
- 'records': 'file'
37
- }
38
-
39
- attribute_map = {
40
- 'records': 'records'
41
- }
42
-
43
- def __init__(self, records=None, local_vars_configuration=None): # noqa: E501
44
- """InlineObject - a model defined in OpenAPI""" # noqa: E501
45
- if local_vars_configuration is None:
46
- local_vars_configuration = Configuration()
47
- self.local_vars_configuration = local_vars_configuration
48
-
49
- self._records = None
50
- self.discriminator = None
51
-
52
- self.records = records
53
-
54
- @property
55
- def records(self):
56
- """Gets the records of this InlineObject. # noqa: E501
57
-
58
- A valid TSV import file # noqa: E501
59
-
60
- :return: The records of this InlineObject. # noqa: E501
61
- :rtype: file
62
- """
63
- return self._records
64
-
65
- @records.setter
66
- def records(self, records):
67
- """Sets the records of this InlineObject.
68
-
69
- A valid TSV import file # noqa: E501
70
-
71
- :param records: The records of this InlineObject. # noqa: E501
72
- :type: file
73
- """
74
- if self.local_vars_configuration.client_side_validation and records is None: # noqa: E501
75
- raise ValueError("Invalid value for `records`, must not be `None`") # noqa: E501
76
-
77
- self._records = records
78
-
79
- def to_dict(self):
80
- """Returns the model properties as a dict"""
81
- result = {}
82
-
83
- for attr, _ in six.iteritems(self.openapi_types):
84
- value = getattr(self, attr)
85
- if isinstance(value, list):
86
- result[attr] = list(map(
87
- lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
88
- value
89
- ))
90
- elif hasattr(value, "to_dict"):
91
- result[attr] = value.to_dict()
92
- elif isinstance(value, dict):
93
- result[attr] = dict(map(
94
- lambda item: (item[0], item[1].to_dict())
95
- if hasattr(item[1], "to_dict") else item,
96
- value.items()
97
- ))
98
- else:
99
- result[attr] = value
100
-
101
- return result
102
-
103
- def to_str(self):
104
- """Returns the string representation of the model"""
105
- return pprint.pformat(self.to_dict())
106
-
107
- def __repr__(self):
108
- """For `print` and `pprint`"""
109
- return self.to_str()
110
-
111
- def __eq__(self, other):
112
- """Returns true if both objects are equal"""
113
- if not isinstance(other, InlineObject):
114
- return False
115
-
116
- return self.to_dict() == other.to_dict()
117
-
118
- def __ne__(self, other):
119
- """Returns true if both objects are not equal"""
120
- if not isinstance(other, InlineObject):
121
- return True
122
-
123
- return self.to_dict() != other.to_dict()
@@ -1,16 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: wds-client
3
- Version: 0.6.0
4
- Summary: Workspace Data Service
5
- Home-page:
6
- Author: OpenAPI Generator community
7
- Author-email: team@openapitools.org
8
- License: BSD
9
- Keywords: OpenAPI,OpenAPI-Generator,Workspace Data Service
10
- Requires-Dist: urllib3 >=1.15
11
- Requires-Dist: six >=1.10
12
- Requires-Dist: certifi
13
- Requires-Dist: python-dateutil
14
-
15
- This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
16
-
@@ -1,54 +0,0 @@
1
- wds_client/__init__.py,sha256=BiUDTGN19bUZ1LFZV8bpYAP7c7qCKwajA9pbmb0-h-g,3234
2
- wds_client/api_client.py,sha256=TxMfbL-lYIpXinjobhBHmDD7FlSESTnV3ZZpbOLYou0,26209
3
- wds_client/configuration.py,sha256=eWLFy6IOqUPtfHAb1JD_NGDG2U8VbwC9QvzB5eJ2f6g,12786
4
- wds_client/exceptions.py,sha256=0mEseFMbvxS5JfgkbPg14sxBI7bW0Gt0Ftxs96_LCyg,3781
5
- wds_client/rest.py,sha256=v-8FIxQfUQ7bkeKfe9qsi9en8uQa5Zf5uSqhrui_cRw,12309
6
- wds_client/api/__init__.py,sha256=T7qJbog9E_rDanluvSZAqM71AaSKcg2AUsmzEtz_MOg,519
7
- wds_client/api/capabilities_api.py,sha256=kBLk_PWpfBLWWsucwM6vqBYME9yg8CyclxHZnMlBVXE,5058
8
- wds_client/api/cloning_api.py,sha256=8PWHH2TZRGwqsUSl8sRyRVczZxM8ET4copYahE0J-44,17088
9
- wds_client/api/general_wds_information_api.py,sha256=NKNVnkKlOryGkxdVklYpBUh2-JlmwmbzgHQS0bD2bzA,9761
10
- wds_client/api/import_api.py,sha256=-HgIPwu0hzOv8nilB7lArJyAezLxjrIyfM35r3TUR0g,6893
11
- wds_client/api/instances_api.py,sha256=EtBqCzB6HETQ5GDh7_LHNeoPR4vqR4ScP-uyNDAxmUI,17329
12
- wds_client/api/job_api.py,sha256=yR0rFpBKf5W1dqwzeKMEGjOfP9JrRQ8HM4gxhzKWskM,11209
13
- wds_client/api/records_api.py,sha256=kH_DklhEdBFbyCAOBfsy82J_kD7t-dfhJDTeI9PmeZ8,61562
14
- wds_client/api/schema_api.py,sha256=p2cgKPW7qAYNir0S7-AY67hE0xejkubFSOTBv6Pq-aQ,34758
15
- wds_client/models/__init__.py,sha256=vijZYsa1aEcObIVEi14vp_bdSdLkv_prkuG7YpKy90M,2394
16
- wds_client/models/app.py,sha256=3sIUtT5T8VXBcNvD07QVOQHOxD_8dp0QSMeWcvCflCQ,3917
17
- wds_client/models/attribute_data_type.py,sha256=naNblQZsE5NirXqB9-EPRTRzgHPSu_b3pNrqOzEW7XY,3416
18
- wds_client/models/attribute_schema.py,sha256=2wMwqiaETuJb9sk8Wa0Yy_PPijQH348bveD8w3Dsouk,5323
19
- wds_client/models/attribute_schema_update.py,sha256=IOdys5AL9q8WDpq1_kke7WtGpi_OibXZMcOJykIIZXE,4155
20
- wds_client/models/backup_job.py,sha256=CiyRVsTKxy_VStE6OK6sad8j84l1pPH0-5-9z85j7RA,8882
21
- wds_client/models/backup_job_all_of.py,sha256=z71LL36gbNscrKOdgSzb9Exr1Zx706ipt-fPMKbFFrc,4073
22
- wds_client/models/backup_response.py,sha256=65wENVoDjFOmWb-YYQV-UDjeaYa5bNIBWNDS2y-0vjo,5046
23
- wds_client/models/backup_restore_request.py,sha256=RDK4dxg6htOcQ6VyMcDST92m6M0RSG3GLuYjtSJBt58,4859
24
- wds_client/models/batch_operation.py,sha256=VSfr1mQL4OGr--kuM4shxhh30pBgMSxl1Fx1k78iZKQ,4707
25
- wds_client/models/batch_record_request.py,sha256=QUIdwLGzc5kD-Svw8CLwWmYiGPmcCR66chIYJicSEKY,5522
26
- wds_client/models/batch_response.py,sha256=-G4BU3yzk_CaRioaTWrcK6xRFz_u3Brq-9eh-_lqEgU,4459
27
- wds_client/models/build.py,sha256=yClVEvdqOjubMv2HO0zNLZl7M8fgqmqiUhbA9AzXSsk,5563
28
- wds_client/models/capabilities.py,sha256=B_qPM7vfVz7ZAZBtdp8HHNr42TLodtUmWlb8BJrMAFs,3411
29
- wds_client/models/clone_job.py,sha256=QXRWd8Rh8YJOtd-kwSWRatI8TVpPDFOJxbYFhf4r-9Y,8843
30
- wds_client/models/clone_job_all_of.py,sha256=qCdV6YEmTXmjhzOU_5badSYgeBHl6TCkPAaIcldzHLY,4058
31
- wds_client/models/clone_response.py,sha256=eKoFwQwL0ewxXZffLI-h9W2ICYxP16O7K9ndDZEJmDs,4463
32
- wds_client/models/commit.py,sha256=TAQ1AUNHHYuiPBRNlUhCbbVqtAbMtqhXaz3_MsW33NU,3728
33
- wds_client/models/error_response.py,sha256=85fAunlWeuyumacVFr7erC7HSSMXblv1AE5fuB0Bx_o,6947
34
- wds_client/models/generic_job.py,sha256=y1xyCnWyzLTF6n-5KvwpZLDmEX8Ij_ofOJ4izA3XmoU,10385
35
- wds_client/models/generic_job_all_of.py,sha256=STC-Cz0AA0EN0yGCaxJQaHTjDTZ9LW47u8V50olg-58,4123
36
- wds_client/models/git.py,sha256=HZGzLR8wkptfeSqObMal6WpTSk7Rn1x_op2uPo0HBfQ,3806
37
- wds_client/models/import_request.py,sha256=OA8L7yESOEUtmjYAn5Kz4x8ufkGcsjeNH88ruPvT2Zg,5569
38
- wds_client/models/inline_object.py,sha256=eDjKw_6DEYw1ViR8ftAhjKVNPqwhx6_-u7-HB4ohWnU,3560
39
- wds_client/models/job.py,sha256=bDCCQxuUJZpfU97peuZ4OCXwUnhEh8j_kRd1FpsGSio,7360
40
- wds_client/models/job_v1.py,sha256=sSZCwKWBUWgq98sTf8LqdzzC0DnMJ5nZb5VG0XAkz8k,8825
41
- wds_client/models/record_query_response.py,sha256=1Z697LJ_zCbgzg2l1YRikJRirWV1-B1LiHoWhwOfIU4,5723
42
- wds_client/models/record_request.py,sha256=ni69oyvVQWMcC62eMzPDSB06TNCiqeNpSmwottDm1C0,3882
43
- wds_client/models/record_response.py,sha256=c29gawF9y0ePjZ9aRiR66u-x_GGXjK6ik_N30t1gtVQ,5458
44
- wds_client/models/record_type_schema.py,sha256=cPbDQH0kvz91z1IZ_s3Zbrpqx_hrWYfG96bhjOrtaM0,6722
45
- wds_client/models/search_filter.py,sha256=Y4uD_N2qoXBke8nKxszr2ZfcPXGOqZKTGUxTMHAwEig,3370
46
- wds_client/models/search_request.py,sha256=ig__yYlNP1m10ODvCDC700zeAHYMpUWKU1u5kf92EhU,6866
47
- wds_client/models/search_sort_direction.py,sha256=qR4x09JH9HLuTwvBL8OJrJrw5DwI_KwcTU8I-vjNYO8,2824
48
- wds_client/models/status_response.py,sha256=F084od3-J9gJPcJsDx2AKSkAHF8gdY8goo0pdtFnMbw,4018
49
- wds_client/models/tsv_upload_response.py,sha256=JdEs9hwyH264eLhQYj9d7p9B4cCP5-wkpgMg6qk8GNI,4507
50
- wds_client/models/version_response.py,sha256=rHOAaXFPx0CjAe3hJ_2TzYUrhaTY5yfxA3rlf5XcytM,4436
51
- wds_client-0.6.0.dist-info/METADATA,sha256=mKkLVgHClpa6XAFA9Gz6UwEKKNo2uHQQ_K9lcBfogu4,466
52
- wds_client-0.6.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
53
- wds_client-0.6.0.dist-info/top_level.txt,sha256=hU2h533r5-3FzApV8ps3zXmQJKy74SPT3sYR8-uZhp8,11
54
- wds_client-0.6.0.dist-info/RECORD,,