Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #shopify console example....
- # pip install ShopifyAPI
- # shopify_api.py add testname
- # shopify_api.py console testname
- shopify.Order().find_first()
- shopify.Order().find('367790333').to_dict()
- >>> shopify.Order().find(status=open)
- [order(367809017), order(367790333)]
- >>> shopify.Order().find(status=open)[1].to_dict()
- ....
- >>> shopify.Order().find(status=all)
- [order(367809017), order(367790333)]
Advertisement
Add Comment
Please, Sign In to add comment