An open API service indexing awesome lists of open source software.

https://github.com/guilospanck/dota2-counters

A simple Python webscrapper to gather information of heroes' counters from Dotabuff.
https://github.com/guilospanck/dota2-counters

dota2 python scrapper

Last synced: 7 months ago
JSON representation

A simple Python webscrapper to gather information of heroes' counters from Dotabuff.

Awesome Lists containing this project

README

          

# Dota2Counters
A simple Python webscrapper to gather information of heroes' counters from Dotabuff.

## Instalation
You'll need requests and beautifulsoup4 for it to work.
```bash
pip install requests
```
```bash
pip install beautifulsoup4
```

## How to use
To save counters from all heroes, go to your directory and run
```bash
python3 dotabuff_scrapper
```
Or, to get counters from just one hero, do:
```bash
python3 dotabuff_scrapper heroname
# python3 dotabuff_scrapper zeus

```