Skip to main content

A python library that parses TF2 item SKU to the item's name and vice versa.

Project description

tf2-sku

A Python library for parsing Team Fortress 2 item SKUs to item names and vice versa.

Features

  • Convert SKUs to item names
  • Convert item names to SKUs

Installation

pip install tf2-sku-to-name

Quick Start

from sku import Sku

# Convert SKU to name
sku = "5021;6"
name = Sku.sku_to_name(sku)
print(name)  # Output: Mann Co. Supply Crate Key

# Convert name to SKU
name = "Burning Flames Team Captain"
sku = Sku.name_to_sku(name)
print(sku)  # Output: 378;5;u13

# Working with item objects
from sku import itemClass

item = itemClass()
item.Defindex = 424
item.Quality = 11
item.Killstreak = 3

sku = Sku.object_to_sku(item)
print(sku)  # Output: 424;11;kt-3

Advanced Usage

Schema Management

The library automatically manages TF2 schema data:

from sku import get_schema, update_schema

# Get the current schema instance
schema = get_schema()

# Access schema data
item = schema.get_item_by_defindex(5021)
print(item['item_name'])  # Mann Co. Supply Crate Key

# Force update schema (by default uses autobot.tf)
update_schema()

# Or use Steam API (requires API key)
update_schema(api_key="YOUR_STEAM_API_KEY", use_autobot=False)

Installation

pip install tf2-sku-to-name

Acknowledgements

TF2Autobot's node-tf2-schema for the original JavaScript implementation
idinium96's tf2autobot for the item name schema
Inspired by Nicklason's node-tf2-sku and TryHardDo's TF2Sku

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_sku_to_name-2.0.1.tar.gz (14.9 kB view details)

Uploaded Source

Built Distribution

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

tf2_sku_to_name-2.0.1-py3-none-any.whl (15.1 kB view details)

Uploaded Python 3

File details

Details for the file tf2_sku_to_name-2.0.1.tar.gz.

File metadata

  • Download URL: tf2_sku_to_name-2.0.1.tar.gz
  • Upload date:
  • Size: 14.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for tf2_sku_to_name-2.0.1.tar.gz
Algorithm Hash digest
SHA256 f508942c33c9985f3c0689ef4e080d5d3b37bed63a8e880d4a7a54ba31e2493b
MD5 aa0a43af83b3520a2d3468583a3bf6ea
BLAKE2b-256 304695c6251b913f7634ba53f869efb84f9c2aca972d568ad9b8fdd2bcb19f24

See more details on using hashes here.

File details

Details for the file tf2_sku_to_name-2.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for tf2_sku_to_name-2.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 12ab5c38a609f5f9ae6d8f32841719ba70cd0c3579242b46a1c0c2a7fd487bad
MD5 11a561232aa86160e5f30cb4440b882e
BLAKE2b-256 468949a6471278956a8f8492b8ab8bc653817ab9104d4f330c6cda2702c12c35

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