📜  如何使用 shopify 的 python api 创建客户 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:12.602000             🧑  作者: Mango

代码示例1
custo = shopify.Customer()
      custo.first_name = "andres"
      custo.last_name = "cepeda"
      custo.addresses = [{"address1": "123 Oak st", "city": "Ottawa", "phone": "9876543210"}]
      custo.save()