dkg 8.0.0a3__py3-none-any.whl → 8.0.2__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.
- dkg/__init__.py +1 -1
- dkg/assertion.py +2 -2
- dkg/clients/__init__.py +4 -0
- dkg/clients/async_dkg.py +109 -0
- dkg/{main.py → clients/dkg.py} +42 -21
- dkg/constants.py +117 -6
- dkg/data/interfaces/AskStorage.json +366 -0
- dkg/data/interfaces/Chronos.json +202 -0
- dkg/data/interfaces/Hub.json +294 -2
- dkg/data/interfaces/IdentityStorage.json +58 -0
- dkg/data/interfaces/{ContentAsset.json → KnowledgeCollection.json} +256 -343
- dkg/data/interfaces/KnowledgeCollectionStorage.json +2312 -0
- dkg/data/interfaces/Paranet.json +30 -214
- dkg/data/interfaces/ParanetIncentivesPoolFactory.json +18 -2
- dkg/data/interfaces/ParanetKnowledgeMinersRegistry.json +20 -4
- dkg/data/interfaces/{ParanetNeurowebIncentivesPool.json → ParanetNeuroIncentivesPool.json} +7 -7
- dkg/data/interfaces/ParanetsRegistry.json +102 -32
- dkg/data/interfaces/Token.json +146 -17
- dkg/managers/__init__.py +0 -0
- dkg/managers/async_manager.py +69 -0
- dkg/{manager.py → managers/manager.py} +5 -3
- dkg/method.py +5 -2
- dkg/modules/__init__.py +0 -0
- dkg/modules/asset/__init__.py +0 -0
- dkg/modules/asset/asset.py +739 -0
- dkg/modules/asset/async_asset.py +753 -0
- dkg/modules/async_module.py +66 -0
- dkg/modules/graph/__init__.py +0 -0
- dkg/modules/graph/async_graph.py +112 -0
- dkg/modules/graph/graph.py +87 -0
- dkg/{module.py → modules/module.py} +1 -1
- dkg/modules/network/__init__.py +0 -0
- dkg/{network.py → modules/network/network.py} +4 -4
- dkg/modules/node/__init__.py +0 -0
- dkg/modules/node/async_node.py +39 -0
- dkg/{node.py → modules/node/node.py} +2 -2
- dkg/modules/paranet/__init__.py +0 -0
- dkg/{paranet.py → modules/paranet/paranet.py} +2 -6
- dkg/providers/__init__.py +9 -2
- dkg/providers/blockchain/__init__.py +4 -0
- dkg/providers/blockchain/async_blockchain.py +245 -0
- dkg/providers/blockchain/base_blockchain.py +102 -0
- dkg/providers/{blockchain.py → blockchain/blockchain.py} +15 -96
- dkg/providers/node/__init__.py +4 -0
- dkg/providers/node/async_node_http.py +72 -0
- dkg/providers/node/base_node_http.py +25 -0
- dkg/providers/{node_http.py → node/node_http.py} +12 -10
- dkg/services/__init__.py +0 -0
- dkg/services/blockchain_services/__init__.py +0 -0
- dkg/services/blockchain_services/async_blockchain_service.py +180 -0
- dkg/services/blockchain_services/blockchain_service.py +174 -0
- dkg/services/input_service.py +181 -0
- dkg/services/node_services/__init__.py +0 -0
- dkg/services/node_services/async_node_service.py +184 -0
- dkg/services/node_services/node_service.py +167 -0
- dkg/types/__init__.py +11 -11
- dkg/utils/blockchain_request.py +76 -50
- dkg/utils/knowledge_asset_tools.py +5 -0
- dkg/utils/knowledge_collection_tools.py +248 -0
- dkg/utils/node_request.py +60 -14
- dkg/utils/rdf.py +9 -3
- {dkg-8.0.0a3.dist-info → dkg-8.0.2.dist-info}/METADATA +28 -19
- dkg-8.0.2.dist-info/RECORD +82 -0
- {dkg-8.0.0a3.dist-info → dkg-8.0.2.dist-info}/WHEEL +1 -1
- dkg/asset.py +0 -912
- dkg/data/interfaces/AssertionStorage.json +0 -229
- dkg/data/interfaces/ContentAssetStorage.json +0 -706
- dkg/data/interfaces/ServiceAgreementStorageProxy.json +0 -1314
- dkg/graph.py +0 -63
- dkg-8.0.0a3.dist-info/RECORD +0 -52
- {dkg-8.0.0a3.dist-info → dkg-8.0.2.dist-info}/LICENSE +0 -0
- {dkg-8.0.0a3.dist-info → dkg-8.0.2.dist-info}/NOTICE +0 -0
@@ -1,22 +1,24 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: dkg
|
3
|
-
Version: 8.0.
|
3
|
+
Version: 8.0.2
|
4
4
|
Summary: Python library for interacting with the OriginTrail Decentralized Knowledge Graph
|
5
5
|
License: Apache-2.0
|
6
6
|
Author: Uladzislau Hubar
|
7
|
-
Author-email: hubar.uladzislau@gmail.com
|
7
|
+
Author-email: hubar.uladzislau@gmail.com>, Zvonimir Sculac <zvonimir.sculac@origin-trail.com
|
8
8
|
Requires-Python: >=3.10,<4.0
|
9
9
|
Classifier: License :: OSI Approved :: Apache Software License
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
11
11
|
Classifier: Programming Language :: Python :: 3.10
|
12
12
|
Classifier: Programming Language :: Python :: 3.11
|
13
13
|
Classifier: Programming Language :: Python :: 3.12
|
14
|
+
Classifier: Programming Language :: Python :: 3.13
|
14
15
|
Requires-Dist: eth-abi (>=5.1.0,<6.0.0)
|
15
16
|
Requires-Dist: eth-account (>=0.13.4,<0.14.0)
|
16
17
|
Requires-Dist: eth-typing (>=5.0.0,<6.0.0)
|
17
18
|
Requires-Dist: hexbytes (>=1.2.1,<2.0.0)
|
18
19
|
Requires-Dist: ot-pyld (>=2.1.1,<3.0.0)
|
19
20
|
Requires-Dist: pandas (>=2.2.3,<3.0.0)
|
21
|
+
Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
|
20
22
|
Requires-Dist: pyyaml (>=6.0.2,<7.0.0)
|
21
23
|
Requires-Dist: rdflib (>=6.3.2,<7.0.0)
|
22
24
|
Requires-Dist: web3 (>=7.3.0,<8.0.0)
|
@@ -24,7 +26,7 @@ Description-Content-Type: text/markdown
|
|
24
26
|
|
25
27
|
<a name="readme-top"></a>
|
26
28
|
|
27
|
-
|
29
|
+
---
|
28
30
|
|
29
31
|
<br />
|
30
32
|
<div align="center">
|
@@ -75,7 +77,7 @@ ___
|
|
75
77
|
</ol>
|
76
78
|
</details>
|
77
79
|
|
78
|
-
|
80
|
+
---
|
79
81
|
|
80
82
|
<br/>
|
81
83
|
|
@@ -85,6 +87,7 @@ ___
|
|
85
87
|
<summary>
|
86
88
|
|
87
89
|
### **What is the Decentralized Knowledge Graph?**
|
90
|
+
|
88
91
|
</summary>
|
89
92
|
|
90
93
|
<br/>
|
@@ -94,17 +97,19 @@ ___
|
|
94
97
|
</div>
|
95
98
|
|
96
99
|
OriginTrail Decentralized Knowledge Graph (DKG), hosted on the OriginTrail Decentralized Network (ODN) as trusted knowledge infrastructure, is shared global Knowledge Graph of Knowledge Assets. Running on the basis of the permissionless multi-chain OriginTrail protocol, it combines blockchains and knowledge graph technology to enable trusted AI applications based on key W3C standards.
|
100
|
+
|
97
101
|
</details>
|
98
102
|
|
99
103
|
<details open>
|
100
104
|
<summary>
|
101
105
|
|
102
106
|
### **The OriginTrail DKG Architecture**
|
107
|
+
|
103
108
|
</summary>
|
104
109
|
|
105
110
|
<br/>
|
106
111
|
|
107
|
-
The OriginTrail tech stack is a three layer structure, consisting of the multi-chain consensus layer (OriginTrail layer 1, running on multiple blockchains), the Decentralized Knowledge Graph layer (OriginTrail Layer 2, hosted on the ODN) and Trusted Knowledge applications in the application layer.
|
112
|
+
The OriginTrail tech stack is a three layer structure, consisting of the multi-chain consensus layer (OriginTrail layer 1, running on multiple blockchains), the Decentralized Knowledge Graph layer (OriginTrail Layer 2, hosted on the ODN) and Trusted Knowledge applications in the application layer.
|
108
113
|
|
109
114
|
<div align="center">
|
110
115
|
<img src="images/dkg-architecture.png" alt="DKG Architecture" width="400">
|
@@ -112,13 +117,15 @@ The OriginTrail tech stack is a three layer structure, consisting of the multi-c
|
|
112
117
|
|
113
118
|
Further, the architecture differentiates between **the public, replicated knowledge graph** shared by all network nodes according to the protocol, and **private Knowledge graphs** hosted separately by each of the OriginTrail nodes.
|
114
119
|
|
115
|
-
**Anyone can run an OriginTrail node and become part of the ODN, contributing
|
120
|
+
**Anyone can run an OriginTrail node and become part of the ODN, contributing to the network capacity and hosting the OriginTrail DKG. The OriginTrail node is the ultimate data service for data and knowledge intensive Web3 applications and is used as the key backbone for trusted AI applications (see https://chatdkg.ai)**
|
121
|
+
|
116
122
|
</details>
|
117
123
|
|
118
124
|
<details open>
|
119
125
|
<summary>
|
120
126
|
|
121
127
|
### **What is a Knowledge Asset?**
|
128
|
+
|
122
129
|
</summary>
|
123
130
|
|
124
131
|
<br/>
|
@@ -130,15 +137,16 @@ Further, the architecture differentiates between **the public, replicated knowle
|
|
130
137
|
**Knowledge Asset is the new, AI‑ready resource for the Internet**
|
131
138
|
|
132
139
|
Knowledge Assets are verifiable containers of structured knowledge that live on the OriginTrail DKG and provide:
|
140
|
+
|
133
141
|
- **Discoverability - UAL is the new URL**. Uniform Asset Locators (UALs, based on the W3C Decentralized Identifiers) are a new Web3 knowledge identifier (extensions of the Uniform Resource Locators - URLs) which identify a specific piece of knowledge and make it easy to find and connect with other Knowledge Assets.
|
134
142
|
- **Ownership - NFTs enable ownership**. Each Knowledge Asset contains an NFT token that enables ownership, knowledge asset administration and market mechanisms.
|
135
143
|
- **Verifiability - On-chain information origin and verifiable trail**. The blockchain tech increases trust, security, transparency, and the traceability of information.
|
136
144
|
|
137
|
-
|
138
145
|
By their nature, Knowledge Assets are semantic resources (following the W3C Semantic Web set of standards), and through their symbolic representations inherently AI ready. See more at https://chatdkg.ai
|
139
146
|
<br/>
|
140
147
|
|
141
148
|
**Discover Knowledge Assets with the DKG Explorer:**
|
149
|
+
|
142
150
|
<div align="center">
|
143
151
|
<table>
|
144
152
|
<tr>
|
@@ -170,7 +178,6 @@ By their nature, Knowledge Assets are semantic resources (following the W3C Sema
|
|
170
178
|
</table>
|
171
179
|
</div>
|
172
180
|
|
173
|
-
|
174
181
|
</details>
|
175
182
|
|
176
183
|
<p align="right">(<a href="#readme-top">back to top</a>)</p>
|
@@ -178,40 +185,43 @@ By their nature, Knowledge Assets are semantic resources (following the W3C Sema
|
|
178
185
|
|
179
186
|
## 🚀 Getting Started
|
180
187
|
|
181
|
-
|
188
|
+
---
|
182
189
|
|
183
190
|
### Prerequisites
|
184
191
|
|
185
|
-
|
186
|
-
|
187
|
-
|
192
|
+
- python `>=3.10`
|
193
|
+
- poetry `>=1.5.1`
|
188
194
|
|
189
195
|
In order to use in the local environment, make sure to [run the local DKG network](https://github.com/OriginTrail/ot-node?tab=readme-ov-file#local-network-setup).
|
190
196
|
|
191
|
-
|
197
|
+
---
|
198
|
+
|
192
199
|
<br/>
|
193
200
|
|
194
201
|
### Installation
|
195
202
|
|
196
|
-
|
197
203
|
Create virtual environment (you can choose any existing folder this command will create configurations and virtual env for python):
|
204
|
+
|
198
205
|
```bash
|
199
206
|
python3 -m venv /path/to/folder
|
200
207
|
```
|
201
208
|
|
202
209
|
Inside of previously generated folder you will find activate script in bin folder and run it:
|
210
|
+
|
203
211
|
```bash
|
204
212
|
source /path/to/folder/bin/activate
|
205
213
|
```
|
206
214
|
|
207
|
-
Install dependencies:
|
215
|
+
Install dependencies and configure pre-commit hooks:
|
216
|
+
|
208
217
|
```bash
|
209
|
-
|
218
|
+
make install
|
210
219
|
```
|
211
220
|
|
212
221
|
Now you can run a demo example file (you need to have the local DKG network running):
|
222
|
+
|
213
223
|
```bash
|
214
|
-
|
224
|
+
make run-demo
|
215
225
|
```
|
216
226
|
|
217
227
|
<br/>
|
@@ -252,7 +262,6 @@ Don't forget to give the project a star! Thanks again!
|
|
252
262
|
|
253
263
|
- [web3.py](https://github.com/ethereum/web3.py): Basis for this project
|
254
264
|
|
255
|
-
|
256
265
|
<br/>
|
257
266
|
<p align="right">(<a href="#readme-top">back to top</a>)</p>
|
258
267
|
|
@@ -287,5 +296,5 @@ Don't forget to give the project a star! Thanks again!
|
|
287
296
|
</a>
|
288
297
|
</div>
|
289
298
|
|
290
|
-
|
299
|
+
---
|
291
300
|
|
@@ -0,0 +1,82 @@
|
|
1
|
+
dkg/__init__.py,sha256=CCE703cZSTAgKUZbX2JqOR5DVydbh9c7uV8ky2DZNug,121
|
2
|
+
dkg/assertion.py,sha256=-KIVT3LHlOHegGg68_KceC5O2r8B_povbofRjmLguVQ,2507
|
3
|
+
dkg/clients/__init__.py,sha256=qKQ8TIbst7UZpJEpEJOZslgEX5EB0PU_H7cwk5-UDso,84
|
4
|
+
dkg/clients/async_dkg.py,sha256=PM0suu8BFUhhS8_K_zoPTxKEXn5J1AFCwyB-JP-hLmc,4013
|
5
|
+
dkg/clients/dkg.py,sha256=QTLm5nfeW0gx_t2e8JMO5gcIJaPvmy1L7ZOy7dSfhkc,3786
|
6
|
+
dkg/constants.py,sha256=VeXlfY32On-eVLuIdfw2flUaYaMxfCVu_oE_4ltiDtY,5139
|
7
|
+
dkg/data/interfaces/AskStorage.json,sha256=hHWq3e0Kx8Cs3PKD4HL2xYRQ8DXRTxTL06QXqFyqlns,6773
|
8
|
+
dkg/data/interfaces/Chronos.json,sha256=aIpCUgJ8omHidyt0GPkj02COT1LW8Tu66qDm7iquQJk,3595
|
9
|
+
dkg/data/interfaces/Hub.json,sha256=ZcaePz10ff2Vm7VP-vWP63xLOuE0EE8jNruWvWmMjLw,12611
|
10
|
+
dkg/data/interfaces/IdentityStorage.json,sha256=OqyEB1WMj_pC7AHq-3y-I2MJL7xmuTek4asQ2TETTqo,7459
|
11
|
+
dkg/data/interfaces/KnowledgeCollection.json,sha256=ywC0fuvxWdFsDm-l67udpzDCKGf23pD3UsxEEqifHus,11922
|
12
|
+
dkg/data/interfaces/KnowledgeCollectionStorage.json,sha256=DN1gMEUU57jTFf9uSiHOLmRbmhghlzW5qnVALwBOQ4M,45342
|
13
|
+
dkg/data/interfaces/Paranet.json,sha256=y5k59RKwtoG00cnmPEoaGD6Qf2Ytxq7XIgrvMj6WaUc,28705
|
14
|
+
dkg/data/interfaces/ParanetIncentivesPoolFactory.json,sha256=F4eLqBHhAIGnaOGdxyWYpA23IzaQ0AN9-2maVD-fW8E,4253
|
15
|
+
dkg/data/interfaces/ParanetKnowledgeMinersRegistry.json,sha256=PmvMZJsIahb1r01SYTdsFwHw73McpEqa9DdcZaVqkaw,19144
|
16
|
+
dkg/data/interfaces/ParanetNeuroIncentivesPool.json,sha256=a4h0FfQp3RgMpOhHgSWTEaig7jQ2OoVrm--VG9QkKvY,21944
|
17
|
+
dkg/data/interfaces/ParanetsRegistry.json,sha256=ruV9Qva7Voan9rSs67wwlWxPPBqAAND87tGtTiSZI98,34391
|
18
|
+
dkg/data/interfaces/Token.json,sha256=hp79eZJDoGqOTSclAv13pIJpMhqr7aBH8jbiQTlA7VU,13289
|
19
|
+
dkg/dataclasses.py,sha256=pOV0LzuNOTDsr48JGq_2H6BD7ISS4ZxOn2HGl9MjSyM,1906
|
20
|
+
dkg/exceptions.py,sha256=LiEhCVKw-jCJcyCNRjHZGKxZoljOKwLNV-9q7EPZkak,3756
|
21
|
+
dkg/managers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
|
+
dkg/managers/async_manager.py,sha256=OBFJMl9GN3my_fBsm5GP2Xu4ie0sENNcNA-vtsL9RNA,2810
|
23
|
+
dkg/managers/manager.py,sha256=2fGwzppJR33d3VPRHgZIvlBbcrb5P99_J7BdfaaOSYM,2640
|
24
|
+
dkg/method.py,sha256=HG_mI6CXxKznLAN561G2Gqtijm3eliHV6vPxAvz-dGs,5521
|
25
|
+
dkg/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
26
|
+
dkg/modules/asset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
27
|
+
dkg/modules/asset/asset.py,sha256=0zvLhwuTKg5FHwdEPPdmFNS-NmpMZ7xiM2Us1uT8DPY,27619
|
28
|
+
dkg/modules/asset/async_asset.py,sha256=Gyk4irLro6YHfTEIdwGxaMUalQMg5j9gjrMolokURk8,28204
|
29
|
+
dkg/modules/async_module.py,sha256=iw4DEU8tUvm0CXErQ1LZ8qGcNMQJmvGhu0poHjoKPaI,2629
|
30
|
+
dkg/modules/graph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
31
|
+
dkg/modules/graph/async_graph.py,sha256=DZqgJRRwLLgBNEc3vEYrqaOKqNJA0o_vSvuk-lPY0eY,4162
|
32
|
+
dkg/modules/graph/graph.py,sha256=2ISaZKHRTBq0RHdGqy8E2NKh1kM9v8VeuHm-cUqHNYc,3259
|
33
|
+
dkg/modules/module.py,sha256=_lK4iFgThXNSD_dhM6ZgDrDJdxsRjZgIHGQLLXzOW4s,2575
|
34
|
+
dkg/modules/network/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
|
+
dkg/modules/network/network.py,sha256=a5P9bjbiBVyOaz_Pwycx1IljhgHsE4DM9n2faCIeZtc,2191
|
36
|
+
dkg/modules/node/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
37
|
+
dkg/modules/node/async_node.py,sha256=95UgF8mJCCM7kI3vtViKaJQm70Kf75TAfd2zv8m13h0,1617
|
38
|
+
dkg/modules/node/node.py,sha256=dWHVFfwkOVsCzaP47Slk46i6Dbuvfx8Dloav1hkGqjc,1495
|
39
|
+
dkg/modules/paranet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
40
|
+
dkg/modules/paranet/paranet.py,sha256=YulI-sP65sOlBYyUVbA008JByvy-bqnOnWt7vXsf5Kk,26959
|
41
|
+
dkg/providers/__init__.py,sha256=mOHuyl44mpuLnXv920CJ1lsbSTlxNLCwK4xXeQsfv3s,251
|
42
|
+
dkg/providers/blockchain/__init__.py,sha256=Vg5XQ9Fw5m0CQvpMTH5atgPIKKcnknX9peShsmOOtGg,158
|
43
|
+
dkg/providers/blockchain/async_blockchain.py,sha256=c32RaNP7Qpo7aqP7ZVigkRiKKhb1B57Y4pwItzs9Md0,8766
|
44
|
+
dkg/providers/blockchain/base_blockchain.py,sha256=VOF3qfwsfJJ3ykBEXDF6yOkKqWG0m-cLFsNC3K3pdPI,3647
|
45
|
+
dkg/providers/blockchain/blockchain.py,sha256=HxLXkkK1vT_EsMfeIUZUubz6oktMECN19FUdsOAyArk,7906
|
46
|
+
dkg/providers/node/__init__.py,sha256=Nx2m3bbwDa4y0gAR1WUKhxmw36F-TscKaZj1CKqlEF4,148
|
47
|
+
dkg/providers/node/async_node_http.py,sha256=dBge8pS9Pnk8N4TTgKeewmWWJnSOgU48rQVbm5ZKKsc,2804
|
48
|
+
dkg/providers/node/base_node_http.py,sha256=CCkVwyr_iQKCbknVmEpUDXZlQb8C-Z5ndqQdW-fQR0E,763
|
49
|
+
dkg/providers/node/node_http.py,sha256=pWrsUC8WZoNrAfLPoMH6wkoHi42jyoKYFid2Pf_meoI,2412
|
50
|
+
dkg/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
51
|
+
dkg/services/blockchain_services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
52
|
+
dkg/services/blockchain_services/async_blockchain_service.py,sha256=DRGJKSAfPSBF_KgDeAOFQbriXUybJjj-a2CRxxhP0Ks,7202
|
53
|
+
dkg/services/blockchain_services/blockchain_service.py,sha256=EasHlJvkdsSXSCsHdW2zQmijSu_xmZ_G32bhyB7MaV0,6957
|
54
|
+
dkg/services/input_service.py,sha256=KeaKfbGwcXmpthKXeU8ap3l5-yw83hOCG_G0lNkkCf4,6330
|
55
|
+
dkg/services/node_services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
|
+
dkg/services/node_services/async_node_service.py,sha256=AGwpEIbL6HbqcL1Y8FjIwNynQyvvhQaBZdwZtu9X-BQ,5478
|
57
|
+
dkg/services/node_services/node_service.py,sha256=gqCm-PXB0dWwqWw6OxD3AZ3oiS-z6dhxG_l4LDXv3OA,4811
|
58
|
+
dkg/types/__init__.py,sha256=YewW48fOBq-FtecY12Tlr_0vGDuNc2uzpIiM-WERzBU,704
|
59
|
+
dkg/types/blockchain.py,sha256=hsBpFLgpcEmgODLK0g_cUW1AB69ZZYeX4AcW6wpAMtA,1682
|
60
|
+
dkg/types/dkg_node.py,sha256=uGjaYUO4D55sHJrL_3aOL3Nul3RlAo_aL4HLoSrQxr0,838
|
61
|
+
dkg/types/encoding.py,sha256=gOtt9XLoxs6TE7rOCrAx-aCOdsDdaTVn3bxu9HPavxc,915
|
62
|
+
dkg/types/evm.py,sha256=gN2hSq4MQzobWE3YAiTZPcv5b65AVyUEQut8hWPnx68,971
|
63
|
+
dkg/types/general.py,sha256=7SnOqQ9iFjYaXgs7qc3_SxN9ygI-rIoK6vQU6LJZ8og,1539
|
64
|
+
dkg/types/generics.py,sha256=9ZGFGWp4eN_5bGaWF6COtFMh228ZghjU1CmUok0fuds,907
|
65
|
+
dkg/types/network.py,sha256=htNZ00Vrb-wMcR4_XI1tn_-0uVjDqcW7hhdHyjbyq1g,838
|
66
|
+
dkg/types/rdf.py,sha256=qm1l7pqTLWBlSmaoQhmBg2qKS16eF83IcOnxuYPdiv8,851
|
67
|
+
dkg/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
68
|
+
dkg/utils/blockchain_request.py,sha256=CMz3sNRhfmYirm0-VUK2HTpbRfgc1gtG2SoPIuRYKb0,12446
|
69
|
+
dkg/utils/decorators.py,sha256=uUh0xI9wv1gE6JF44eYEfUPGSFEBLR6Ua5D9Dhc3s10,1566
|
70
|
+
dkg/utils/knowledge_asset_tools.py,sha256=uehOshzaYg03hDU8RSIV_k2mNaASVgqyyErzj6GwBxw,81
|
71
|
+
dkg/utils/knowledge_collection_tools.py,sha256=pQKGlSbdsdwfe2y0S1zh9c8MEqi_lrsdBf4U_Q6-V2E,7424
|
72
|
+
dkg/utils/merkle.py,sha256=924kloBAnCXydteVtWMj_QLP5CRJf2GbHMZ-lbIK0KE,5141
|
73
|
+
dkg/utils/metadata.py,sha256=483OroYwGNfZ_cCXfH3-xUrZgiR4mjjo9iU_Ie5RYRs,1658
|
74
|
+
dkg/utils/node_request.py,sha256=wppF8Xf0RkuAAcURcYgyjGAdMsXm0L5YEem8wFGE2g8,6517
|
75
|
+
dkg/utils/rdf.py,sha256=AvlcxZEeP58UbaGGvPX_ss69O-tgTXOJ9y9COZqVgkw,2973
|
76
|
+
dkg/utils/string_transformations.py,sha256=eR51fVwTF9QKxEqXo9_1Bfw_k8iQajdXD6rKuTvhs70,972
|
77
|
+
dkg/utils/ual.py,sha256=g7PFyS4Sbwjmwkq-eB20uRULEC2wlPGZr31BVQjs5OQ,1569
|
78
|
+
dkg-8.0.2.dist-info/LICENSE,sha256=Dr70w2zcW8-jrPGlpTTTlJPL8lR4j2zpDD32tdEFgjY,11375
|
79
|
+
dkg-8.0.2.dist-info/METADATA,sha256=p6nGObvkqVFMxPMRlcqcp4DoqwE_HUiMBmCYM-UgAPI,10820
|
80
|
+
dkg-8.0.2.dist-info/NOTICE,sha256=Rk5toFR2ZqPwVZ3P_P4wE6U1xCnWR9KD3rNBqfPY7h8,368
|
81
|
+
dkg-8.0.2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
82
|
+
dkg-8.0.2.dist-info/RECORD,,
|