dkg 8.0.1__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/modules/asset/asset.py +5 -5
- dkg/modules/asset/async_asset.py +11 -9
- dkg/modules/graph/async_graph.py +2 -8
- dkg/modules/graph/graph.py +2 -9
- dkg/modules/paranet/paranet.py +0 -4
- dkg/services/blockchain_services/async_blockchain_service.py +2 -2
- dkg/services/blockchain_services/blockchain_service.py +2 -2
- dkg/services/input_service.py +0 -2
- dkg/utils/blockchain_request.py +12 -12
- dkg/utils/node_request.py +2 -2
- {dkg-8.0.1.dist-info → dkg-8.0.2.dist-info}/METADATA +1 -1
- {dkg-8.0.1.dist-info → dkg-8.0.2.dist-info}/RECORD +15 -15
- {dkg-8.0.1.dist-info → dkg-8.0.2.dist-info}/LICENSE +0 -0
- {dkg-8.0.1.dist-info → dkg-8.0.2.dist-info}/NOTICE +0 -0
- {dkg-8.0.1.dist-info → dkg-8.0.2.dist-info}/WHEEL +0 -0
dkg/modules/asset/asset.py
CHANGED
@@ -406,7 +406,7 @@ class KnowledgeAsset(Module):
|
|
406
406
|
)
|
407
407
|
|
408
408
|
knowledge_collection_id = None
|
409
|
-
|
409
|
+
mint_knowledge_collection_receipt = None
|
410
410
|
|
411
411
|
knowledge_collection_result = (
|
412
412
|
self.blockchain_service.create_knowledge_collection(
|
@@ -433,7 +433,7 @@ class KnowledgeAsset(Module):
|
|
433
433
|
)
|
434
434
|
)
|
435
435
|
knowledge_collection_id = knowledge_collection_result.knowledge_collection_id
|
436
|
-
|
436
|
+
mint_knowledge_collection_receipt = knowledge_collection_result.receipt
|
437
437
|
|
438
438
|
ual = format_ual(
|
439
439
|
blockchain_id, content_asset_storage_address, knowledge_collection_id
|
@@ -457,7 +457,7 @@ class KnowledgeAsset(Module):
|
|
457
457
|
"signatures"
|
458
458
|
),
|
459
459
|
"operation": {
|
460
|
-
"
|
460
|
+
"mintKnowledgeCollection": mint_knowledge_collection_receipt,
|
461
461
|
"publish": get_operation_status_object(
|
462
462
|
publish_operation_result, publish_operation_id
|
463
463
|
),
|
@@ -476,7 +476,7 @@ class KnowledgeAsset(Module):
|
|
476
476
|
)
|
477
477
|
)
|
478
478
|
|
479
|
-
|
479
|
+
_submit_knowledge_collection = Method(BlockchainRequest.submit_knowledge_collection)
|
480
480
|
|
481
481
|
def submit_to_paranet(
|
482
482
|
self, ual: UAL, paranet_ual: UAL
|
@@ -493,7 +493,7 @@ class KnowledgeAsset(Module):
|
|
493
493
|
parsed_paranet_ual["token_id"],
|
494
494
|
)
|
495
495
|
|
496
|
-
receipt: TxReceipt = self.
|
496
|
+
receipt: TxReceipt = self._submit_knowledge_collection(
|
497
497
|
paranet_knowledge_asset_storage,
|
498
498
|
paranet_knowledge_asset_token_id,
|
499
499
|
knowledge_asset_storage,
|
dkg/modules/asset/async_asset.py
CHANGED
@@ -420,7 +420,7 @@ class AsyncKnowledgeAsset(AsyncModule):
|
|
420
420
|
)
|
421
421
|
|
422
422
|
knowledge_collection_id = None
|
423
|
-
|
423
|
+
mint_knowledge_collection_receipt = None
|
424
424
|
|
425
425
|
knowledge_collection_result = (
|
426
426
|
await self.blockchain_service.create_knowledge_collection(
|
@@ -447,7 +447,7 @@ class AsyncKnowledgeAsset(AsyncModule):
|
|
447
447
|
)
|
448
448
|
)
|
449
449
|
knowledge_collection_id = knowledge_collection_result.knowledge_collection_id
|
450
|
-
|
450
|
+
mint_knowledge_collection_receipt = knowledge_collection_result.receipt
|
451
451
|
|
452
452
|
ual = format_ual(
|
453
453
|
blockchain_id, content_asset_storage_address, knowledge_collection_id
|
@@ -471,15 +471,17 @@ class AsyncKnowledgeAsset(AsyncModule):
|
|
471
471
|
"signatures"
|
472
472
|
),
|
473
473
|
"operation": {
|
474
|
-
"
|
474
|
+
"mintKnowledgeCollection": mint_knowledge_collection_receipt,
|
475
475
|
"publish": get_operation_status_object(
|
476
476
|
publish_operation_result, publish_operation_id
|
477
477
|
),
|
478
478
|
"finality": {
|
479
|
-
"status":
|
480
|
-
|
481
|
-
|
482
|
-
|
479
|
+
"status": (
|
480
|
+
"FINALIZED"
|
481
|
+
if finality_status_result
|
482
|
+
>= minimum_number_of_finalization_confirmations
|
483
|
+
else "NOT FINALIZED"
|
484
|
+
)
|
483
485
|
},
|
484
486
|
"numberOfConfirmations": finality_status_result,
|
485
487
|
"requiredConfirmations": minimum_number_of_finalization_confirmations,
|
@@ -488,7 +490,7 @@ class AsyncKnowledgeAsset(AsyncModule):
|
|
488
490
|
)
|
489
491
|
)
|
490
492
|
|
491
|
-
|
493
|
+
_submit_knowledge_collection = Method(BlockchainRequest.submit_knowledge_collection)
|
492
494
|
|
493
495
|
def submit_to_paranet(
|
494
496
|
self, ual: UAL, paranet_ual: UAL
|
@@ -505,7 +507,7 @@ class AsyncKnowledgeAsset(AsyncModule):
|
|
505
507
|
parsed_paranet_ual["token_id"],
|
506
508
|
)
|
507
509
|
|
508
|
-
receipt: TxReceipt = self.
|
510
|
+
receipt: TxReceipt = self._submit_knowledge_collection(
|
509
511
|
paranet_knowledge_asset_storage,
|
510
512
|
paranet_knowledge_asset_token_id,
|
511
513
|
knowledge_asset_storage,
|
dkg/modules/graph/async_graph.py
CHANGED
@@ -21,7 +21,7 @@ from rdflib.plugins.sparql.parser import parseQuery
|
|
21
21
|
from dkg.managers.async_manager import AsyncRequestManager
|
22
22
|
from dkg.modules.async_module import AsyncModule
|
23
23
|
from dkg.types import NQuads
|
24
|
-
from dkg.constants import
|
24
|
+
from dkg.constants import Status
|
25
25
|
from dkg.services.input_service import InputService
|
26
26
|
from dkg.services.node_services.async_node_service import AsyncNodeService
|
27
27
|
from dkg.types import UAL
|
@@ -48,8 +48,6 @@ class AsyncGraph(AsyncModule):
|
|
48
48
|
|
49
49
|
arguments = self.input_service.get_query_arguments(options)
|
50
50
|
|
51
|
-
max_number_of_retries = arguments.get("max_number_of_retries")
|
52
|
-
frequency = arguments.get("frequency")
|
53
51
|
paranet_ual = arguments.get("paranet_ual")
|
54
52
|
repository = arguments.get("repository")
|
55
53
|
|
@@ -59,12 +57,8 @@ class AsyncGraph(AsyncModule):
|
|
59
57
|
result = await self.node_service.query(
|
60
58
|
query, query_type, repository, paranet_ual
|
61
59
|
)
|
62
|
-
operation_id = result.get("operationId")
|
63
|
-
operation_result = await self.node_service.get_operation_result(
|
64
|
-
operation_id, Operations.QUERY.value, max_number_of_retries, frequency
|
65
|
-
)
|
66
60
|
|
67
|
-
return
|
61
|
+
return result.get("data")
|
68
62
|
|
69
63
|
async def publish_finality(self, UAL: UAL, options=None):
|
70
64
|
if options is None:
|
dkg/modules/graph/graph.py
CHANGED
@@ -23,7 +23,7 @@ from dkg.modules.module import Module
|
|
23
23
|
from dkg.types import NQuads
|
24
24
|
from dkg.services.node_services.node_service import NodeService
|
25
25
|
from dkg.services.input_service import InputService
|
26
|
-
from dkg.constants import
|
26
|
+
from dkg.constants import Status
|
27
27
|
|
28
28
|
|
29
29
|
class Graph(Module):
|
@@ -43,9 +43,6 @@ class Graph(Module):
|
|
43
43
|
options: dict = {},
|
44
44
|
) -> NQuads:
|
45
45
|
arguments = self.input_service.get_query_arguments(options)
|
46
|
-
|
47
|
-
max_number_of_retries = arguments.get("max_number_of_retries")
|
48
|
-
frequency = arguments.get("frequency")
|
49
46
|
paranet_ual = arguments.get("paranet_ual")
|
50
47
|
repository = arguments.get("repository")
|
51
48
|
|
@@ -53,12 +50,8 @@ class Graph(Module):
|
|
53
50
|
query_type = parsed_query[1].name.replace("Query", "").upper()
|
54
51
|
|
55
52
|
result = self.node_service.query(query, query_type, repository, paranet_ual)
|
56
|
-
operation_id = result.get("operationId")
|
57
|
-
operation_result = self.node_service.get_operation_result(
|
58
|
-
operation_id, Operations.QUERY.value, max_number_of_retries, frequency
|
59
|
-
)
|
60
53
|
|
61
|
-
return
|
54
|
+
return result.get("data")
|
62
55
|
|
63
56
|
def publish_finality(self, UAL, options=None):
|
64
57
|
if options is None:
|
dkg/modules/paranet/paranet.py
CHANGED
@@ -755,10 +755,6 @@ class Paranet(Module):
|
|
755
755
|
"operation": json.loads(Web3.to_json(receipt)),
|
756
756
|
}
|
757
757
|
|
758
|
-
_get_updating_knowledge_asset_states = Method(
|
759
|
-
BlockchainRequest.get_updating_knowledge_asset_states
|
760
|
-
)
|
761
|
-
|
762
758
|
def _get_incentives_pool_contract(
|
763
759
|
self,
|
764
760
|
ual: UAL,
|
@@ -20,7 +20,7 @@ class AsyncBlockchainService(AsyncModule):
|
|
20
20
|
_increase_allowance = Method(BlockchainRequest.increase_allowance)
|
21
21
|
_decrease_allowance = Method(BlockchainRequest.decrease_allowance)
|
22
22
|
_create_knowledge_collection = Method(BlockchainRequest.create_knowledge_collection)
|
23
|
-
|
23
|
+
_mint_knowledge_collection = Method(BlockchainRequest.mint_knowledge_collection)
|
24
24
|
_get_asset_storage_address = Method(BlockchainRequest.get_asset_storage_address)
|
25
25
|
_key_is_operational_wallet = Method(BlockchainRequest.key_is_operational_wallet)
|
26
26
|
_time_until_next_epoch = Method(BlockchainRequest.time_until_next_epoch)
|
@@ -127,7 +127,7 @@ class AsyncBlockchainService(AsyncModule):
|
|
127
127
|
[Web3.to_bytes(hexstr=x) for x in request.get("vs")],
|
128
128
|
)
|
129
129
|
else:
|
130
|
-
receipt = await self.
|
130
|
+
receipt = await self._mint_knowledge_collection(
|
131
131
|
paranet_ka_contract,
|
132
132
|
paranet_token_id,
|
133
133
|
list(request.values()),
|
@@ -20,7 +20,7 @@ class BlockchainService(Module):
|
|
20
20
|
_increase_allowance = Method(BlockchainRequest.increase_allowance)
|
21
21
|
_decrease_allowance = Method(BlockchainRequest.decrease_allowance)
|
22
22
|
_create_knowledge_collection = Method(BlockchainRequest.create_knowledge_collection)
|
23
|
-
|
23
|
+
_mint_knowledge_collection = Method(BlockchainRequest.mint_knowledge_collection)
|
24
24
|
_get_asset_storage_address = Method(BlockchainRequest.get_asset_storage_address)
|
25
25
|
_key_is_operational_wallet = Method(BlockchainRequest.key_is_operational_wallet)
|
26
26
|
_time_until_next_epoch = Method(BlockchainRequest.time_until_next_epoch)
|
@@ -121,7 +121,7 @@ class BlockchainService(Module):
|
|
121
121
|
[Web3.to_bytes(hexstr=x) for x in request.get("vs")],
|
122
122
|
)
|
123
123
|
else:
|
124
|
-
receipt = self.
|
124
|
+
receipt = self._mint_knowledge_collection(
|
125
125
|
paranet_ka_contract,
|
126
126
|
paranet_token_id,
|
127
127
|
list(request.values()),
|
dkg/services/input_service.py
CHANGED
@@ -44,8 +44,6 @@ class InputService:
|
|
44
44
|
|
45
45
|
def get_query_arguments(self, options):
|
46
46
|
return {
|
47
|
-
"max_number_of_retries": self.get_max_number_of_retries(options),
|
48
|
-
"frequency": self.get_frequency(options),
|
49
47
|
"paranet_ual": self.get_paranet_ual(options),
|
50
48
|
"repository": self.get_repository(options),
|
51
49
|
}
|
dkg/utils/blockchain_request.py
CHANGED
@@ -303,14 +303,14 @@ class BlockchainRequest:
|
|
303
303
|
"paranetServiceAddresses": list[Address],
|
304
304
|
},
|
305
305
|
)
|
306
|
-
|
306
|
+
submit_knowledge_collection = ContractTransaction(
|
307
307
|
contract="Paranet",
|
308
|
-
function="
|
308
|
+
function="submitKnowledgeCollection",
|
309
309
|
args={
|
310
|
-
"
|
311
|
-
"
|
312
|
-
"
|
313
|
-
"
|
310
|
+
"paranetKCStorageContract": Address,
|
311
|
+
"paranetKnowledgeCollectionId": int,
|
312
|
+
"knowledgeCollectionStorageContract": Address,
|
313
|
+
"knowledgeCollectionTokenId": int,
|
314
314
|
},
|
315
315
|
)
|
316
316
|
|
@@ -334,9 +334,9 @@ class BlockchainRequest:
|
|
334
334
|
},
|
335
335
|
)
|
336
336
|
|
337
|
-
|
337
|
+
get_updating_knowledge_collection_states = ContractCall(
|
338
338
|
contract="ParanetKnowledgeMinersRegistry",
|
339
|
-
function="
|
339
|
+
function="getUpdatingKnowledgeCollectionStates",
|
340
340
|
args={
|
341
341
|
"miner": Address,
|
342
342
|
"paranetId": HexStr,
|
@@ -412,12 +412,12 @@ class BlockchainRequest:
|
|
412
412
|
},
|
413
413
|
)
|
414
414
|
|
415
|
-
|
415
|
+
mint_knowledge_collection = ContractTransaction(
|
416
416
|
contract="Paranet",
|
417
|
-
function="
|
417
|
+
function="mintKnowledgeCollection",
|
418
418
|
args={
|
419
|
-
"
|
420
|
-
"
|
419
|
+
"paranetKCStorageContract": Address,
|
420
|
+
"paranetKCTokenId": int,
|
421
421
|
"knowledgeAssetArgs": dict,
|
422
422
|
},
|
423
423
|
)
|
dkg/utils/node_request.py
CHANGED
@@ -94,12 +94,12 @@ class NodeRequest:
|
|
94
94
|
|
95
95
|
query = NodeCall(
|
96
96
|
method=HTTPRequestMethod.POST,
|
97
|
-
path="query",
|
97
|
+
path="direct-query",
|
98
98
|
data={
|
99
99
|
"query": str,
|
100
100
|
"type": str,
|
101
101
|
"repository": str | None,
|
102
|
-
"
|
102
|
+
"paranetUAL": str | None,
|
103
103
|
},
|
104
104
|
)
|
105
105
|
|
@@ -24,12 +24,12 @@ dkg/managers/manager.py,sha256=2fGwzppJR33d3VPRHgZIvlBbcrb5P99_J7BdfaaOSYM,2640
|
|
24
24
|
dkg/method.py,sha256=HG_mI6CXxKznLAN561G2Gqtijm3eliHV6vPxAvz-dGs,5521
|
25
25
|
dkg/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
26
26
|
dkg/modules/asset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
27
|
-
dkg/modules/asset/asset.py,sha256=
|
28
|
-
dkg/modules/asset/async_asset.py,sha256=
|
27
|
+
dkg/modules/asset/asset.py,sha256=0zvLhwuTKg5FHwdEPPdmFNS-NmpMZ7xiM2Us1uT8DPY,27619
|
28
|
+
dkg/modules/asset/async_asset.py,sha256=Gyk4irLro6YHfTEIdwGxaMUalQMg5j9gjrMolokURk8,28204
|
29
29
|
dkg/modules/async_module.py,sha256=iw4DEU8tUvm0CXErQ1LZ8qGcNMQJmvGhu0poHjoKPaI,2629
|
30
30
|
dkg/modules/graph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
31
|
-
dkg/modules/graph/async_graph.py,sha256=
|
32
|
-
dkg/modules/graph/graph.py,sha256=
|
31
|
+
dkg/modules/graph/async_graph.py,sha256=DZqgJRRwLLgBNEc3vEYrqaOKqNJA0o_vSvuk-lPY0eY,4162
|
32
|
+
dkg/modules/graph/graph.py,sha256=2ISaZKHRTBq0RHdGqy8E2NKh1kM9v8VeuHm-cUqHNYc,3259
|
33
33
|
dkg/modules/module.py,sha256=_lK4iFgThXNSD_dhM6ZgDrDJdxsRjZgIHGQLLXzOW4s,2575
|
34
34
|
dkg/modules/network/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
35
|
dkg/modules/network/network.py,sha256=a5P9bjbiBVyOaz_Pwycx1IljhgHsE4DM9n2faCIeZtc,2191
|
@@ -37,7 +37,7 @@ dkg/modules/node/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
37
37
|
dkg/modules/node/async_node.py,sha256=95UgF8mJCCM7kI3vtViKaJQm70Kf75TAfd2zv8m13h0,1617
|
38
38
|
dkg/modules/node/node.py,sha256=dWHVFfwkOVsCzaP47Slk46i6Dbuvfx8Dloav1hkGqjc,1495
|
39
39
|
dkg/modules/paranet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
40
|
-
dkg/modules/paranet/paranet.py,sha256=
|
40
|
+
dkg/modules/paranet/paranet.py,sha256=YulI-sP65sOlBYyUVbA008JByvy-bqnOnWt7vXsf5Kk,26959
|
41
41
|
dkg/providers/__init__.py,sha256=mOHuyl44mpuLnXv920CJ1lsbSTlxNLCwK4xXeQsfv3s,251
|
42
42
|
dkg/providers/blockchain/__init__.py,sha256=Vg5XQ9Fw5m0CQvpMTH5atgPIKKcnknX9peShsmOOtGg,158
|
43
43
|
dkg/providers/blockchain/async_blockchain.py,sha256=c32RaNP7Qpo7aqP7ZVigkRiKKhb1B57Y4pwItzs9Md0,8766
|
@@ -49,9 +49,9 @@ dkg/providers/node/base_node_http.py,sha256=CCkVwyr_iQKCbknVmEpUDXZlQb8C-Z5ndqQd
|
|
49
49
|
dkg/providers/node/node_http.py,sha256=pWrsUC8WZoNrAfLPoMH6wkoHi42jyoKYFid2Pf_meoI,2412
|
50
50
|
dkg/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
51
51
|
dkg/services/blockchain_services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
52
|
-
dkg/services/blockchain_services/async_blockchain_service.py,sha256=
|
53
|
-
dkg/services/blockchain_services/blockchain_service.py,sha256=
|
54
|
-
dkg/services/input_service.py,sha256=
|
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
55
|
dkg/services/node_services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
56
|
dkg/services/node_services/async_node_service.py,sha256=AGwpEIbL6HbqcL1Y8FjIwNynQyvvhQaBZdwZtu9X-BQ,5478
|
57
57
|
dkg/services/node_services/node_service.py,sha256=gqCm-PXB0dWwqWw6OxD3AZ3oiS-z6dhxG_l4LDXv3OA,4811
|
@@ -65,18 +65,18 @@ dkg/types/generics.py,sha256=9ZGFGWp4eN_5bGaWF6COtFMh228ZghjU1CmUok0fuds,907
|
|
65
65
|
dkg/types/network.py,sha256=htNZ00Vrb-wMcR4_XI1tn_-0uVjDqcW7hhdHyjbyq1g,838
|
66
66
|
dkg/types/rdf.py,sha256=qm1l7pqTLWBlSmaoQhmBg2qKS16eF83IcOnxuYPdiv8,851
|
67
67
|
dkg/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
68
|
-
dkg/utils/blockchain_request.py,sha256=
|
68
|
+
dkg/utils/blockchain_request.py,sha256=CMz3sNRhfmYirm0-VUK2HTpbRfgc1gtG2SoPIuRYKb0,12446
|
69
69
|
dkg/utils/decorators.py,sha256=uUh0xI9wv1gE6JF44eYEfUPGSFEBLR6Ua5D9Dhc3s10,1566
|
70
70
|
dkg/utils/knowledge_asset_tools.py,sha256=uehOshzaYg03hDU8RSIV_k2mNaASVgqyyErzj6GwBxw,81
|
71
71
|
dkg/utils/knowledge_collection_tools.py,sha256=pQKGlSbdsdwfe2y0S1zh9c8MEqi_lrsdBf4U_Q6-V2E,7424
|
72
72
|
dkg/utils/merkle.py,sha256=924kloBAnCXydteVtWMj_QLP5CRJf2GbHMZ-lbIK0KE,5141
|
73
73
|
dkg/utils/metadata.py,sha256=483OroYwGNfZ_cCXfH3-xUrZgiR4mjjo9iU_Ie5RYRs,1658
|
74
|
-
dkg/utils/node_request.py,sha256=
|
74
|
+
dkg/utils/node_request.py,sha256=wppF8Xf0RkuAAcURcYgyjGAdMsXm0L5YEem8wFGE2g8,6517
|
75
75
|
dkg/utils/rdf.py,sha256=AvlcxZEeP58UbaGGvPX_ss69O-tgTXOJ9y9COZqVgkw,2973
|
76
76
|
dkg/utils/string_transformations.py,sha256=eR51fVwTF9QKxEqXo9_1Bfw_k8iQajdXD6rKuTvhs70,972
|
77
77
|
dkg/utils/ual.py,sha256=g7PFyS4Sbwjmwkq-eB20uRULEC2wlPGZr31BVQjs5OQ,1569
|
78
|
-
dkg-8.0.
|
79
|
-
dkg-8.0.
|
80
|
-
dkg-8.0.
|
81
|
-
dkg-8.0.
|
82
|
-
dkg-8.0.
|
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,,
|
File without changes
|
File without changes
|
File without changes
|