UNKNOWN
Project description
TiendaNube API Python Client.
Install
Just pip install tiendanube.
Usage
Query list of products:
> api_key = 'API_KEY' > from tiendanube import NubeClient > client = NubeClient(api_key) > store = client.get_store(1) > [p.name.es for p in store.products.list()] [u'Mi primer producto', u'Probando publicaci\xf3n', u'hola', u'Producto de Prueba']
Query one product in particular:
> api_key = 'API_KEY' > from tiendanube import NubeClient > client = NubeClient(api_key) > store = client.get_store(1) > p = store.products.get(911) > p.name.es u'Mi primer producto'
Query images for a given product:
> api_key = 'API_KEY' > from tiendanube import NubeClient > client = NubeClient(api_key) > store = client.get_store(1) > p = store.products.get(911) > [i.src for i in p.images.list()] [u'http://example.com/image.jpg']
Development
Running tests:
$ python -m tests.run
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
tiendanube-1.1.tar.gz
(3.8 kB
view details)
File details
Details for the file tiendanube-1.1.tar.gz
.
File metadata
- Download URL: tiendanube-1.1.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 089f53ac3512bcd74fe07744786250ba390338e3fc274f842ddfe50505aa77f3 |
|
MD5 | d2224b0ae113d4a3f54171bd25e0b208 |
|
BLAKE2b-256 | 4d6d99d42414b7e64c8039398204d96c8e37ab66bb76b2be02b0084223008aa7 |