https://github.com/gingeleski/soccer-draws-bettor
Soccer betting system for Nitrogen Sports.
https://github.com/gingeleski/soccer-draws-bettor
gambling python sports-betting sports-betting-formulas
Last synced: 2 months ago
JSON representation
Soccer betting system for Nitrogen Sports.
- Host: GitHub
- URL: https://github.com/gingeleski/soccer-draws-bettor
- Owner: gingeleski
- Created: 2017-06-04T00:12:52.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-12-26T16:53:10.000Z (over 6 years ago)
- Last Synced: 2025-04-10T05:53:08.460Z (2 months ago)
- Topics: gambling, python, sports-betting, sports-betting-formulas
- Language: Python
- Size: 421 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Soccer Draws Bettor
An autonomous soccer betting system for Nitrogen Sports. At the core is a hypothesis that match draws are disliked and resultingly underestimated.
## Setup
```
# this is setup for windows, adjust for your os appropriatelygit clone --recursive https://github.com/gingeleski/soccers-draws-bettor.git
cd soccers-draws-bettor
virtualenv venv# activate the virtualenv, below is how for powershell
.\venv\scripts\activate.ps1pip install -e nitrogen-sports-api
pip install -r requirements.txtpython soccer_draws_bettor.py
```You'll need to edit the file at `soccer-draws-bettor/modules/SystemParameters.py` to use your Nitrogen Sports username and password. Tweak other parameters as you like.
### Run (fresh start)
This is the default way to run, initializing a clean database, log, and state.
```
# for windows, adjust for your os appropriatelycd soccer-draws-bettor
# activate the virtualenv, below is how for powershell
.\venv\scripts\activate.ps1python .\run.py
```### Run (loading a previous state)
`TODO`
This functionality is not yet implemented. Eventually this should be able to start from a "pickle" (previous state) for the sake of fault tolerance.