noodlesloves e70bb3c0b2 更新 'README.md' | 2 years ago | |
---|---|---|
utility | 2 years ago | |
README.md | 2 years ago | |
shop_item_crawler.py | 2 years ago |
Tabel 與 DB連線 資訊存放於 utility/connect.py
內
python shop_item_crawler.py [keyword] [port] [proxyport]
*後面可都不帶參數,程式會自動去 TABLE_AREACODES
抓取 expand = 0 的資料出來做查詢
TABLE_AREACODES 內欄位資料:
num | kw | expand |
---|---|---|
0 | 寢具 | 0 |
1 | 寢具 | 0 |
*如果後面有帶keyword,程式將會執行 check_area_code
function,將 num 和 kw 的組合寫入 TABLE_AREACODES
,之後程式還是從此 table 內抓取 expand = 0 的資料出來做查詢
for i in range(368):
此368代表會從 TABLE_AREACODES 內抓 取368次 expand = 0 的欄位資料
每個經緯度將會透過以下程式進行擾動,總共擾動5
次 ( in Line 373)
latitude_ = float(latitude) + (random.randint(-999,999) / 10000)
longitude_ = float(longitude) + (random.randint(-999,999) / 10000)