mirror of
https://github.com/kristoferssolo/SScom-scraper.git
synced 2025-10-21 19:50:33 +00:00
26 lines
580 B
Markdown
26 lines
580 B
Markdown
# Webscraper
|
|
Webscraper of SS marketplace for GPUs
|
|
|
|
## Installation
|
|
```sh
|
|
git clone https://github.com/kristoferssolo/SScom-scraper
|
|
cd SScom-scraper
|
|
```
|
|
Or download [zip](https://github.com/kristoferssolo/SScom-scraper/archive/refs/heads/master.zip).
|
|
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/)
|