Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gmelodie/heroes_build_scrapper
A Heroes of the Storm build webscrapper
https://github.com/gmelodie/heroes_build_scrapper
game heroes-of-the-storm icy-veins python3 webscraping
Last synced: 25 days ago
JSON representation
A Heroes of the Storm build webscrapper
- Host: GitHub
- URL: https://github.com/gmelodie/heroes_build_scrapper
- Owner: gmelodie
- License: mit
- Created: 2018-10-07T18:22:09.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-20T00:23:06.000Z (over 5 years ago)
- Last Synced: 2024-05-02T03:20:04.918Z (6 months ago)
- Topics: game, heroes-of-the-storm, icy-veins, python3, webscraping
- Language: Python
- Homepage:
- Size: 106 KB
- Stars: 4
- Watchers: 2
- Forks: 15
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# heroes_build_scrapper
`heroes_build_scrapper` is a package designed to scrape character builds for
the [MOBA](https://en.wikipedia.org/wiki/Multiplayer_online_battle_arena)
game [Heroes of the Storm](https://heroesofthestorm.com/en-gb/).All builds are collected from [Icy Veins](https://www.icy-veins.com/).
## Installation
### Pip
You can install `heroes_build_scrapper` from the pip repositories```
pip install heroes_build_scrapper
```### Cloning the repo
In order to install `heroes_build_scrapper` manually you need to clone the repository
and then run the `setup.py` file:```
$ git clone https://[email protected]:LTKills/heroes_build_scrapper.git
$ cd heroes_build_scrapper
$ python setup.py install
```## Usage
Once you have installed the package you are ready to collect some builds. This is
done using the following code:```
>>> import heroes_build_scrapper
>>> heroes_build_scrapper.update_heroes_list()
>>> heroes_build_scrapper.update_all_builds()
```## Contributing
When contributing, add your nick and player tag to the [PLAYERS.md](PLAYERS.md) file.
### Before Changing any Code
- Please do not write any pull requests until an issue has been opened and assigned.
- Please do not write any pull requests for closed issues.
### Before Sending in a PR
- Check that your PR and commits have useful titles that relate to the issue
- Check your spelling and grammar thoroughly
- Have fun and happy open sourcing!