tf2-data

Item schemas, unusual effects, SKUs and more useful data for TF2 trading


Keywords
tf2, data, sku, backpacktf, marketplace-tf, steam, steam-api, steamcommunity, team-fortress-2, tf2-trading, tf2-trading-bot
License
MIT
Install
pip install tf2-data==0.0.8

Documentation

tf2-data

License Stars Issues Size Discord Code style

Item schemas, unusual effects, SKUs and more which can be useful for TF2 trading. Implemented by tf2-utils.

Donate

Setup

Install

pip install tf2-data
# or 
python -m pip install tf2-data

Updating

pip install --upgrade tf2-data
# or 
python -m pip install --upgrade tf2-data

Testing

# tf2-data/
python -m unittest

Update files after new update

To update the local files after a TF2 update run this snippet.

from tf2_data.schema import Schema, SchemaItems, IEconItems

api_key = "STEAM_API_KEY"
schema = Schema(api_key=api_key)
schema.set_effects()

ieconitems = IEconItems(api_key)
items = ieconitems.set_all_schema_items()

schema_items = SchemaItems(items)
schema_items.map_defindex_name()
schema_items.map_defindex_full_name()