Wrapper for the bol.com API
Project description
A Python wrapper for the bol.com API. Currently rather incomplete, as it offers only those methods required for my own projects so far.
Open API
Instantiate the API:
>>> from bol.openapi.api import OpenAPI
>>> api = OpenAPI('api_key')
Invoke a method:
>>> data = api.catalog.products((['1004004011187773', '1004004011231766'])
JSON data is returned “as is”:
>>> data['products'][0]['ean'] u'0093155141650'
Plaza API
Instantiate the API:
>>> from bol.plaza.api import PlazaAPI
>>> api = PlazaAPI('public_key', 'private_key', test=True)
Invoke a method:
>>> open_orders = api.orders.open()
Fields are derived 1:1 from the bol.com API XML, including CamelCase conventions:
>>> open_orders[0].Buyer.BillingDetails.Streetname 'Billingstraat'
Fields are properly typed:
>>> open_orders[0].Paid
True
>>> open_orders[0].OpenOrderItems[0].TransactionFee
Decimal('19.12')
>>> open_orders[0].DateTimeDropShipper
datetime.datetime(2014, 2, 10, 12, 7, 7)
Access the underlying XML:
>>> from xml.etree import ElementTree >>> ElementTree.tostring(open_orders[0].Buyer.BillingDetails.xml) '<ns0:BillingDetails xmlns:ns0="http://plazaapi.bol.com/services/xsd/plazaapiservice-1.0.xsd"><ns0:SalutationCode>02</ns0:SalutationCode><ns0:FirstName>Jans</ns0:FirstName><ns0:Surname>Janssen</ns0:Surname><ns0:Streetname>Billingstraat</ns0:Streetname><ns0:Housenumber>1</ns0:Housenumber><ns0:HousenumberExtended>a</ns0:HousenumberExtended><ns0:AddressSupplement>Onder de brievanbus huisnummer 1</ns0:AddressSupplement><ns0:ZipCode>5000 ZZ</ns0:ZipCode><ns0:City>Amsterdam</ns0:City><ns0:CountryCode>NL</ns0:CountryCode><ns0:Email>dontemail@me.net</ns0:Email><ns0:Telephone>67890</ns0:Telephone><ns0:Company>Bol.com</ns0:Company></ns0:BillingDetails>'
Running the tests
First, make sure that you have tox installed on your system:
pip install tox
Then, just run the tox:
tox
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
python-bol-api-0.2.0.tar.gz
(4.5 kB
view details)
File details
Details for the file python-bol-api-0.2.0.tar.gz.
File metadata
- Download URL: python-bol-api-0.2.0.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c501174428b5c7029f14386adcb2d8ef2d2232aec00ad6f4bc9ab03b76d5a618
|
|
| MD5 |
4e3991a284c04131e0ac4f944a5b7b0b
|
|
| BLAKE2b-256 |
db77db6125c4ce957479568b2d573197ebb2220da11ab390533cbdae818eb7e0
|