├── .gitignore ├── LICENSE ├── README.md ├── steamapiwrapper ├── GameItems.py ├── SteamBase.py ├── SteamGames.py ├── Users.py └── __init__.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naiyt/steamapiwrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naiyt/steamapiwrapper/HEAD/README.md -------------------------------------------------------------------------------- /steamapiwrapper/GameItems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naiyt/steamapiwrapper/HEAD/steamapiwrapper/GameItems.py -------------------------------------------------------------------------------- /steamapiwrapper/SteamBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naiyt/steamapiwrapper/HEAD/steamapiwrapper/SteamBase.py -------------------------------------------------------------------------------- /steamapiwrapper/SteamGames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naiyt/steamapiwrapper/HEAD/steamapiwrapper/SteamGames.py -------------------------------------------------------------------------------- /steamapiwrapper/Users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naiyt/steamapiwrapper/HEAD/steamapiwrapper/Users.py -------------------------------------------------------------------------------- /steamapiwrapper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naiyt/steamapiwrapper/HEAD/tests.py --------------------------------------------------------------------------------