Tagged Questions
1
vote
2answers
42 views
Python Requests Invalid URL Label error
I'm trying to access Shopify's API which uses a URL format of -
https://apikey:password@hostname/admin/resource.xml
...
0
votes
0answers
26 views
shopify app (python)Uncaught ReferenceError: require is not defined
with the Shopify API for python
i am able to place the script tag in the (client's) store .
Problem is i am having two script tags among one is a Require.js.
store page's source code (client's ...
0
votes
1answer
32 views
how to make this call from shopify ? (GET/POST) python
I have to make this call with Standard shopify API (python)
https://store.myshopify.com/admin/shop.json
what i am getting is :
ipdb> shopify.Shop.current()
shop(2330215)
but :
ipdb> ...
0
votes
1answer
29 views
shopify scripttag does not insert script tag to store
with all the proper authentication :
these are the results :
ipdb> shopify.ScriptTag.find()
[script_tag(347035)]
ipdb> shopify.ScriptTag.get(347035)
{'updated_at': datetime.datetime(2013, 5, ...
0
votes
1answer
22 views
creating a session with shopify API Error : malicious login (Python)
I am tring to get the Shop detais as well as i have to put a script tag in to the store .
Folowing all the standerd API calls i have constructed this :
scope = ["write_products", "read_orders"]
...
0
votes
0answers
26 views
shopify script tag not functional on store
following the proper auth from the standard api calls .
after making the complete authentication
shortname= shopify.Shop.site
shortname=shortname[8:-20]
...
0
votes
2answers
44 views
shopify getting store name to build post url (python)
I am building a Shopify plugin .
(Placing a widget in store with SCRIPT_TAG)
with following the standard APIs given
I have achieved the auth2 setup.
now as the shop owner installs it .
it need to ...
0
votes
1answer
41 views
Python Shopify Script Tag API
Does the ScriptTag API only return all the script tags created by an app?
So if I have an app X, if I use shopify.ScriptTag.find(), will it just return all script tags from app X?
1
vote
2answers
122 views
Replacing html script element sources with regular expression in Python
I'm trying to write a large python/bash script which converts my html/css mockups to Shopify themes.
One step in this process is changing out all the script sources. For instance:
<script ...
0
votes
2answers
68 views
Shopify Python API: How do I add a product to a collection?
I am using the Shopify Python API in an django app to interact with my Shopify Store.
I have a collection - called - best sellers.
I am looking to create a batch update to this collection - that is ...
2
votes
1answer
94 views
Not Receiving a Response from Shopify When Creating a Product Using Python API
I am using the Python API to create a Product with 5 Variants. I have been successful in creating the product in the store, without issue. The problem I have is once the product is created, I do not ...
1
vote
1answer
69 views
Creating a new product with image URL in shopify using its python api
I am looking to automatically publish items to a shopify store from an existing web-app. I need to be able to create items with images to do so. I have been able to create items on shopify via the ...
0
votes
1answer
71 views
How can I use the Shopify python api adapter to pull assets?
Shopify Python API on Github
I am able to get this far and pull in a list of all of the assets, but can't figure out how to actually pull them down from here. Any ideas?
SHOP_NAME = "SHOP-NAME"
...
-2
votes
1answer
78 views
how to create a python script to add/update/get/delete products in Shopify [closed]
I am new in Python and Shopify. How can I create a python script to add/update/get/delete products in Shopify.
2
votes
1answer
108 views
python api - shopify.Asset 404 Error
I am trying to create an asset using the shopify python library but I'm getting a ResourceNotFound exception. The following is a snippet of my code.
asset = shopify.Asset(dict(key=self.key, ...
1
vote
2answers
166 views
Shopify webhook not working when product updated/deleted
Backdrop: Am building a shopify app using a test store provided by shopify. #Python #Django-
Problem: I have setup shopify webhooks for my test store using the python API for the topics ...
0
votes
2answers
175 views
How do I add a metafield to a Shopify Collection using python API?
I am using the shopify Python API. There is only a short tutorial at
http://wiki.shopify.com/Using_the_shopify_python_api
and it doesn't include anything about metafields. I am not sure how I am ...
1
vote
1answer
76 views
Installing a custom app on Test Shop with GAE/Django
I'm having some troubles getting a custom app installed on my test shop using django and app engine. I downloaded the appropriate zip file on github for the app engine project ...
1
vote
1answer
152 views
500 Internal Server Error trying to start session with shopify python api
I'm following the tutorial on https://github.com/Shopify/shopify_python_api but at step 4 I always get an "500 Internal Server Error".
I'm not sure whether I do follow the steps correctly.
After ...
0
votes
2answers
89 views
How is Shop class supposed to be access in line 60 of shopify.Session in the shop method
I am trying to use python shopify api with OAuth2 and working through the api, and
am trying to move the the django auth sample over to oauth rather than legacy (and not use django, I am just ...
2
votes
2answers
142 views
python api - shopify.Variant 404 Error
Trying to create a new Variant using the python lib.
After creating a shopify session I simply try to create a Variant instance as per the docs
session = shopify.Session('<My Url>')
...
1
vote
1answer
152 views
Shopify Python API and textiles inventory
We are a small-scale fair-trade textiles importer and recently made the internal switch to OpenERP for our inventory management. We have two shops on Shopify (in two different languages).
In a longer ...
3
votes
4answers
1k views
Python (Django) Shopify API Client — For a Beginner
I have a requirement to build a client for Shopify's API, building it in Python & Django.
I've never done it before and so I'm wondering if someone might advise on a good starting point for the ...
