├── .gitattributes ├── .gitignore ├── CHANGES.md ├── LICENSE ├── README.md ├── examples ├── achievements │ └── __init__.py ├── basic │ └── __init__.py └── stats │ └── __init__.py ├── library ├── Makefile ├── README.md ├── SteamworksPy.cpp └── sdk │ └── redist │ └── .gitignore ├── redist └── windows │ ├── README.md │ └── SteamworksPy64.dll ├── requirements.txt ├── setup.py ├── steamworks ├── __init__.py ├── enums.py ├── exceptions.py ├── interfaces │ ├── __init__.py │ ├── apps.py │ ├── friends.py │ ├── input.py │ ├── matchmaking.py │ ├── microtxn.py │ ├── music.py │ ├── screenshots.py │ ├── users.py │ ├── userstats.py │ ├── utils.py │ └── workshop.py ├── methods.py ├── structs.py └── util.py └── tests ├── __init__.py ├── legacy ├── __init__.py └── _legacy_steamworks-test.py ├── steam_appid.txt ├── test_base.py └── test_interfaces.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/README.md -------------------------------------------------------------------------------- /examples/achievements/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/examples/achievements/__init__.py -------------------------------------------------------------------------------- /examples/basic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/examples/basic/__init__.py -------------------------------------------------------------------------------- /examples/stats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/examples/stats/__init__.py -------------------------------------------------------------------------------- /library/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/library/Makefile -------------------------------------------------------------------------------- /library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/library/README.md -------------------------------------------------------------------------------- /library/SteamworksPy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/library/SteamworksPy.cpp -------------------------------------------------------------------------------- /library/sdk/redist/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/library/sdk/redist/.gitignore -------------------------------------------------------------------------------- /redist/windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/redist/windows/README.md -------------------------------------------------------------------------------- /redist/windows/SteamworksPy64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/redist/windows/SteamworksPy64.dll -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | psutil==5.6.6 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/setup.py -------------------------------------------------------------------------------- /steamworks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/steamworks/__init__.py -------------------------------------------------------------------------------- /steamworks/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/steamworks/enums.py -------------------------------------------------------------------------------- /steamworks/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/steamworks/exceptions.py -------------------------------------------------------------------------------- /steamworks/interfaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /steamworks/interfaces/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/steamworks/interfaces/apps.py -------------------------------------------------------------------------------- /steamworks/interfaces/friends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/steamworks/interfaces/friends.py -------------------------------------------------------------------------------- /steamworks/interfaces/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/steamworks/interfaces/input.py -------------------------------------------------------------------------------- /steamworks/interfaces/matchmaking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/steamworks/interfaces/matchmaking.py -------------------------------------------------------------------------------- /steamworks/interfaces/microtxn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/steamworks/interfaces/microtxn.py -------------------------------------------------------------------------------- /steamworks/interfaces/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/steamworks/interfaces/music.py -------------------------------------------------------------------------------- /steamworks/interfaces/screenshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/steamworks/interfaces/screenshots.py -------------------------------------------------------------------------------- /steamworks/interfaces/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/steamworks/interfaces/users.py -------------------------------------------------------------------------------- /steamworks/interfaces/userstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/steamworks/interfaces/userstats.py -------------------------------------------------------------------------------- /steamworks/interfaces/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/steamworks/interfaces/utils.py -------------------------------------------------------------------------------- /steamworks/interfaces/workshop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/steamworks/interfaces/workshop.py -------------------------------------------------------------------------------- /steamworks/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/steamworks/methods.py -------------------------------------------------------------------------------- /steamworks/structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/steamworks/structs.py -------------------------------------------------------------------------------- /steamworks/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/steamworks/util.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/legacy/_legacy_steamworks-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/tests/legacy/_legacy_steamworks-test.py -------------------------------------------------------------------------------- /tests/steam_appid.txt: -------------------------------------------------------------------------------- 1 | 480 2 | -------------------------------------------------------------------------------- /tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/tests/test_base.py -------------------------------------------------------------------------------- /tests/test_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippj/SteamworksPy/HEAD/tests/test_interfaces.py --------------------------------------------------------------------------------