File size: 307 Bytes
87d1cec
33f5d2c
 
87d1cec
 
 
33f5d2c
 
87d1cec
 
 
1
2
3
4
5
6
7
8
9
10
11
12
# shopify_orders.py
import shopify

def fetch_recent_orders(limit=5):
    orders = shopify.Order.find(limit=limit, status="any")
    return [o.to_dict() for o in orders]

if __name__ == "__main__":
    recent = fetch_recent_orders()
    for o in recent:
        print(o["id"], o["email"], o["total_price"])