{"id":45921560,"url":"https://github.com/digitaldescent/panda3d-steamworks","last_synced_at":"2026-03-04T12:00:42.010Z","repository":{"id":340708144,"uuid":"1167182629","full_name":"DigitalDescent/panda3d-steamworks","owner":"DigitalDescent","description":"Panda3D bindings for Valve's Steamworks SDK. Used for shipping Panda3D applications on Steam.","archived":false,"fork":false,"pushed_at":"2026-02-28T08:55:01.000Z","size":329,"stargazers_count":2,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-28T12:43:07.739Z","etag":null,"topics":["panda3d","python","steam","steamworks","valve"],"latest_commit_sha":null,"homepage":"https://docs.digitaldescent.games/panda3d-steamworks","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DigitalDescent.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-26T02:54:18.000Z","updated_at":"2026-02-28T07:56:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"3e456374-9b84-4535-82b9-0adf3a461021","html_url":"https://github.com/DigitalDescent/panda3d-steamworks","commit_stats":null,"previous_names":["digitaldescent/panda3d-steamworks"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/DigitalDescent/panda3d-steamworks","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DigitalDescent%2Fpanda3d-steamworks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DigitalDescent%2Fpanda3d-steamworks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DigitalDescent%2Fpanda3d-steamworks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DigitalDescent%2Fpanda3d-steamworks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DigitalDescent","download_url":"https://codeload.github.com/DigitalDescent/panda3d-steamworks/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DigitalDescent%2Fpanda3d-steamworks/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29965419,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T06:55:38.174Z","status":"ssl_error","status_checked_at":"2026-03-01T06:53:04.810Z","response_time":124,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["panda3d","python","steam","steamworks","valve"],"created_at":"2026-02-28T08:50:49.624Z","updated_at":"2026-03-01T09:00:40.831Z","avatar_url":"https://github.com/DigitalDescent.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# panda3d-steamworks\n\nPython bindings for [Valve's Steamworks SDK](https://partner.steamgames.com/doc/sdk) for the [Panda3D](https://www.panda3d.org/) game engine.\n\nProvides access to Steamworks features — app ownership, DLC management, language queries, and more — directly from your Panda3D Python code.\n\n## Installation\n\n### From PyPI\n\n```bash\npip install panda3d-steamworks\n```\n\n### From source\n\n```bash\ngit clone --recurse-submodules https://github.com/DigitalDescent/panda3d-steamworks.git\ncd panda3d-steamworks\npip install .\n```\n\n## Quick start\n\n```python\nfrom panda3d_steamworks import SteamApps\n\nif SteamApps.init():\n    print(\"Steam initialised!\")\n    print(\"Language:\", SteamApps.get_current_game_language())\n    print(\"Build ID:\", SteamApps.get_app_build_id())\n    print(\"Subscribed:\", SteamApps.is_subscribed())\n\n    # DLC\n    print(\"DLC count:\", SteamApps.get_dlc_count())\n\n    SteamApps.shutdown()\n```\n\n\u003e **Note:** A valid `steam_appid.txt` file must be present in the working\n\u003e directory (or your game must be launched through Steam) for `SteamApps.init()`\n\u003e to succeed.\n\n## Requirements\n\n- [Panda3D SDK](https://www.panda3d.org/download/) (with headers — the pip `panda3d` package alone is **not** sufficient for building from source)\n- [CMake](https://cmake.org/download/) 3.16 or higher\n- A C++ compiler compatible with your Panda3D build (Visual Studio on Windows, GCC/Clang on Linux/macOS)\n- [`panda3d-interrogate`](https://pypi.org/project/panda3d-interrogate/) for generating Python bindings\n\nPre-built wheels include the compiled extension and the Steamworks shared library, so end users only need `pip install panda3d-steamworks`.\n\n## Building from source\n\n```bash\n# Clone with the Steamworks SDK submodule\ngit clone --recurse-submodules https://github.com/DigitalDescent/panda3d-steamworks.git\ncd panda3d-steamworks\n\n# Install in development mode\npip install -e .\n\n# Or build a wheel for distribution\npip install build\npython -m build --wheel\n```\n\n### Build configuration\n\nBuild options are constants at the top of `setup.py`:\n\n| Constant | Default | Description |\n|----------|---------|-------------|\n| `GENERATE_PDB` | `True` | Generate a `.pdb` debug symbol file (Windows). |\n| `OPTIMIZE` | `3` | Optimisation level (must match your Panda3D build). |\n| `VERBOSE_IGATE` | `0` | Interrogate verbosity (`0` = quiet, `1` = verbose, `2` = very verbose). |\n| `REQUIRE_LIB_BULLET` | `False` | Require the Bullet physics library. |\n| `REQUIRE_LIB_FREETYPE` | `False` | Require the Freetype library. |\n\nYou can also pass options via `setup.py`:\n\n- `python setup.py build_ext --optimize=N`\n- `python setup.py build_ext --clean-build` — force a clean rebuild\n\n## License\n\nThis project is licensed under the MIT License — see [LICENSE](LICENSE) for details.\n\nThe Steamworks SDK is Copyright © Valve Corporation and is subject to the the rules outlined at [Distributing Open source](https://partner.steamgames.com/doc/sdk/uploading/distributing_opensource).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdigitaldescent%2Fpanda3d-steamworks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdigitaldescent%2Fpanda3d-steamworks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdigitaldescent%2Fpanda3d-steamworks/lists"}