Skip to content

A simple python package that uses proxies to bypass steam's rate limits on thier game inventory API.

License

Notifications You must be signed in to change notification settings

purplebarber/steam-inventory

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

steam inventory

A simple python package that uses proxies to bypass steam's rate limits on their game inventory API.

Usage

from steam_inventory.inventories import Inventory
import asyncio

proxy_list = [
    "proxy1:port",
    "proxy2:port",
    "proxy3:port",
    "..."
]

async def main() -> None:
    inventory_client = Inventory(proxies=proxy_list)
    # Get the tf2 inventory of a user with steamID of 00000000000000000
    inventory = await inventory_client.get_inventory(steam_id_64="00000000000000000", app_id=440, context_id="2")
    # Close the client
    await inventory_client.close()

if __name__ == "__main__":
    asyncio.run(main())

Installation

pip install steam-inventory

About

A simple python package that uses proxies to bypass steam's rate limits on thier game inventory API.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages