So erstellen Sie Kunden mithilfe der Python -API von Shopify
custo = shopify.Customer()
custo.first_name = "andres"
custo.last_name = "cepeda"
custo.addresses = [{"address1": "123 Oak st", "city": "Ottawa", "phone": "9876543210"}]
custo.save()
Victorious Vicuña