how to create customer using python api of shopify
custo = shopify.Customer()
custo.first_name = "andres"
custo.last_name = "cepeda"
custo.addresses = [{"address1": "123 Oak st", "city": "Ottawa", "phone": "9876543210"}]
custo.save()