UNKNOWN
Project description
Ticketscloud API Client – A python client for API ticketscloud.ru
Docs are available at https://ticketscloud.readthedocs.org/. Pull requests with documentation enhancements and/or fixes are awesome and most welcome.
Requirements
python >= 2.6
Installation
Ticketscloud API Client could be installed using pip:
pip install ticketscloud
Usage
Initialize API client
You should have api_token, from the TC service.
from ticketscloud import TCClient client = TCClient(api_token='your-token-here')
Customize options
client = TCClient( access_token='your-token-here', api_root='http://ticketscloud.ru', api_version='v1', loglevel='info', user_agent='TC-Client', )
Working with TC API
The client has nice and easy syntax. Just have a look:
# Get events list GET http://ticketscloud.ru/v1/resources/events client.api.resources.events() client.api.resources.events['event-id']() # Get deals list with scheme GET http://ticketscloud.ru/v1/resources/deals client.api.resources.deals(**{ 'fields-schema': 'id,event{id},term{extra}', 'status': 'accepted'}) # Create a new order POST http://ticketscloud.ru/v1/resources/orders/ client.api.resources.orders.post(total=..., event=...) # Update a order PATCH http://ticketscloud.ru/v1/resources/orders/<id> client.api.resources.orders['id'].patch(status=) # You could also use a 'getitem' syntax for resources client.api.resources['custom-resource-name'](**params) # Same there client.api['resources']['custom-resource-name'](**params) # And etc. I hope you make decision how the client works :)
Context manager
You could temporary redefine the client settings in context:
with client.ctx(loglevel='DEBUG'): # More logging here client.api.resources.deals(**params)
Raw api request
You could make a raw request to TC API:
client.request(method='GET', url='v1/resources/events', data={...})
Have a nice codding!
Bug tracker
If you have any suggestions, bug reports or annoyances please report them to the issue tracker at https://github.com/Dipsomaniac/ticketscloud/issues
Contributing
Development of starter happens at github: https://github.com/Dipsomaniac/ticketscloud
Contributors
klen (Kirill Klenov)
License
Licensed under a BSD license.
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.
Source Distribution
Built Distribution
File details
Details for the file ticketscloud-0.6.4.tar.gz
.
File metadata
- Download URL: ticketscloud-0.6.4.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f179e40443d49f5b10660f50328f16ebeb367605b9e39ee38a175767e0f0f7b6 |
|
MD5 | b52e43a7386a9575ea57cd5588d20306 |
|
BLAKE2b-256 | 5f67a8bf37d13c973737c690276e466e0f993b74e8b0b0707306fdeb1ede43ed |
File details
Details for the file ticketscloud-0.6.4-py2.py3-none-any.whl
.
File metadata
- Download URL: ticketscloud-0.6.4-py2.py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3a11658abfbadcd190f5de0f8ddce2f4d259b340f653ef43bc9c964afe0617f |
|
MD5 | 5d646f40823099d92f27d5158cbcebee |
|
BLAKE2b-256 | eb9017c3d6caba1ad734b77617ec82e0ae980f11bce90c61e5a2ed8f0a4f37c6 |