vrpc 3.0.1__tar.gz → 3.0.2__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.
- {vrpc-3.0.1/vrpc.egg-info → vrpc-3.0.2}/PKG-INFO +6 -6
- {vrpc-3.0.1 → vrpc-3.0.2}/README.md +5 -5
- {vrpc-3.0.1 → vrpc-3.0.2}/pyproject.toml +1 -1
- {vrpc-3.0.1 → vrpc-3.0.2/vrpc.egg-info}/PKG-INFO +6 -6
- {vrpc-3.0.1 → vrpc-3.0.2}/LICENSE +0 -0
- {vrpc-3.0.1 → vrpc-3.0.2}/setup.cfg +0 -0
- {vrpc-3.0.1 → vrpc-3.0.2}/vrpc/__init__.py +0 -0
- {vrpc-3.0.1 → vrpc-3.0.2}/vrpc/adapter.py +0 -0
- {vrpc-3.0.1 → vrpc-3.0.2}/vrpc/agent.py +0 -0
- {vrpc-3.0.1 → vrpc-3.0.2}/vrpc/client.py +0 -0
- {vrpc-3.0.1 → vrpc-3.0.2}/vrpc/public.py +0 -0
- {vrpc-3.0.1 → vrpc-3.0.2}/vrpc.egg-info/SOURCES.txt +0 -0
- {vrpc-3.0.1 → vrpc-3.0.2}/vrpc.egg-info/dependency_links.txt +0 -0
- {vrpc-3.0.1 → vrpc-3.0.2}/vrpc.egg-info/requires.txt +0 -0
- {vrpc-3.0.1 → vrpc-3.0.2}/vrpc.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: vrpc
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.2
|
|
4
4
|
Summary: Asynchronous remote procedure calls for Python over MQTT
|
|
5
5
|
Author-email: "Dr. Burkhard C. Heisen" <burkhard.heisen@heisenware.com>
|
|
6
6
|
License: MIT License
|
|
@@ -53,13 +53,13 @@ Requires-Dist: pytest-asyncio; extra == "test"
|
|
|
53
53
|
Requires-Dist: pytest-mock; extra == "test"
|
|
54
54
|
Dynamic: license-file
|
|
55
55
|
|
|
56
|
-
# vrpc
|
|
56
|
+
# vrpc
|
|
57
57
|
|
|
58
58
|
> **Variadic Remote Procedure Calls for Python**
|
|
59
59
|
|
|
60
|
-
`vrpc
|
|
60
|
+
`vrpc` is an asynchronous, event-driven Remote Procedure Call (RPC) framework for Python. It allows you to seamlessly expose standard Python classes and functions over an MQTT message broker, making them instantly callable from anywhere in the world.
|
|
61
61
|
|
|
62
|
-
By leveraging MQTT and Python's `asyncio`, `vrpc
|
|
62
|
+
By leveraging MQTT and Python's `asyncio`, `vrpc` bypasses NATs, firewalls, and complex networking setups, allowing for bi-directional communication, dynamic object instantiation, and remote continuous event streaming.
|
|
63
63
|
|
|
64
64
|
It is 100% protocol-compatible with the [Node.js / JS `vrpc` implementation](https://github.com/heisenware/vrpc).
|
|
65
65
|
|
|
@@ -73,10 +73,10 @@ It is 100% protocol-compatible with the [Node.js / JS `vrpc` implementation](htt
|
|
|
73
73
|
|
|
74
74
|
## 📦 Installation
|
|
75
75
|
|
|
76
|
-
Since `vrpc
|
|
76
|
+
Since `vrpc` is modern Python package (PEP 621), you can install it directly via pip:
|
|
77
77
|
|
|
78
78
|
```bash
|
|
79
|
-
pip install vrpc
|
|
79
|
+
pip install vrpc
|
|
80
80
|
```
|
|
81
81
|
|
|
82
82
|
_Requirements: Python 3.8+_
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# vrpc
|
|
1
|
+
# vrpc
|
|
2
2
|
|
|
3
3
|
> **Variadic Remote Procedure Calls for Python**
|
|
4
4
|
|
|
5
|
-
`vrpc
|
|
5
|
+
`vrpc` is an asynchronous, event-driven Remote Procedure Call (RPC) framework for Python. It allows you to seamlessly expose standard Python classes and functions over an MQTT message broker, making them instantly callable from anywhere in the world.
|
|
6
6
|
|
|
7
|
-
By leveraging MQTT and Python's `asyncio`, `vrpc
|
|
7
|
+
By leveraging MQTT and Python's `asyncio`, `vrpc` bypasses NATs, firewalls, and complex networking setups, allowing for bi-directional communication, dynamic object instantiation, and remote continuous event streaming.
|
|
8
8
|
|
|
9
9
|
It is 100% protocol-compatible with the [Node.js / JS `vrpc` implementation](https://github.com/heisenware/vrpc).
|
|
10
10
|
|
|
@@ -18,10 +18,10 @@ It is 100% protocol-compatible with the [Node.js / JS `vrpc` implementation](htt
|
|
|
18
18
|
|
|
19
19
|
## 📦 Installation
|
|
20
20
|
|
|
21
|
-
Since `vrpc
|
|
21
|
+
Since `vrpc` is modern Python package (PEP 621), you can install it directly via pip:
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
pip install vrpc
|
|
24
|
+
pip install vrpc
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
_Requirements: Python 3.8+_
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "vrpc"
|
|
7
|
-
version = "3.0.
|
|
7
|
+
version = "3.0.2"
|
|
8
8
|
description = "Asynchronous remote procedure calls for Python over MQTT"
|
|
9
9
|
readme = {file = "README.md", content-type = "text/markdown"}
|
|
10
10
|
requires-python = ">=3.8"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: vrpc
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.2
|
|
4
4
|
Summary: Asynchronous remote procedure calls for Python over MQTT
|
|
5
5
|
Author-email: "Dr. Burkhard C. Heisen" <burkhard.heisen@heisenware.com>
|
|
6
6
|
License: MIT License
|
|
@@ -53,13 +53,13 @@ Requires-Dist: pytest-asyncio; extra == "test"
|
|
|
53
53
|
Requires-Dist: pytest-mock; extra == "test"
|
|
54
54
|
Dynamic: license-file
|
|
55
55
|
|
|
56
|
-
# vrpc
|
|
56
|
+
# vrpc
|
|
57
57
|
|
|
58
58
|
> **Variadic Remote Procedure Calls for Python**
|
|
59
59
|
|
|
60
|
-
`vrpc
|
|
60
|
+
`vrpc` is an asynchronous, event-driven Remote Procedure Call (RPC) framework for Python. It allows you to seamlessly expose standard Python classes and functions over an MQTT message broker, making them instantly callable from anywhere in the world.
|
|
61
61
|
|
|
62
|
-
By leveraging MQTT and Python's `asyncio`, `vrpc
|
|
62
|
+
By leveraging MQTT and Python's `asyncio`, `vrpc` bypasses NATs, firewalls, and complex networking setups, allowing for bi-directional communication, dynamic object instantiation, and remote continuous event streaming.
|
|
63
63
|
|
|
64
64
|
It is 100% protocol-compatible with the [Node.js / JS `vrpc` implementation](https://github.com/heisenware/vrpc).
|
|
65
65
|
|
|
@@ -73,10 +73,10 @@ It is 100% protocol-compatible with the [Node.js / JS `vrpc` implementation](htt
|
|
|
73
73
|
|
|
74
74
|
## 📦 Installation
|
|
75
75
|
|
|
76
|
-
Since `vrpc
|
|
76
|
+
Since `vrpc` is modern Python package (PEP 621), you can install it directly via pip:
|
|
77
77
|
|
|
78
78
|
```bash
|
|
79
|
-
pip install vrpc
|
|
79
|
+
pip install vrpc
|
|
80
80
|
```
|
|
81
81
|
|
|
82
82
|
_Requirements: Python 3.8+_
|
|
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
|