0

我使用 Python-Scrapy 和 Scrapinghub。

在我的蜘蛛中,我应该读写一个文件

data_directory  = 'tmp'
csv_magasin = data_directory+"/"+current_script+"_"+current_date+"-shop_url.csv"

if not os.path.exists(data_directory):
    os.makedirs(data_directory)
try:
    os.remove('products.db')
except:
    pass
f = open('products.db', 'w')
f.write(t.content)
f.close
con = sqlite3.connect("products.db")
c = con.cursor()

当我在我的服务器上运行我的蜘蛛时,它可以工作,但是在 Scrapinghub 上我无法读取或写入任何文件。

我阅读了文档 ,但没有找到如何在Scrapinghub中写入文件。我的问题是在 Scrapinghub 上写文件的正确方法是什么

4

0 回答 0