https://github.com/gmemstr/tfbots
Calculates estimated values of various TF2 trading site bots.
https://github.com/gmemstr/tfbots
Last synced: 5 months ago
JSON representation
Calculates estimated values of various TF2 trading site bots.
- Host: GitHub
- URL: https://github.com/gmemstr/tfbots
- Owner: gmemstr
- Created: 2016-10-05T02:06:58.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-11-02T16:02:28.000Z (about 6 years ago)
- Last Synced: 2025-03-21T18:52:12.691Z (10 months ago)
- Language: Python
- Size: 261 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TFBots
[Live Website](http://tfbots.trade)
Calculates & graphs estimated backpack values of TF2 trading bots over time.
### Requirements
**Requires Python 3.x or higher. 2.x is not officially supported.**
Just run `pip install -r requirements.txt` and pip will install the required
Python libraries. (`requests`, `matplotlib` and `flask`)
### Running
`python Calculate.py` will fetch all the data from backpack.tf
and cache it in cache.json, then run the caching scripts. It will
then start a thread that auto reruns the script every 24 hours.
`python Webserver.py` will start up the webserver that will display
the graphs is an organised fashion at `localhost:8080`.
### Adding bots
Know a good website that has trading bots? Add them to the bots.json
file as such:
```json
"name": [
"base64steamID1",
"base64steamID2"
],
```
Then create a new pull request for your fork.