Skip to main content

UNKNOWN

Project description

Ticketscloud API Client – A python client for API ticketscloud.ru

Build Status https://pypip.in/d/ticketscloud/badge.png https://badge.fury.io/py/ticketscloud.png

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ticketscloud-0.4.1.tar.gz (6.3 kB view details)

Uploaded Source

Built Distribution

ticketscloud-0.4.1-py2.py3-none-any.whl (7.2 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file ticketscloud-0.4.1.tar.gz.

File metadata

File hashes

Hashes for ticketscloud-0.4.1.tar.gz
Algorithm Hash digest
SHA256 ddf04959e06b6f6b983cf064b441e3b5c6a7a4a87b39c4958b827f2f2d81a12d
MD5 2f389bdb65c1656ab1ede6f2b42e9b70
BLAKE2b-256 e3c0a4269dc48817041ac1b61e26f3bdd029d2f911872956c17c53fb22110f70

See more details on using hashes here.

File details

Details for the file ticketscloud-0.4.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for ticketscloud-0.4.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 328d2c78234a5a18fe83c370f44f84a9fff3cb86c030bf12941f5c50e43c5313
MD5 0979f79eb4edf3546572eead9499f400
BLAKE2b-256 48eb3fc4d3f2d3918a1d94513dd226603e23c87c31e4b63a5bbfc34fd44f93f4

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