A Python client for LAN communications with Tewke devices
Project description
pytewke
A Python client for local CoAP communications with Tewke devices
This library is under development
Usage
Install
pip install pytewke
Examples
Discovering Scenes and Targets
import asyncio
from pprint import pprint
from pytewke import Tap
from pytewke.error import PyTewkeDiscoveryError
async def test_device():
"""Test Tap Panel device."""
# Replace with your device's IP address
host = "w.x.y.z"
tap = Tap(host)
try:
await tap.discover()
except PyTewkeDiscoveryError as err:
print(f"Error connecting to {host}, error: {repr(err)}")
return
print("Targets:")
targets = await tap.get_targets()
pprint(targets)
print("Scenes:")
scenes = await tap.get_scenes()
pprint(scenes)
if __name__ == "__main__":
asyncio.run(test_device())
Example script
The repository includes an example script to quickly try it out.
Uncomment the relevant lines in example.py to run different examples like
discovering resources, reading config, observing state, etc.
python3 example.py
Note: if you have not installed pytewke but have cloned the library instead,
you will need to add the src folder to your PYTHONPATH:
PYTHONPATH="${PYTHONPATH}:/path/to/pytewke/src" python3 example.py
Development
Requirements
- aiocoap
- cbor2
- pydantic
Note: Python versions older than 3.12 have not been tested.
Development requirements
Run the following command inside this folder
pip install .[dev]
Note: You will need to add the src folder to your PYTHONPATH when using
the example script or while running tests.
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 pytewke-0.4.1.tar.gz.
File metadata
- Download URL: pytewke-0.4.1.tar.gz
- Upload date:
- Size: 26.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a683c995ab15df5ae747449a0c36729f28753eae0a9287a6a6af9254c37400b
|
|
| MD5 |
537e0a5636a112800281924dbaef5db1
|
|
| BLAKE2b-256 |
117be050a545f18c08f69c8425032c2e554ff5ca0757ee09118da3130df4e235
|
File details
Details for the file pytewke-0.4.1-py3-none-any.whl.
File metadata
- Download URL: pytewke-0.4.1-py3-none-any.whl
- Upload date:
- Size: 21.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1bccc5777955d6e1987296564977263a0b213a846538e23bd7aca9c112ef5797
|
|
| MD5 |
e33746d72a65b3fba2522fed9528e9be
|
|
| BLAKE2b-256 |
86519e2727c72ea41cc1ad487f2af9b30cf36f409bd2edfd253b2fa322c02c47
|