Connor's Remote Events (RE) is a simple library that allows the end-user to call python functions from another server.
Project description
Connor's Remote Events (RE)
Connor's Remote Events (RE) is a simple library that allows the end-user to call python functions from another server. This is highly powerful if you are coding an application that offloads processes to another server.
If you want to offload automation tasks to another device, this is the package to use. It is extremely reliable and robust for minimum-effort python automation.
To install: pip install remote-events
First example
main.py
"""
Main Example Script for RemoteFunctions
This script demonstrates remote function execution over HTTP using the RemoteFunctions class.
It operates in two modes:
1. Server mode: Registers functions and starts a Flask server to handle remote calls.
2. Client mode: Connects to the server, retrieves available functions, and invokes them remotely.
All communications are serialized with pickle for reliable data exchange.
Usage:
To run as a server:
python main.py server
To run as a client:
python main.py client
Note: Ensure the server is running before starting the client.
"""
from remote_functions import RemoteFunctions
from typing import Any
import sys
# Initialize RemoteFunctions with password authentication.
# set is_queue=True for a queue-based call system, to act similarly as a mutex
rf = RemoteFunctions(password="Whoop!-", is_queue=False)
@rf.as_remote()
def a(b: Any) -> Any:
"""Return the input value."""
return b
@rf.as_remote()
def add(x: float, y: float) -> float:
"""Return the sum of x and y."""
return x + y
if __name__ == "__main__":
if len(sys.argv) > 1 and sys.argv[1] == "server":
# Start the server (blocking call) on 0.0.0.0:5001.
rf.start_server(host="0.0.0.0", port=5001)
elif len(sys.argv) > 1 and sys.argv[1] == "client":
# Connect to the server running on localhost:5001.
rf.connect_to_server("localhost", 5001)
print("Invoking function 'a' with argument 'Hello World!'")
result = a("Hello World!")
print("Result:", result)
print("Invoking function 'add' with arguments 1 and 3")
result = add(1, 3)
print("Result:", result)
else:
print("Usage: python main.py [server|client]")
In two terminals:
-
First terminal, run the server with
python main.py server -
Second terminal, run the client with
python main.py client
Second example
The purpose is for you to create your own script, like my_functions.py and replicate the python script to the server and client.
my_functions.py
from remote_functions import RemoteFunctions
from typing import Any
# Initialize RemoteFunctions
# set is_queue=True for a queue-based call system, to act similarly as a mutex
rf = RemoteFunctions(is_queue=False)
@rf.as_remote()
def a(b: Any) -> Any:
"""Return the input value."""
return b
@rf.as_remote()
def add(x: float, y: float) -> float:
"""Return the sum of x and y."""
return x + y
server.py
You will run this on the server-side:
import my_functions
if __name__ == "__main__":
my_functions.rf.set_password("Whoop!-")
my_functions.start_server(host="0.0.0.0", port=5001)
client.py
You will run this on your local device:
import my_functions
if __name__ == "__main__":
my_functions.rf.set_password("Whoop!-")
my_functions.connect_to_server("localhost", 5001)
print("Invoking function 'a' with argument 'Hello World!'")
result = my_functions.a("Hello World!")
print("Result:", result)
print("Invoking function 'add' with arguments 1 and 3")
result = my_functions.add(1, 3)
print("Result:", result)
In two terminals:
-
First terminal, run the server with
python server.py -
Second terminal, run the client with
python client.py
Last note
You can set SSL context via
rf.set_ssl_context("cert.pem", "key.pem")
More information about creating FLASK SSL contexts here
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file remote_events-0.2.46.tar.gz.
File metadata
- Download URL: remote_events-0.2.46.tar.gz
- Upload date:
- Size: 9.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
661c08606ffd34b3db163c346acf663e90cb6916590bf220bb4a735b315c946d
|
|
| MD5 |
c22e67586fb5ea86d39d919c8b5418cb
|
|
| BLAKE2b-256 |
466e5c8bf3754a8a020dcd511c7264d01b2c2c32c02974f93afd3d12c5be58e7
|
File details
Details for the file remote_events-0.2.46-py3-none-any.whl.
File metadata
- Download URL: remote_events-0.2.46-py3-none-any.whl
- Upload date:
- Size: 10.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35947037dae75a00ce3df3f7fbaae2b60f3b149f9e33756733c4cc682e4f6f08
|
|
| MD5 |
c6ba0ca92797d6bc43f6a31f24e326d7
|
|
| BLAKE2b-256 |
c0d1f72115f2234fb492ae46b0b544361f60e3c3705bc21e7c29e868168e4ace
|