Hello everyone,
I own a shopify store and I currently am manually exporting all the order data to excel . I talked to a friend who also runs a store and he told me that through API I could update all the order data to excel without needing to manually do so. I am experienced in python 2.7 and am comfortable enough with it to read almost any python code and decipher what it's purpose is. I am currently stuck in situation where IDK how to communicate to the shopify API and been pulling my hairs out for days due to frustration.
I did alot of research through these forums and elsewhere and found a line of code that seems to do what I want but when I compile it in my notepad++ it says there is no module named shopify installed. Ive been trying to find a proper module for shopify with zero luck.
import shopify
shop_url = "https://shopify-website.myshopify.com/admin/themes/203128836/editor"
shopify.ShopifyResource.set_site(shop_url)
shop = shopify.Shop.current()
#How many orders & list them
order = shopify.Order()
num = order.count()
print num
success = order.find()
print success
This is the line of code I found in these forums and from what I can see it does part of what I want to eventually accomplish. Does anyone know a guide to communicating to Shopifys API via python? I have been learning many new terms (since ive never worked with API before) and jsut recently took an API course in code academy for python so i have a general idea of how API's work but I simply cannot find a way to communicate to shopify via python.
Any help/input would be appreciated , I would hire a developer but I cannot afford one yet.