Python package for interacting with a Meshcentral server instance
Project description
meshctrl
Library for remotely interacting with a MeshCentral server instance
Installation
pip install libmeshctrl
Usage
This module is implemented as a primarily asynchronous library (asyncio), mostly through the Session class. Because the library is asynchronous, you must wait for it to be initialized before interacting with the server. The preferred way to do this is to use the async context manager pattern:
import meshctrl
async with meshctrl.Session(url, **options):
print(await session.list_users())
...
However, if you prefer to instantiate the object yourself, you can simply use the initialized property:
session = meshctrl.Session(url, **options)
await session.initialized.wait()
Note that, in this case, you will be rquired to clean up tho session using its close method.
Session Parameters
url: URL of meshcentral server to connect to. Should start with either “ws://” or “wss://”.
options: optional parameters. Described at Read the Docs
API
API is documented in the API Docs
Note
This project has been set up using PyScaffold 4.6. For details and usage information on PyScaffold see https://pyscaffold.org/.
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 libmeshctrl-1.3.1.tar.gz.
File metadata
- Download URL: libmeshctrl-1.3.1.tar.gz
- Upload date:
- Size: 167.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f014821af411499085b96d02871f9bcd07d71b6e8bed266cf5a843cc7b365b7d
|
|
| MD5 |
20b4385c1367c1e196d224224d6b2eff
|
|
| BLAKE2b-256 |
6f2310ba4ab47e0518eca93acb3f29c39b9852a77976452d624532cac75c6945
|
File details
Details for the file libmeshctrl-1.3.1-py3-none-any.whl.
File metadata
- Download URL: libmeshctrl-1.3.1-py3-none-any.whl
- Upload date:
- Size: 40.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33d4c0b829bd48f3a606c4791e010106eb9fc630892d5d023b09f0a1c0580537
|
|
| MD5 |
93463191a19250dfaaf8fb0cd5ad108c
|
|
| BLAKE2b-256 |
28ba98e0eb3135329a2abfdeda562f8bde8552caa0d0ebd3c0f2c7583c40da86
|