nerva-py 1.0.0__tar.gz → 1.0.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.
- {nerva_py-1.0.0 → nerva_py-1.0.1}/PKG-INFO +1 -1
- {nerva_py-1.0.0 → nerva_py-1.0.1}/nerva/__init__.py +1 -1
- {nerva_py-1.0.0 → nerva_py-1.0.1}/nerva/daemon.py +3 -3
- {nerva_py-1.0.0 → nerva_py-1.0.1}/pyproject.toml +1 -1
- {nerva_py-1.0.0 → nerva_py-1.0.1}/.github/FUNDING.yml +0 -0
- {nerva_py-1.0.0 → nerva_py-1.0.1}/.github/workflows/build.yml +0 -0
- {nerva_py-1.0.0 → nerva_py-1.0.1}/.github/workflows/publish.yml +0 -0
- {nerva_py-1.0.0 → nerva_py-1.0.1}/.github/workflows/ruff.yml +0 -0
- {nerva_py-1.0.0 → nerva_py-1.0.1}/.gitignore +0 -0
- {nerva_py-1.0.0 → nerva_py-1.0.1}/.pre-commit-config.yaml +0 -0
- {nerva_py-1.0.0 → nerva_py-1.0.1}/.python-version +0 -0
- {nerva_py-1.0.0 → nerva_py-1.0.1}/LICENSE +0 -0
- {nerva_py-1.0.0 → nerva_py-1.0.1}/Makefile +0 -0
- {nerva_py-1.0.0 → nerva_py-1.0.1}/README.md +0 -0
- {nerva_py-1.0.0 → nerva_py-1.0.1}/nerva/__main__.py +0 -0
- {nerva_py-1.0.0 → nerva_py-1.0.1}/nerva/utils.py +0 -0
- {nerva_py-1.0.0 → nerva_py-1.0.1}/nerva/wallet.py +0 -0
- {nerva_py-1.0.0 → nerva_py-1.0.1}/uv.lock +0 -0
|
@@ -4,10 +4,10 @@ from typing import Any, Dict, List, Optional
|
|
|
4
4
|
|
|
5
5
|
import aiohttp
|
|
6
6
|
|
|
7
|
-
__all__ = ["
|
|
7
|
+
__all__ = ["DaemonRPC", "DaemonLegacy"]
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
class
|
|
10
|
+
class DaemonRPC:
|
|
11
11
|
"""
|
|
12
12
|
A class to interact with the Nerva daemon's JSON-RPC interface.
|
|
13
13
|
|
|
@@ -634,7 +634,7 @@ class DaemonJSONRPC:
|
|
|
634
634
|
return await self._request("add_peer", {"host": host})
|
|
635
635
|
|
|
636
636
|
|
|
637
|
-
class
|
|
637
|
+
class DaemonLegacy:
|
|
638
638
|
"""
|
|
639
639
|
A class to interact with the Nerva daemon's independent endpoint methods.
|
|
640
640
|
|
|
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
|