PythonCdiscount is a small wrapper around the Cdiscount Products API.
PythonCdiscount requires Requests, an elegant and simple HTTP library for Python, built for human beings.
You also need a Cdiscount API key, which you can get from here : https://dev.cdiscount.com
pip install pycdiscount
from pycdiscount import PyCdiscount
app = PyCdiscount(api_key="YOUR API KEY")
searchresult = app.search("Iphone")
All results are returned in JSON format. If you want to show them in the console, I suggest you use the pprint module.
Feel free to hit me up at the following:
GitHub: https://github.com/wblondel
Twitter: http://twitter.com/wgblondel
Email: [email protected]