gpt4 book ai didi

python - 使用其 python api 在 shopify 中创建带有图像 URL 的新产品

转载 作者:太空狗 更新时间:2023-10-30 01:02:50 36 4
gpt4 key购买 nike

我希望从现有的网络应用程序自动将商品发布到 shopify 商店。为此,我需要能够创建带有图像的项目。我已经能够通过 python api 在 shopify 上创建项目 - 但我不确定如何添加图像。这是我现在拥有的:

all_products = Product.objects.all()[0:7]
for p in all_products:
images=[]
image={}
image["src"] = p.image.url

new_product = shopify.Product()
new_product.product_type = p.category()
new_product.body_html = p.description
new_product.title = p.caption
new_product.vendor = "atisundar"
new_product.images = images
new_product.save()

如何向其中添加图像?

new_product.images 似乎不起作用。

非常感谢任何帮助。 :-)

谢谢。

最佳答案

我想通了。 :-)

    new_product = shopify.Product()
new_product.product_type = p.category()
new_product.body_html = p.description
new_product.title = "atisundar "+ p.caption
new_product.vendor = "atisundar"

image1 = shopify.Image()
image1.src = p.image.url()

new_product.images = [image1]
new_product.save()

关于python - 使用其 python api 在 shopify 中创建带有图像 URL 的新产品,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13170092/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com