Skip to content
This repository has been archived by the owner on Jan 28, 2024. It is now read-only.

heroku/python-telex

Repository files navigation

Python Telex

This library is a port of minitel for Python. The Client interface is identical:

from telex.client import Client

client = Client('https://user:pass@telex.heroku.com')

client.notify_app(app_uuid='...', title='Your database is on fire!', body='Sorry.')
client.notify_user(user_uuid='...', title='Here is your invoice', body='You owe us 65k.')
client.add_followup(message_uuid='...', body='here are even more details')

Running Tests

cd ./tests
pip install -r requirements.txt
PYTHONPATH=..:$PYTHONPATH ./test_telex.py