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.1.tar.gz (21.6 kB view details)

Uploaded Source

Built Distribution

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

Uploaded Python 2 Python 3

File details

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

File metadata

  • Download URL: brunt-1.1.1.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.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for brunt-1.1.1.tar.gz
Algorithm Hash digest
SHA256 ba72df9df88061064843b6bdac7e4c1b83b6965532a37b32f10c7c6d2bd9b3f3
MD5 a8acb95960202e9300034346c81c7ba0
BLAKE2b-256 e2defb09e9a0194f322b8dc69139fbd7073b4d26d69991c0f60b7d8ca7da8146

See more details on using hashes here.

File details

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

File metadata

  • Download URL: brunt-1.1.1-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.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for brunt-1.1.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 6be8660a396249269d1b835e29829f3fa3ebf6bfe812a63fd65fdd19d94c0539
MD5 4e5943c8f9d1e1dd01abd96816a2d2e7
BLAKE2b-256 61277cacb96351b7bdfa409648af7214a14f4847f5c6cfe0a12af99c66a5cfa1

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