Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/offish/tf2-express
Automated TF2 trading bot with automatic pricing and GUI
https://github.com/offish/tf2-express
pricestf steam-api steam-trade steam-trade-bot steam-trade-offers steam-trading steambot steambots steamtrades team-fortress-2 teamfortress2 tf2 tf2-trading-bot tf2autobot tradebot tradebots-steam tradesteambots
Last synced: 16 days ago
JSON representation
Automated TF2 trading bot with automatic pricing and GUI
- Host: GitHub
- URL: https://github.com/offish/tf2-express
- Owner: offish
- License: mit
- Created: 2018-09-30T09:22:08.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-03-21T20:00:12.000Z (8 months ago)
- Last Synced: 2024-10-12T18:29:15.592Z (about 1 month ago)
- Topics: pricestf, steam-api, steam-trade, steam-trade-bot, steam-trade-offers, steam-trading, steambot, steambots, steamtrades, team-fortress-2, teamfortress2, tf2, tf2-trading-bot, tf2autobot, tradebot, tradebots-steam, tradesteambots
- Language: Python
- Homepage:
- Size: 1.03 MB
- Stars: 47
- Watchers: 5
- Forks: 6
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tf2-express
[![License](https://img.shields.io/github/license/offish/tf2-express.svg)](https://github.com/offish/tf2-express/blob/master/LICENSE)
[![Stars](https://img.shields.io/github/stars/offish/tf2-express.svg)](https://github.com/offish/tf2-express/stargazers)
[![Issues](https://img.shields.io/github/issues/offish/tf2-express.svg)](https://github.com/offish/tf2-express/issues)
[![Size](https://img.shields.io/github/repo-size/offish/tf2-express.svg)](https://github.com/offish/tf2-express)
[![Discord](https://img.shields.io/discord/467040686982692865?color=7289da&label=Discord&logo=discord)](https://discord.gg/t8nHSvA)
[![Code style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)Automated TF2 trading bot with GUI support, built with Python. Prices are by default provided by [Prices.TF](https://prices.tf).
## Donate
Donations are not required, but greatly appericated.
- BTC: `bc1qntlxs7v76j0zpgkwm62f6z0spsvyezhcmsp0z2`
- [Steam Trade Offer](https://steamcommunity.com/tradeoffer/new/?partner=293059984&token=0-l_idZR)## Features
* GUI for adding and changing items, prices, `max_stock` + browsing trades
* Automated item pricing by [Prices.TF](https://prices.tf)
* Bank as many items as you want
* Add items by either name or SKU
* Uses MongoDB for saving items, prices and trades
* Supports Random Craft Hats [[?]](#random-craft-hats)
* Run multiple bots at once, each with their own database
* Keeps track of item stock and checks if trades surpass their related item's `max_stock`
* Fetches the bot's inventory once, and keeps track of items using receipts
* Supports SKU item formats for ease of use
* Supports 3rd party inventory providers [[?]](#3rd-party-inventory-providers)
* Supports 3rd party emitted "deals" [[?]](#3rd-party-deals)
* Utilizes [tf2-sku](https://github.com/offish/tf2-sku)
* Utilizes [tf2-data](https://github.com/offish/tf2-data)
* Utilizes [tf2-utils](https://github.com/offish/tf2-utils)Available options can be found [here](express/options.py).
*Backpack.tf listing is not supported yet.*
## Showcase
![GUI Showcase](https://github.com/offish/tf2-express/assets/30203217/3093be18-412d-4852-a9a1-270f2e16f194)
![tf2-express](https://github.com/offish/tf2-express/assets/30203217/c32d6c2e-b59d-4923-97e7-8ba7cf5f8640)## Installation
Full installation guide can be found on the [wiki](https://github.com/offish/tf2-express/wiki).If MongoDB is already installed, installation should be fairly straight forward.
```bash
git clone [email protected]:offish/tf2-express.git
cd tf2-express
pip install -r requirements.txt
```## Updating
```bash
# tf2-express/
git pull
pip install --upgrade -r requirements.txt
# update packages like tf2-utils, tf2-data and tf2-sku,
# which the bot is dependant on
```## Setup
Rename `config.example.json` to `config.json`. Update credentials and set your preferred `options`.Example config:
```json
{
"name": "nickname",
"check_versions_on_startup": true,
"listen_to_pricer": true,
"bots": [
{
"name": "bot1",
"username": "username",
"password": "password",
"api_key": "111AA1111AAAA11A1A11AA1AA1AAA111",
"secrets": {
"steamid": "76511111111111111",
"shared_secret": "Aa11aA1+1aa1aAa1a=",
"identity_secret": "aA11aaaa/aa11a/aAAa1a1="
},
"options": {
"enable_deals": false,
"inventory_provider": "steamcommunity or steamsupply or steamapis",
"inventory_api_key": "inventory api key or empty",
"fetch_prices_on_startup": true,
"accept_donations": true,
"decline_bad_offers": false,
"decline_trade_hold": true,
"decline_scam_offers": true,
"allow_craft_hats": false,
"save_trades": true,
"save_receipt": true,
"poll_interval": 30,
"database": "mydatabasename",
"owners": [
"76511111111111111",
"76522222222222222"
]
}
},
{
"name": "bot2",
"username": "username2",
"password": "password2",
"api_key": "111AA1111AAAA11A1A11AA1AA1AAA111",
"secrets": {
"steamid": "76511111111111111",
"shared_secret": "Aa11aA1+1aa1aAa1a=",
"identity_secret": "aA11aaaa/aa11a/aAAa1a1="
},
"options": {
"accept_donations": true,
"allow_craft_hats": true,
"save_trades": true,
"poll_interval": 60,
"database": "bot2database"
}
}
]
}
```For more information follow the [wiki](https://github.com/offish/tf2-express/wiki).
## Running
```bash
# tf2-express/
python main.py # start the bot
python panel.py # start the gui
```After starting the GUI, you can open http://127.0.0.1:5000/ in your browser.
Logs will be available under `logs/express.log`.
Level is set to DEBUG, so here you will be able to see every request etc. and more information than is shown in the terminal.*Do NOT share this log file with anyone else before removing sensitive information. This will leak your `API_KEY` and more.*
## Explanation
### Random Craft Hats
If a craftable hat does not have a specific price in the database, it will be viewed as a Random Craft Hat (SKU: -100;6), if `enable_craft_hats` is enabled.**WARNING:** *This applies to any hat. Such as Ellis' Cap, Team Captain, Earbuds, Max Heads etc. This is a feature, not a bug.*
Simply open the GUI and add "Random Craft Hat" to the pricelist. Set the buy and sell price to whatever you want. This item cannot get automatic price updates.
### 3rd Party Inventory Providers
Avoid Steam's inventory rate-limits by using a third party provider like SteamApis, Steam.Supply or your own.### 3rd Party Deals
"Deals" in this context are data which is emitted by third party using a TCP socket. This data will be acted on, such as sending an offer using the included trade URL and price. They are named "deals" as I've been using it for arbitrage purposes.## Testing
```bash
# tf2-express/
python -m unittest
```All of the tests should output OK, except for the version check. They should be equal.
## License
MIT LicenseCopyright (c) 2020-2024 offish ([confern](https://steamcommunity.com/id/confern))
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.