Compare commits

..

2 Commits
0.0.2 ... 0.0.3

Author SHA1 Message Date
Josiah Baldwin
4ed332ca4c Fixed readme link 2024-12-02 11:52:52 -08:00
Josiah Baldwin
5f0f6a0ff9 Changed to RST README only 2024-12-02 11:47:45 -08:00
2 changed files with 49 additions and 6 deletions

View File

@@ -1,2 +0,0 @@
# meshctrl
Libmeshctrl implementation in python

View File

@@ -29,15 +29,60 @@
|
=============
meshctrl
=============
========
Library for remotely interacting with a
`MeshCentral <https://meshcentral.com/>`__ server instance
Libmeshctrl implementation in python
Installation
------------
pip install meshctrl
Usage
-----
This module is implemented as a primarily asynchronous library
(asyncio), mostly through the ``Session`` class, which is exported as
default. 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:
.. code:: python
import meshctrl
async with meshctrl.session.Session(url, **options):
print(await session.list_users())
...
However, if you prefer to instantiate the object yourself, you can
simply use the ``initialized`` property:
.. code:: python
session = meshctrl.session.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 <https://pylibmeshctrl.readthedocs.io/en/latest/api/meshctrl.html#module-meshctrl.session>`__
API
---
API is documented in the `API
Docs <https://pylibmeshctrl.readthedocs.io/en/latest/api/meshctrl.html>`__
This is a library for interacting with a Mesh Central instance programatically. Written in python.
.. _pyscaffold-notes: