oceanprotocol-job-details 0.1.0__tar.gz → 0.1.1__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.
- {oceanprotocol_job_details-0.1.0 → oceanprotocol_job_details-0.1.1}/PKG-INFO +1 -1
- {oceanprotocol_job_details-0.1.0 → oceanprotocol_job_details-0.1.1}/oceanprotocol_job_details/ocean.py +0 -21
- {oceanprotocol_job_details-0.1.0 → oceanprotocol_job_details-0.1.1}/pyproject.toml +1 -1
- {oceanprotocol_job_details-0.1.0 → oceanprotocol_job_details-0.1.1}/.gitignore +0 -0
- {oceanprotocol_job_details-0.1.0 → oceanprotocol_job_details-0.1.1}/LICENSE +0 -0
- {oceanprotocol_job_details-0.1.0 → oceanprotocol_job_details-0.1.1}/README.md +0 -0
- {oceanprotocol_job_details-0.1.0 → oceanprotocol_job_details-0.1.1}/oceanprotocol_job_details/__init__.py +0 -0
- {oceanprotocol_job_details-0.1.0 → oceanprotocol_job_details-0.1.1}/oceanprotocol_job_details/config.py +0 -0
- {oceanprotocol_job_details-0.1.0 → oceanprotocol_job_details-0.1.1}/oceanprotocol_job_details/job_details.py +0 -0
- {oceanprotocol_job_details-0.1.0 → oceanprotocol_job_details-0.1.1}/oceanprotocol_job_details/loaders/__init__.py +0 -0
- {oceanprotocol_job_details-0.1.0 → oceanprotocol_job_details-0.1.1}/oceanprotocol_job_details/loaders/impl/__init__.py +0 -0
- {oceanprotocol_job_details-0.1.0 → oceanprotocol_job_details-0.1.1}/oceanprotocol_job_details/loaders/impl/ddo.py +0 -0
- {oceanprotocol_job_details-0.1.0 → oceanprotocol_job_details-0.1.1}/oceanprotocol_job_details/loaders/impl/files.py +0 -0
- {oceanprotocol_job_details-0.1.0 → oceanprotocol_job_details-0.1.1}/oceanprotocol_job_details/loaders/impl/job_details.py +0 -0
- {oceanprotocol_job_details-0.1.0 → oceanprotocol_job_details-0.1.1}/oceanprotocol_job_details/loaders/loader.py +0 -0
- {oceanprotocol_job_details-0.1.0 → oceanprotocol_job_details-0.1.1}/oceanprotocol_job_details/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: oceanprotocol-job-details
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: A Python package to get details from OceanProtocol jobs
|
|
5
5
|
Project-URL: Homepage, https://github.com/AgrospAI/oceanprotocol-job-details
|
|
6
6
|
Project-URL: Issues, https://github.com/AgrospAI/oceanprotocol-job-details/issues
|
|
@@ -117,14 +117,6 @@ class DataToken:
|
|
|
117
117
|
serviceId: str
|
|
118
118
|
|
|
119
119
|
|
|
120
|
-
@dataclass_json
|
|
121
|
-
@dataclass
|
|
122
|
-
class SimpleDataToken:
|
|
123
|
-
address: str
|
|
124
|
-
name: str
|
|
125
|
-
symbol: str
|
|
126
|
-
|
|
127
|
-
|
|
128
120
|
@dataclass_json
|
|
129
121
|
@dataclass
|
|
130
122
|
class Price:
|
|
@@ -145,18 +137,6 @@ class Purgatory:
|
|
|
145
137
|
state: bool
|
|
146
138
|
|
|
147
139
|
|
|
148
|
-
@dataclass_json
|
|
149
|
-
@dataclass
|
|
150
|
-
class AccessDetails:
|
|
151
|
-
templateId: int
|
|
152
|
-
publisherMarketOrderFee: str
|
|
153
|
-
type: str
|
|
154
|
-
addressOrId: str
|
|
155
|
-
price: str
|
|
156
|
-
isPurchasable: bool
|
|
157
|
-
datatoken: SimpleDataToken
|
|
158
|
-
|
|
159
|
-
|
|
160
140
|
@dataclass_json
|
|
161
141
|
@dataclass
|
|
162
142
|
class DDO:
|
|
@@ -173,7 +153,6 @@ class DDO:
|
|
|
173
153
|
datatokens: list[DataToken]
|
|
174
154
|
stats: Stats
|
|
175
155
|
purgatory: Purgatory
|
|
176
|
-
accessDetails: AccessDetails
|
|
177
156
|
|
|
178
157
|
|
|
179
158
|
@final
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|