Metadata-Version: 2.1
Name: shopee-crawler
Version: 0.1.2
Summary: Crawler for shopee
Home-page: https://github.com/lthoangg/shopee-crawler
Author: Lê Trọng Hoàng
Author-email: letronghoang00@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Shopee-crawler
This is a crawl tool.

## Requirement
```env
python>=3.7
```

## Install

* Using `setup.py`
```
git clone https://github.com/lthoangg/shopee-crawler
python/python3 setup.py install
```

* Using `pip`
```
pip install shopee-crawler
```

## How to use
* Crawl by shop url
```python
from shopee_crawler import crawl_by_shop_url

data = crawl_by_shop_url(shop_url='shop_url')
# print(data)
```

* Crawl by category url
```python
from shopee_crawler import crawl_by_cat_url

data = crawl_by_cat_url(cat_url='cat_url')
# print(data)
```

* Crawl by keyword (search)
```python
from shopee_crawler import crawl_by_search

data = crawl_by_search(keyword='keyword')
# print(data)
```

