Shopee-crawler
This is a light crawling tool.
High performance.
Easy to use.
Requirement
python>=3.7
Install
git clone https://github.com/lthoangg/shopee-crawler
python/python3 setup.py install
pip install shopee-crawler
How to use
Examples:
from shopee_crawler import Crawler
crawler = Crawler()
crawler.set_origin(origin="shopee.vn")
data = crawler.crawl_by_shop_url(shop_url='shop_url')
data = crawler.crawl_by_cat_url(cat_url='cat_url')
data = crawler.crawl_by_search(keyword='keyword')
data = crawler.crawl_cat_list()
Usage
Test yourself
import time
from shopee_crawler import Crawler
crawler = Crawler()
crawler.set_origin(origin="shopee.vn")
keyword = 'điện thoại samsung'
start = time.time()
data = crawler.crawl_by_search(keyword=keyword)
end = time.time()
print("Time : ",end - start, "seconds")