Vestaboard client library
Project description
Vesta
Vesta is a Vestaboard client library for Python. It provides an API client and character encoding utilities.
Installation
Vesta requires Python 3.6 or later. It can be installed via PyPI:
$ python -m pip install vesta
It's only runtime dependency is the Requests library, which will be installed automatically.
Usage
API Client
The Client
type is initialized with an API key and secret:
>>> import vesta
>>> client = vesta.Client(API_KEY, API_SECRET)
Then, you can make API calls using one of the provided methods:
>>> client.get_viewer()
{'_id': ..., '_created': '1629081092624', 'type': 'installation', 'installation': {'_id': ...}}
>>> client.get_subscriptions()
[{'_id': ..., '_created': '1629081092624', 'title': None, 'icon': None, 'installation': {'_id': ..., 'installable': {'_id': ...}}, 'boards': [{'_id': ...}]}]
>>> client.post_message(SUBSCRIPTION_ID, "Hello, World")
{'message': {'id': ..., 'text': 'Hello, World', 'created': '1635801572442'}}
Character Encoding
All Vestaboard characters (letters, numbers, symbols, and colors) are encoded as integer character codes. Vesta includes some useful routines for working with these character codes.
encode(s)
encodes a string as a list of character codes. In addition to
printable characters, the string can contain character code sequences inside
curly braces, such as {5}
or {65}
.
>>> vesta.encode("{67} Hello, World {68}")
[67, 61, 8, 5, 12, 12, 15, 55, 61, 23, 15, 18, 12, 4, 61, 68]
encode_row(s)
encodes a string as a row of character codes. It builds on
encode(s)
by providing alignment control.
>>> vesta.encode_row("{67} Hello, World {68}", align="center")
[0, 0, 0, 67, 61, 8, 5, 12, 12, 15, 55, 61, 23, 15, 18, 12, 4, 61, 68, 0, 0, 0]
Lastly, pprint()
can be used to pretty-print encoded characters to the
console, which can be useful during development.
>>> vesta.pprint([0, 0, 0, 67, 61, 8, 5, 12, 12, 15, 55, 61, 23, 15, 18, 12, 4, 61, 68, 0, 0, 0])
| | | |◼︎| |H|E|L|L|O|,| |W|O|R|L|D| |◼︎| | | |
Message Posting
Messages can be posted as either text strings or two-dimensional arrays of character codes representing the exact positions of characters on the board.
If text is specified, lines will be centered horizontally and vertically if possible. Character codes will be inferred for alphanumeric and punctuation, or can be explicitly specified in-line in the message with curly braces containing the character code.
License
This project is licensed under the terms of the MIT license.
Copyright (c) 2021 Jon Parise jon@indelible.org
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
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.