Skip to main content

Unofficial python SDK for Brunt, this package allows you to control your Brunt devices from code.

Project description

PyPI version

Brunt

Unofficial python SDK for Brunt, based on the NPM version here https://github.com/MattJeanes/brunt-api

This package allows you to control your Brunt devices from code.

Sample script

This script shows the usage and how to use the output of the calls, off course if you already know the name of your device you do not need to call getThings.

This script checks the current position of a blind called 'Blind' and if that is 100 (fully open), sets it to 90 and vice versa.

from brunt import BruntClient, BruntClientAsync

bapi = BruntClient() 
# bapi = BruntClientAsync()
print("Calling Brunt")

bapi.login('username', 'password')
# await bapi.async_login('username', 'password')
print("    Logged in, gettings things.")

things = bapi.get_things()['things']
# things = await bapi.async_get_things()['things']
print(f"    { len(things) } thing(s) found.")

state = bapi.get_state(thing='Blind')['thing']
# state = await bapi.async_get_state(thing='Blind')['thing']
print(f"    Current status of { state['NAME'] } is position { state['currentPosition'] }")
newPos = 100
if int(state['currentPosition']) == 100:
    newPos = 90
print(f"    Setting { state['NAME'] } to position { newPos }")

res = bapi.change_request_position(newPos, thing='Blind')
# res = await bapi.async_change_request_position(newPos, thing='Blind')
print('    Success!' if res else '    Fail!')
    

BruntClient & BruntClientAsync

from brunt import BruntClient
BruntClient(username, password)

or 

from brunt import BruntClientAsync
BruntClientAsync(username, password, session)

Constructor for the API wrapper.

If you supply username and password here, they are stored, but not used. Auto logging in then does work when calling another method, no explicit login needed.

:param username: the username of your Brunt account :param password: the password of your Brunt account

Async only :param session: aiohttp.ClientSession object

login

BruntClient.login(self, username, password)
await BruntClient.async_login(self, username, password)

Login method using username and password

:param username: the username of your Brunt account :param password: the password of your Brunt account

:return: True if successful :raises: errors from Requests call

get_things

BruntClient.get_things(self)
await BruntClient.async_get_things(self)

Get the things registered in your account

:return: List of Things :raises: errors from Requests call

get_state

BruntClient.get_state(self, thing="Blind")
await BruntClient.async_get_state(self, thing="Blind")

Get the state of a thing, by NAME or thingUri

:param thing: a string with the NAME of the thing, which is then checked against the names of all the things. :param thingUri: Uri (string) of the thing you are getting the state from, not checked against getThings.

:return: a Thing. :raises: ValueError if the requested thing does not exists. NameError if not logged in. SyntaxError when not exactly one of the params is given.

change_request_position

BruntClient.change_request_position(self, request_position, thing="Blind")
await BruntClient.async_change_request_position(self, request_position, thing="Blind")

Changes the position of the thing. Internally calls the changeKey method with key set to requestPosition and value set to request_position

:param request_position: The new position for the slide (0-100) :param thing: a string with the name of the thing, which is then checked against the names of all the things. :param thingUri: Uri (string) of the thing you are getting the state from, not checked against getThings.

:return: a dict with 'result'. :raises: ValueError if the requested thing does not exists or the position is not between 0 and 100. NameError if not logged in. SyntaxError when not exactly one of the params is given.

change_key

BruntClient.change_key(self, key="requestPosition", value="100", thing="Blind")
await BruntClient.async_change_key(self, key="requestPosition", value="100", thing="Blind")

Change a variable of the thing by supplying the key and value. Mostly included for future additions.

:param key: The key of the value you want to change :param value: The new value :param thing: a string with the name of the thing, which is then checked using getThings. :param thingUri: Uri (string) of the thing you are getting the state from, not checked against getThings. :return: a dict with 'result'. :raises: ValueError if the requested thing does not exists or the position is not between 0 and 100. NameError if not logged in. SyntaxError when not exactly one of the params is given.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

brunt-1.1.0.tar.gz (21.6 kB view details)

Uploaded Source

Built Distribution

brunt-1.1.0-py2.py3-none-any.whl (11.5 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file brunt-1.1.0.tar.gz.

File metadata

  • Download URL: brunt-1.1.0.tar.gz
  • Upload date:
  • Size: 21.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for brunt-1.1.0.tar.gz
Algorithm Hash digest
SHA256 e3e3700a44f7db3253b327cf80ea035b699b8018d1bde1f0fad00c277bc5b436
MD5 3773947df32d2d7a626fb660bad877a6
BLAKE2b-256 f64bf06372e5e20458f975641fd9bf2e6f4d4282a8501a7dc93e1d12e38d4d96

See more details on using hashes here.

File details

Details for the file brunt-1.1.0-py2.py3-none-any.whl.

File metadata

  • Download URL: brunt-1.1.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 11.5 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for brunt-1.1.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 bed76bd1dec2e3167cd43e272de387603cfaf55081700b29ae9b9961746ccde4
MD5 cb426714c676713b622cf0a8c23e1e17
BLAKE2b-256 69928a0e0395d4a88b8d5b4231364c77c756cbe41ba97528fa9f3c30cd858b6c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page