Skip to main content

billomat.com API client

Project description

Python client for the [billomat.com](http://www.billomat.com) [API](http://www.billomat.com/en/api/)
=====================================================================================================

The syntax of the client is inspired by the great [Django ORM](https://docs.djangoproject.com/en/dev/topics/db/queries/).

Example usage
--------------
```python
from billomat import models
from billomat.base import Client

Client.api_name = 'apiname'
Client.api_key = 'apikey'

articles = models.Article.objects.all()
for article in articles:
print unicode(article.title)
articles = articles.filter(title='Awesome')
for article in articles:
print unicode(article.title)

article = models.Article.objects.get(article_number=2)
article.title = u'This is an awesome article'
article.save()

article = models.Article.objects.create(
title=u'This is an awesome article',
)
article.delete()
```

License
--------
[MIT](https://github.com/lociii/billomat/blob/master/LICENSE.md)

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

billomat-0.1.5.tar.gz (9.4 kB view details)

Uploaded Source

File details

Details for the file billomat-0.1.5.tar.gz.

File metadata

  • Download URL: billomat-0.1.5.tar.gz
  • Upload date:
  • Size: 9.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for billomat-0.1.5.tar.gz
Algorithm Hash digest
SHA256 25af525413264dc2bc46d1b4e8862094ead1d0c07d346abf76f6b8fe2ea5c3ac
MD5 3569616405e1cb19cfa36cdf02706521
BLAKE2b-256 ea1fb5dbf852e2a3052368aea73c26372016bb2e0a1c23a20328e024655165e4

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