A library to access Prestashop Web Service from Python.
Project description
# Prestapyt
prestapyt is a library for Python to interact with the PrestaShop's Web Service API.
Learn more about the PrestaShop Web Service from the [Official Prestashop Documentation].
prestapyt is a direct port of the PrestaShop PHP API Client, PSWebServiceLibrary.php
Similar to PSWebServiceLibrary.php, prestapyt is a thin wrapper around the PrestaShop Web Service:
it takes care of making the call to your PrestaShop instance's Web Service,
supports the Web Service's HTTP-based CRUD operations (handling any errors)
and then returns the XML ready for you to work with in Python
(as well as prestasac if you work with scala).
## Installation
The easiest way to install prestapyt (needs setuptools):
easy_install prestapyt
Or, better, using pip:
pip install prestapyt
If you do not have setuptools, download prestapyt as a .tar.gz or .zip from
[Prestapyt Source Archives], untar it and run:
python setup.py install
## Usage
### Message as xml
```python
from prestapyt import PrestaShopWebService
prestashop = PrestaShopWebService('http://localhost:8080/api', WEBSERVICE_KEY)
```
### Message as dictionary
```python
from prestapyt import PrestaShopWebServiceDict
prestashop = PrestaShopWebServiceDict('http://localhost:8080/api', WEBSERVICE_KEY)
```
### Search
#### Get all addresses
```python
prestashop.get('addresses') # will return the same xml message than
prestashop.search('addresses')
```
Note: when using PrestaShopWebServiceDict ``prestashop.search('addresses')`` will return a list of ids.
#### Search with filters
```python
prestashop.search('addresses', options={'limit': 10})
prestashop.search('addresses', options={'display': '[firstname,lastname]', 'filter[id]': '[1|5]'})
```
For additional info [check reference for the options](http://doc.prestashop.com/display/PS14/Cheat+Sheet_+Concepts+Outlined+in+this+Tutorial).
#### Get single address
```python
prestashop.get('addresses', resource_id=1) or prestashop.get('addresses/1')
```
returns ElementTree (PrestaShopWebService) or dict (PrestaShopWebServiceDict).
You can use the full api URL
```python
prestashop.get('http://localhost:8080/api/addresses/1')
```
#### Head request
```python
prestashop.head('addresses')
```
### Manipulate records
#### Delete
```python
prestashop.delete('addresses', resource_ids=4)
```
#### Delete many records at once
```python
prestashop.delete('addresses', resource_ids=[5,6])
```
#### Add record
```python
prestashop.add('addresses', xml)
```
#### Edit record
```python
prestashop.edit('addresses', xml)
```
#### Get model blank xml schema
```python
prestashop.get('addresses', options={'schema': 'blank'})
```
#### Add product image
```python
file_name = 'sample.jpg'
fd = io.open(file_name, "rb")
content = fd.read()
fd.close()
prestashop.add('/images/products/123', files=[('image', file_name, content)])
```
## API Documentation
Documentation for the PrestaShop Web Service can be found on the
PrestaShop wiki: [Using the REST webservice]
## Credits:
Thanks to Prestashop SA for their PHP API Client PSWebServiceLibrary.php
Thanks to Alex Dean for his port of PSWebServiceLibrary.php
to the Scala language, [prestasac] from which I also inspired my library.
## Copyright and License
prestapyt is copyright (c) 2012 Guewen Baconnier
prestapyt is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of
the License, or (at your option) any later version.
prestapyt is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public
License along with prestapyt. If not, see [GNU licenses](http://www.gnu.org/licenses/).
[Official Prestashop Documentation]: http://doc.prestashop.com/display/PS14/Using+the+REST+webservice
[Using the REST webservice]: http://doc.prestashop.com/display/PS14/Using+the+REST+webservice
[Prestapyt Source Archives]: https://github.com/guewen/prestapyt/downloads
[prestasac]: https://github.com/orderly/prestashop-scala-client
prestapyt is a library for Python to interact with the PrestaShop's Web Service API.
Learn more about the PrestaShop Web Service from the [Official Prestashop Documentation].
prestapyt is a direct port of the PrestaShop PHP API Client, PSWebServiceLibrary.php
Similar to PSWebServiceLibrary.php, prestapyt is a thin wrapper around the PrestaShop Web Service:
it takes care of making the call to your PrestaShop instance's Web Service,
supports the Web Service's HTTP-based CRUD operations (handling any errors)
and then returns the XML ready for you to work with in Python
(as well as prestasac if you work with scala).
## Installation
The easiest way to install prestapyt (needs setuptools):
easy_install prestapyt
Or, better, using pip:
pip install prestapyt
If you do not have setuptools, download prestapyt as a .tar.gz or .zip from
[Prestapyt Source Archives], untar it and run:
python setup.py install
## Usage
### Message as xml
```python
from prestapyt import PrestaShopWebService
prestashop = PrestaShopWebService('http://localhost:8080/api', WEBSERVICE_KEY)
```
### Message as dictionary
```python
from prestapyt import PrestaShopWebServiceDict
prestashop = PrestaShopWebServiceDict('http://localhost:8080/api', WEBSERVICE_KEY)
```
### Search
#### Get all addresses
```python
prestashop.get('addresses') # will return the same xml message than
prestashop.search('addresses')
```
Note: when using PrestaShopWebServiceDict ``prestashop.search('addresses')`` will return a list of ids.
#### Search with filters
```python
prestashop.search('addresses', options={'limit': 10})
prestashop.search('addresses', options={'display': '[firstname,lastname]', 'filter[id]': '[1|5]'})
```
For additional info [check reference for the options](http://doc.prestashop.com/display/PS14/Cheat+Sheet_+Concepts+Outlined+in+this+Tutorial).
#### Get single address
```python
prestashop.get('addresses', resource_id=1) or prestashop.get('addresses/1')
```
returns ElementTree (PrestaShopWebService) or dict (PrestaShopWebServiceDict).
You can use the full api URL
```python
prestashop.get('http://localhost:8080/api/addresses/1')
```
#### Head request
```python
prestashop.head('addresses')
```
### Manipulate records
#### Delete
```python
prestashop.delete('addresses', resource_ids=4)
```
#### Delete many records at once
```python
prestashop.delete('addresses', resource_ids=[5,6])
```
#### Add record
```python
prestashop.add('addresses', xml)
```
#### Edit record
```python
prestashop.edit('addresses', xml)
```
#### Get model blank xml schema
```python
prestashop.get('addresses', options={'schema': 'blank'})
```
#### Add product image
```python
file_name = 'sample.jpg'
fd = io.open(file_name, "rb")
content = fd.read()
fd.close()
prestashop.add('/images/products/123', files=[('image', file_name, content)])
```
## API Documentation
Documentation for the PrestaShop Web Service can be found on the
PrestaShop wiki: [Using the REST webservice]
## Credits:
Thanks to Prestashop SA for their PHP API Client PSWebServiceLibrary.php
Thanks to Alex Dean for his port of PSWebServiceLibrary.php
to the Scala language, [prestasac] from which I also inspired my library.
## Copyright and License
prestapyt is copyright (c) 2012 Guewen Baconnier
prestapyt is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of
the License, or (at your option) any later version.
prestapyt is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public
License along with prestapyt. If not, see [GNU licenses](http://www.gnu.org/licenses/).
[Official Prestashop Documentation]: http://doc.prestashop.com/display/PS14/Using+the+REST+webservice
[Using the REST webservice]: http://doc.prestashop.com/display/PS14/Using+the+REST+webservice
[Prestapyt Source Archives]: https://github.com/guewen/prestapyt/downloads
[prestasac]: https://github.com/orderly/prestashop-scala-client
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 Distributions
prestapyt-0.9.0-py2.7.egg
(28.9 kB
view details)
prestapyt-0.9.0-py2-none-any.whl
(17.1 kB
view details)
File details
Details for the file prestapyt-0.9.0.linux-x86_64.tar.gz
.
File metadata
- Download URL: prestapyt-0.9.0.linux-x86_64.tar.gz
- Upload date:
- Size: 23.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c5a1dc92fc96dcb20214c5207d4724cf0b2a3429c03e16194c6d765d3be1e550 |
|
MD5 | f618c7cd51c4a92b249c86ce531db776 |
|
BLAKE2b-256 | fc9e139909e0ae34b92bd19d8d2a95acc84a408ae0d156109fb7b2712f7a96e8 |
File details
Details for the file prestapyt-0.9.0-py2.7.egg
.
File metadata
- Download URL: prestapyt-0.9.0-py2.7.egg
- Upload date:
- Size: 28.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a1cf71cfb34dd435ce5d710d674f39e2110197b131fd8ed1ba6021723858ed9 |
|
MD5 | e8ad3a6e1d731e2432daae01987abaf5 |
|
BLAKE2b-256 | b1d90e4ea6b1d530c06f4eef6b4eaa128868f0f4c9cd21f14f1c2613c2045afc |
File details
Details for the file prestapyt-0.9.0-py2-none-any.whl
.
File metadata
- Download URL: prestapyt-0.9.0-py2-none-any.whl
- Upload date:
- Size: 17.1 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 318adbabd0574e7346434a756f3cd26097b07f536ecf14e2e9748891f7ac1bc4 |
|
MD5 | 46e59178f6244031f45d8db832165577 |
|
BLAKE2b-256 | a5de03d0afae1233f34d38352d30e45ee741d6caadb4da6b43cfe5023d974db0 |