mirror of
https://gh.wpcy.net/https://github.com/SoloSynth1/wordpress-scraper.git
synced 2026-04-29 07:11:07 +08:00
19 lines
933 B
Python
19 lines
933 B
Python
from legacy.crawler import crawler
|
|
import os
|
|
|
|
url = "https://securityledger.com"
|
|
output_dir = os.path.join('.', 'data', 'securityledger.com')
|
|
headers = {
|
|
'Accept':'application/json, text/javascript, */*; q=0.01',
|
|
'Accept-Encoding':'*',
|
|
'Accept-Language':'zh-CN,zh;q=0.8',
|
|
'Cookie': '__cfduid=df69a10a216bf3a67efa57115a197bbda1540799737; __sharethis_cookie_test__=1; __unam=7639673-166bed22de8-519e7a93-1; __qca=P0-1129919385-1540799738659; _ga=GA1.2.963329934.1540799739; _gid=GA1.2.1250730364.1540799739',
|
|
'Connection':'keep-alive',
|
|
'User-Agent':'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/70.0.3538.67 Chrome/70.0.3538.67 Safari/537.36',
|
|
'X-Requested-With':'XMLHttpRequest'
|
|
}
|
|
|
|
if __name__ == "__main__":
|
|
from legacy import common_crawl
|
|
wpc = crawler.WordPressCrawler(url, headers, output_dir)
|
|
common_crawl(wpc)
|