Python (Django) Shopify API Client - for beginners

I have a requirement to build a client for Shopify API by creating it in Python and Django.

I have never done this before, and so I wonder if anyone can recommend a good starting point for the models and methods needed to do this kind of work.

Here is a link to a link to a search link

Thanks.

+5
source share
4 answers

, Python API, , Python, urllib2 httplib, Python. , .

httplib Python:

http://docs.python.org/library/httplib.html

, , GET HTTP-, , POST- , Content-Type, . API- .

XML XML-. , XML Python. , xml.dom.minidom. API, , , , XML- ( ) . ( API). minidom . :

http://docs.python.org/library/xml.dom.minidom.html

, , , XML-, URL- URL- Shopify REST, XML, API .

- , HTTPS 443 HTTP 80.

+4

, Python Django, Shopify, Google App Engine.

Shopify wiki, http://wiki.shopify.com/Using_the_shopify_python_api. , , API- Shopify Python, , https://github.com/Shopify/shopify_python_api.

, , , . , Shopify API API Python Shopify.

+2
+1

, , :

http://bitbucket.org/jespern/django-piston/wiki/Home

Although this is the exact opposite of what you want to do (Piston is for creating APIs, and you want to use APIs), it can give you some hints on common topics.

I could mention, of course, reading obvious sources such as the Shopify developer forum:

http://forums.shopify.com/categories/9

But I think you already had that in mind :)

Greetings

N.

0
source

All Articles