Skip to main content

Get information about TF2 items, effects, skins and more

Project description

python-tf2-utilities

A fast, reliable, and easy-to-use Python library for accessing detailed Team Fortress 2 (TF2) data, including items, skins, effects, and more. Built for developers, this library simplifies retrieving and managing TF2 assets, with minimal setup and optimized performance.

Inspired by TF2autobot's node-tf2-schema and TF2autobot's node-tf2-sku, this library supports a wide range of TF2-related applications.

Key Features

  • Item Management: Easily convert between item SKUs, names, and object formats.
  • Schema Integration: Access and manipulate detailed TF2 schema data, such as item attributes, qualities, and effects.
  • Comprehensive Tools: Work with unusual effects, paint kits, skins, crate series, crafting recipes, and trade configurations.
  • Lightweight Mode: Optimize performance by only loading essential schema data for resource-constrained applications.
  • Automatic Updates: Automatically stay up to date with schema changes through configurable update intervals.
  • User-Friendly API: Simplify development with clean, consistent, and intuitive methods.

Installation

Install the library using pip:

pip install tf2-utilities

Prerequisites:

  • Python 3.9 or later
  • A Steam Web API key (obtain it from here)

Getting Started

Initialize the Library

To initialize the schema, you’ll need your Steam Web API key:

from tf2utilities.main import TF2

# Initialize the TF2 utilities with your Steam API key and settings
schema = TF2(
    api_key="your_steam_api_key",  # Your Steam Web API key
    auto_update=True,           # Enable automatic schema updates
    update_time=86400,          # Update interval in seconds (default: 1 day)
    lite=False                  # Enable lightweight mode (default: False)
).schema

Common Use Cases

  • Convert Item SKU to Item Name
item_name = schema.get_name_from_sku("5021;6")
print(item_name)  # Output: "Mann Co. Supply Crate Key"
  • Convert Item Name to Item SKU
item_sku = schema.get_sku_from_name("Mann Co. Supply Crate Key")
print(item_sku)  # Output: "5021;6"
  • Retrieve TF2 Schema as JSON
schema_data = schema.to_json()
print(schema_data) # Output: JSON representation of the schema data

SKU Utilities

  • Convert Item SKU to Item Object
from tf2utilities.sku import SKU

item_object = SKU.from_string("5021;6")
print(item_object) # Output: Item object representing the SKU
  • Convert Item Object to Item SKU
item_object = {
    "defindex": 5021,
    "quality": 6,
    "craftable": True,
    "tradable": True,
    "killstreak": 0,
    "australium": False,
    "effect": None,
    "festive": False,
    "paintkit": None,
    "wear": None,
    "quality2": None,
    "craftnumber": None,
    "crateseries": None,
    "target": None,
    "output": None,
    "outputQuality": None,
    "paint": None
}
item_sku = SKU.from_object(item_object)
print(item_sku) # Output: "5021;6"
  • Convert Steam API Data to Item SKU
item_sku = SKU.from_API(item_data)
print(item_sku) # Output: SKU based on API data

Configuration

Parameter Description Default
api_key Your Steam Web API key. None
auto_update Enable or disable automatic schema updates. False
update_time Time interval (in seconds) between schema updates. 86400 (1 day)
lite Enable lightweight mode for reduced memory usage. False

Contributing

We welcome contributions! If you’d like to improve the library, fix bugs, or add features, please fork the repository, create a branch, and submit a pull request. For ideas or issues, feel free to open an issue on GitHub.

License

This project is licensed under the MIT License. See the LICENSE file for more details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tf2_utilities-3.1.1.tar.gz (19.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tf2_utilities-3.1.1-py3-none-any.whl (20.2 kB view details)

Uploaded Python 3

File details

Details for the file tf2_utilities-3.1.1.tar.gz.

File metadata

  • Download URL: tf2_utilities-3.1.1.tar.gz
  • Upload date:
  • Size: 19.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.8

File hashes

Hashes for tf2_utilities-3.1.1.tar.gz
Algorithm Hash digest
SHA256 71309bd8664d80bed616377e2fefb24efb243bfc1724965e67b77f2d1472f816
MD5 35ad45fa40ad1b7b83818ee120b14062
BLAKE2b-256 8909ec5b1dc1b8192a0404bb0784011124c658138db2513e1b57e840838cf641

See more details on using hashes here.

File details

Details for the file tf2_utilities-3.1.1-py3-none-any.whl.

File metadata

  • Download URL: tf2_utilities-3.1.1-py3-none-any.whl
  • Upload date:
  • Size: 20.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.8

File hashes

Hashes for tf2_utilities-3.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1985f72f563038a0ffa8e2161eb42848e84ddd48071426ab6c104ec7099ed560
MD5 99a85cef684b4baa45c7dbea92213c0e
BLAKE2b-256 2cbc5bf2ca27f66dc38d20d65e7ddd370e3e3d0630066d0d2cefa21b74722880

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page