如何使用漂亮的汤从网站下载图像?

时间:2019-01-24 02:46:40

标签: python image web-scraping beautifulsoup

我想从网站保存图像,是否可以在Python中使用漂亮的汤类库。我们需要枕头库吗?还是可以使用开放的CV将它们转换为numpy数组并处理tem?

1 个答案:

答案 0 :(得分:1)

如果不提供任何细节,则任何人只能做一个一般性的回答。但是是可能的。

我想您会使用beautifulsoup提取图片的网址,然后使用该网址提取并保存图片。所以像这样:

# if category name already created
@category = Category.find_by_title("Bread Type")
@category.ingredients.build(name: 'Glutein-free Bread', price: 0.2)
@category.ingredients.build(name: 'other_item_name', price: 0.0)

# if it's new name category
@category = Category.create("Other Type")
# you can continue same as above