Added readme

This commit is contained in:
Kristofers Solo 2022-09-11 19:42:19 +03:00
parent 72d61d538a
commit 58491923d0
2 changed files with 24 additions and 2 deletions

24
readme.md Normal file
View File

@ -0,0 +1,24 @@
# Webscraper
Webscraper of SS marketplace for GPUs
## Installation
```sh
git clone https://github.com/kristoferssolo/SScom-scraper
cd SScom-scraper
```
Create `config.json` file with following content:
```json
{
"API_TOKEN": "<TOKEN_FROM_BOT_FATHER>"
}
```
Install required libraries:
```sh
pip install -r requirements.txt
python main.py
```
## Libraries used
- [Aiogram](https://github.com/aiogram/aiogram)
- [Beautiful Soup](https://www.crummy.com/software/BeautifulSoup/)

View File

@ -5,13 +5,11 @@ async-timeout==4.0.2
attrs==22.1.0 attrs==22.1.0
Babel==2.9.1 Babel==2.9.1
beautifulsoup4==4.11.1 beautifulsoup4==4.11.1
bs4==0.0.1
certifi==2022.6.15.1 certifi==2022.6.15.1
charset-normalizer==2.1.1 charset-normalizer==2.1.1
frozenlist==1.3.1 frozenlist==1.3.1
idna==3.3 idna==3.3
multidict==6.0.2 multidict==6.0.2
numpy==1.23.2
python-dateutil==2.8.2 python-dateutil==2.8.2
pytz==2022.2.1 pytz==2022.2.1
requests==2.28.1 requests==2.28.1