{"id":15658399,"url":"https://github.com/idlesign/steampak","last_synced_at":"2025-05-05T16:43:57.817Z","repository":{"id":36238662,"uuid":"40543007","full_name":"idlesign/steampak","owner":"idlesign","description":"Nicely packed tools to work with Steam APIs","archived":false,"fork":false,"pushed_at":"2019-03-23T06:36:59.000Z","size":129,"stargazers_count":24,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-30T22:32:01.065Z","etag":null,"topics":["binding","python","steam","steam-api","wrapper"],"latest_commit_sha":null,"homepage":"https://github.com/idlesign/steampak","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/idlesign.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-08-11T13:23:58.000Z","updated_at":"2025-03-22T06:50:02.000Z","dependencies_parsed_at":"2022-09-09T22:01:41.527Z","dependency_job_id":null,"html_url":"https://github.com/idlesign/steampak","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idlesign%2Fsteampak","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idlesign%2Fsteampak/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idlesign%2Fsteampak/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idlesign%2Fsteampak/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/idlesign","download_url":"https://codeload.github.com/idlesign/steampak/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252092204,"owners_count":21693330,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["binding","python","steam","steam-api","wrapper"],"created_at":"2024-10-03T13:12:20.350Z","updated_at":"2025-05-05T16:43:57.794Z","avatar_url":"https://github.com/idlesign.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"steampak\n========\nhttps://github.com/idlesign/steampak\n\n.. image:: https://img.shields.io/pypi/v/steampak.svg\n    :target: https://pypi.python.org/pypi/steampak\n\n.. image:: https://img.shields.io/pypi/dm/steampak.svg\n    :target: https://pypi.python.org/pypi/steampak\n\n.. image:: https://img.shields.io/pypi/l/steampak.svg\n    :target: https://pypi.python.org/pypi/steampak\n\n\n**This software is not affiliated with Valve, Steam, or any of their partners.**\n\n\nDescription\n-----------\n\n*Nicely packed tools to work with Steam APIs*\n\n* Steam library bindings for Python programming language.\n\n  It allows your game to interact with features offered by Steam client and Steam platform.\n\n* Tools for querying Steam Web resources.\n\n  Allowing access to applications and market data from within your Python application.\n\n* Command line utility.\n\n  To reach and analyse publicly available applications and market information.\n\n\nSteam API bindings example\n--------------------------\n\nA short example of API provided by Steam library, just to give a taste of it:\n\n.. code-block:: python\n\n    from steampak import SteamApi\n\n    # A path to steam library file. This library should be provided with your game.\n    # Library for various OS is distributed with Steam SDK available for Steam partners\n    # at https://partner.steamgames.com/\n    LIBRARY_PATH = '/home/me/my_steam_game/libsteam_api.so'\n\n    # Your application (game) identifier provided by Steam.\n    # Pass it as a parameter or put `steam_appid.txt` file with that ID in your game folder.\n    APP_ID = 480  # We use `Spacewar` ID. (This game is provided with SDK).\n\n    api = SteamApi(LIBRARY_PATH, app_id=APP_ID)\n\n    # Let's print some friend names:\n    for user in api.friends():\n        print(user.name)\n\n    # Current app achievements progress:\n    for ach_name, ach in api.apps.current.achievements():\n        print('%s (%s): %s' % (ach.title, ach_name, ach.get_unlock_info()))\n\n    # Do not forget to shutdown when done:\n    api.shutdown()\n\n\nCommand line client example\n---------------------------\n\n.. code-block:: bash\n\n    ; Get prices and simple analysis for Half-Life 2 cards.\n    $ steampak app 220 get_card_prices --currency USD\n\n    ; Get `Gordon Freeman` card price.\n    $ steampak market item 220 \"Gordon Freeman\" get_price --currency GBP\n\n    ; Get games owned by `idlesign`.\n    $ steampak user idlesign get_games\n\n\nUse ``--help`` command option to get more information on available commands.\n\n\nSteam API bindings roadmap\n--------------------------\n\n**Work in progress. Callback-based functions support is not implemented.**\n\n* **Implemented (may be partially)**\n\n    * Applications\n    * Installed applications (restricted interface)\n    * Friends\n    * Friend tags\n    * Groups\n    * Current user\n    * Users\n    * Utilities\n    * Achievements\n    * Screenshots\n\n* **Not [yet]**\n\n    * Controller\n    * HTML Surface\n    * HTTP\n    * Inventory\n    * Matchmaking\n    * Music\n    * Networking\n    * Servers\n    * Storage\n    * UGC\n    * Video\n\n\nDocumentation\n-------------\n\nhttp://steampak.readthedocs.org/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fidlesign%2Fsteampak","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fidlesign%2Fsteampak","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fidlesign%2Fsteampak/lists"}