koi-net 1.0.0b5__tar.gz → 1.0.0b6__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.
Potentially problematic release.
This version of koi-net might be problematic. Click here for more details.
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/PKG-INFO +2 -2
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/README.md +1 -1
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/pyproject.toml +1 -1
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/src/koi_net/core.py +2 -2
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/.gitignore +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/LICENSE +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/examples/basic_coordinator_node.py +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/examples/basic_partial_node.py +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/examples/full_node_template.py +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/examples/partial_node_template.py +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/requirements.txt +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/src/koi_net/__init__.py +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/src/koi_net/identity.py +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/src/koi_net/network/__init__.py +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/src/koi_net/network/graph.py +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/src/koi_net/network/interface.py +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/src/koi_net/network/request_handler.py +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/src/koi_net/network/response_handler.py +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/src/koi_net/processor/__init__.py +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/src/koi_net/processor/default_handlers.py +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/src/koi_net/processor/handler.py +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/src/koi_net/processor/interface.py +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/src/koi_net/processor/knowledge_object.py +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/src/koi_net/protocol/__init__.py +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/src/koi_net/protocol/api_models.py +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/src/koi_net/protocol/consts.py +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/src/koi_net/protocol/edge.py +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/src/koi_net/protocol/event.py +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/src/koi_net/protocol/helpers.py +0 -0
- {koi_net-1.0.0b5 → koi_net-1.0.0b6}/src/koi_net/protocol/node.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: koi-net
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.0b6
|
|
4
4
|
Summary: Implementation of KOI-net protocol in Python
|
|
5
5
|
Project-URL: Homepage, https://github.com/BlockScience/koi-net/
|
|
6
6
|
Author-email: Luke Miller <luke@block.science>
|
|
@@ -506,5 +506,5 @@ python -m build
|
|
|
506
506
|
```
|
|
507
507
|
Push new package build to PyPI:
|
|
508
508
|
```shell
|
|
509
|
-
python -m twine upload
|
|
509
|
+
python -m twine upload dist/*
|
|
510
510
|
```
|
|
@@ -29,7 +29,7 @@ class NodeInterface:
|
|
|
29
29
|
network: NetworkInterface | None = None,
|
|
30
30
|
processor: ProcessorInterface | None = None
|
|
31
31
|
):
|
|
32
|
-
self.cache = cache or Cache(directory_path=f"
|
|
32
|
+
self.cache = cache or Cache(directory_path=f".cache")
|
|
33
33
|
self.identity = NodeIdentity(
|
|
34
34
|
name=name,
|
|
35
35
|
profile=profile,
|
|
@@ -38,7 +38,7 @@ class NodeInterface:
|
|
|
38
38
|
)
|
|
39
39
|
self.first_contact = first_contact
|
|
40
40
|
self.network = network or NetworkInterface(
|
|
41
|
-
file_path=
|
|
41
|
+
file_path="event_queues.json",
|
|
42
42
|
first_contact=self.first_contact,
|
|
43
43
|
cache=self.cache,
|
|
44
44
|
identity=self.identity
|
|
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
|
|
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
|