The Python client library for the Tuneup Technology App.
This library allows you to interact with the customers, tickets, inventory, and locations objects without needing to do the hard work of binding your calls and data to endpoints. Simply call an action such as Customer.create
and pass some data and let the library do the rest.
# Install client library
pip3 install tuneuptechnology
# Install locally
make install
# Get Makefile help
make help
import os
import tuneuptechnology
API_EMAIL = os.getenv('API_EMAIL')
API_KEY = os.getenv('API_KEY')
client = tuneuptechnology.Client(API_EMAIL, API_KEY)
customer = client.Customers.create(
{
'firstname': 'Jake',
'lastname': 'Peralta',
'email': '[email protected]',
'phone': '8015551234',
'user_id': 1,
'notes': 'Believes he is a good detective.',
'location_id': 2,
}
)
print(customer)
Other examples can be found in the /examples
directory. Alter according to your needs.
[email protected] API_KEY=123... venv/bin/python create_customer.py
Up-to-date API documentation can be found here.
# Lint the project
make lint
# Run tests
[email protected] API_KEY=123... make test
# Run test coverage
[email protected] API_KEY=123... make coverage
As a separate PR from the feature/bug PR:
- Update the Version constant in
client.py
&setup.py
- Update
CHANGELOG
- Create a GitHub tag with proper Python version semantics (eg: v1.0.0)
- Publish to PyPI