Python module to talk to Evil Genius Labs devices.
Project description
pyevilgenius
Asynchronous library to control devices by Evil Genius Labs
Requires Python 3.8+ and uses asyncio and aiohttp.
import asyncio
from pprint import pprint
import aiohttp
from pyevilgenius import EvilGeniusDevice
HOST = "192.168.1.113"
async def main():
async with aiohttp.ClientSession() as session:
await run(session)
async def run(websession):
device = pyevilgenius.EvilGeniusDevice(host, websession)
data = await client.get_data()
pprint(device.details)
await device.set_path_value('power', '1')
asyncio.run(main())
Testing locally
python3 example.py <host>
Timeouts
Pyevilgenius does not specify any timeouts for any requests. You will need to specify them in your own code. We recommend the async_timeout package:
import async_timeout
with async_timeout.timeout(10):
devices = await hub.get_device_list()
Contribution guidelines
Object hierarchy and property/method names should match the Evil Genius Device APIs.
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 pyevilgenius-2.0.0.tar.gz.
File metadata
- Download URL: pyevilgenius-2.0.0.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0dcf3bf5c6347650efd9bd3c13f37650439c181736fba34ae7228023ea9035ae
|
|
| MD5 |
4c2fcc257c9cf2b312dde9913ae4a8f5
|
|
| BLAKE2b-256 |
7052be37508c166b91447c0c30e855a3d790dc01eef27e10435bdb0e8f52c761
|
File details
Details for the file pyevilgenius-2.0.0-py3-none-any.whl.
File metadata
- Download URL: pyevilgenius-2.0.0-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbc63cbf5f3ede3985df364d4c3a6af76010bd5876e554b68619f64a0d150ea1
|
|
| MD5 |
8dc50fb5b11789cfa096324f8195ee0d
|
|
| BLAKE2b-256 |
162c7548aa00c38d1f6d151a9adaca2df5278ef350322b82cfcad80c5c2f4526
|