JunTingLin / shopee_crawler

1 stars 0 forks source link

不好意思又來問了 #4

Open arguskao opened 1 year ago

arguskao commented 1 year ago

我有一個問題,弄了三天,實在不曉得原因,才來問你

因為我是用Mac,如果按照您原來程式,他產生csv會在根目錄 於是我就想說給他指定到其他目錄 結果就抓到的資料只有10幾筆,真是很怪

pd.DataFrame(dic).to_csv(output_path + filename, encoding=ecode, index=False)

pd.DataFrame(dic).to_csv(keyword + '_商品資料.csv', encoding=ecode, index=False)

上面是我改的...

謝謝您!

JunTingLin commented 1 year ago

看起來你是想將檔案保存到絕對路徑 可以參考

import os

# 定義你的絕對路徑
path = "/Users/your_username/myfolder"  # Mac 
path = "C:\\myfolder"  # Windows 

# 使用 os.path.join 確保路徑的正確性
full_path = os.path.join(path, keyword + '_商品資料.csv')

pd.DataFrame(dic).to_csv(full_path, encoding=ecode, index=False)

至於你說的抓到僅有10筆,有點奇怪,因為文件保存的位置不應該影響到你的資料筆數。

推薦你試試 ChatGPT,它回答問題很詳盡,可能會幫到你哦!~~