├── .coveragerc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md └── workflows │ └── testing_initiative.yml ├── .gitignore ├── .sonarcloud.properties ├── CHANGES.md ├── LICENSE ├── Makefile ├── README.rst ├── Vagrantfile ├── dev_requirements.txt ├── docs ├── .gitignore ├── Makefile ├── api │ ├── steam.client.builtins.rst │ ├── steam.client.cdn.rst │ ├── steam.client.gc.rst │ ├── steam.client.rst │ ├── steam.client.user.rst │ ├── steam.core.cm.rst │ ├── steam.core.connection.rst │ ├── steam.core.crypto.rst │ ├── steam.core.manifest.rst │ ├── steam.core.msg.rst │ ├── steam.core.rst │ ├── steam.enums.rst │ ├── steam.exceptions.rst │ ├── steam.game_servers.rst │ ├── steam.globalid.rst │ ├── steam.guard.rst │ ├── steam.monkey.rst │ ├── steam.rst │ ├── steam.steamid.rst │ ├── steam.utils.rst │ ├── steam.versions_report.rst │ ├── steam.webapi.rst │ └── steam.webauth.rst ├── conf.py ├── global.rst ├── index.rst ├── install.rst ├── intro.rst └── user_guide.rst ├── generate_enums_from_proto.py ├── protobuf_list.txt ├── protobufs ├── content_manifest.proto ├── encrypted_app_ticket.proto ├── enums.proto ├── enums_clientserver.proto ├── enums_productinfo.proto ├── gc.proto ├── google │ └── protobuf │ │ └── descriptor.proto ├── offline_ticket.proto ├── steammessages_auth.proto ├── steammessages_base.proto ├── steammessages_broadcast.proto ├── steammessages_chat.proto ├── steammessages_client_objects.proto ├── steammessages_clientserver.proto ├── steammessages_clientserver_2.proto ├── steammessages_clientserver_appinfo.proto ├── steammessages_clientserver_friends.proto ├── steammessages_clientserver_gameservers.proto ├── steammessages_clientserver_lbs.proto ├── steammessages_clientserver_login.proto ├── steammessages_clientserver_mms.proto ├── steammessages_clientserver_ucm.proto ├── steammessages_clientserver_uds.proto ├── steammessages_clientserver_ufs.proto ├── steammessages_clientserver_userstats.proto ├── steammessages_cloud.proto ├── steammessages_contentsystem.proto ├── steammessages_credentials.proto ├── steammessages_datapublisher.proto ├── steammessages_depotbuilder.proto ├── steammessages_deviceauth.proto ├── steammessages_econ.proto ├── steammessages_friendmessages.proto ├── steammessages_gamenotifications.proto ├── steammessages_gameservers.proto ├── steammessages_inventory.proto ├── steammessages_linkfilter.proto ├── steammessages_lobbymatchmaking.proto ├── steammessages_market.proto ├── steammessages_marketingmessages.proto ├── steammessages_offline.proto ├── steammessages_parental.proto ├── steammessages_parties.proto ├── steammessages_partnerapps.proto ├── steammessages_physicalgoods.proto ├── steammessages_player.proto ├── steammessages_publishedfile.proto ├── steammessages_qms.proto ├── steammessages_remoteplay.proto ├── steammessages_secrets.proto ├── steammessages_shader.proto ├── steammessages_site_license.proto ├── steammessages_star.proto ├── steammessages_steamtv.proto ├── steammessages_store.proto ├── steammessages_storebrowse.proto ├── steammessages_timedtrial.proto ├── steammessages_twofactor.proto ├── steammessages_unified_base.proto ├── steammessages_unified_test.proto ├── steammessages_useraccount.proto ├── steammessages_video.proto ├── steammessages_webui_friends.proto ├── steammessages_workshop.proto └── test_messages.proto ├── recipes ├── 1.Login │ ├── README.rst │ ├── diy_one_off_login.py │ ├── one_off_login.py │ └── persistent_login.py ├── 2.SimpleWebAPI │ ├── README.rst │ ├── run_webapi.py │ └── steam_worker.py ├── 3.WalletBalance │ ├── README.rst │ ├── wallet_steamclient.py │ └── wallet_webauth.py └── README.rst ├── requirements.txt ├── setup.py ├── steam ├── __init__.py ├── client │ ├── __init__.py │ ├── builtins │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── friends.py │ │ ├── gameservers.py │ │ ├── leaderboards.py │ │ ├── unified_messages.py │ │ ├── user.py │ │ └── web.py │ ├── cdn.py │ ├── gc.py │ └── user.py ├── core │ ├── __init__.py │ ├── cm.py │ ├── connection.py │ ├── crypto.py │ ├── manifest.py │ └── msg │ │ ├── __init__.py │ │ ├── headers.py │ │ ├── structs.py │ │ └── unified.py ├── enums │ ├── __init__.py │ ├── base.py │ ├── common.py │ ├── emsg.py │ └── proto.py ├── exceptions.py ├── game_servers.py ├── globalid.py ├── guard.py ├── monkey.py ├── protobufs │ ├── __init__.py │ ├── content_manifest_pb2.py │ ├── encrypted_app_ticket_pb2.py │ ├── enums_clientserver_pb2.py │ ├── enums_pb2.py │ ├── enums_productinfo_pb2.py │ ├── gc_pb2.py │ ├── offline_ticket_pb2.py │ ├── steammessages_auth_pb2.py │ ├── steammessages_base_pb2.py │ ├── steammessages_broadcast_pb2.py │ ├── steammessages_chat_pb2.py │ ├── steammessages_client_objects_pb2.py │ ├── steammessages_clientserver_2_pb2.py │ ├── steammessages_clientserver_appinfo_pb2.py │ ├── steammessages_clientserver_friends_pb2.py │ ├── steammessages_clientserver_gameservers_pb2.py │ ├── steammessages_clientserver_lbs_pb2.py │ ├── steammessages_clientserver_login_pb2.py │ ├── steammessages_clientserver_mms_pb2.py │ ├── steammessages_clientserver_pb2.py │ ├── steammessages_clientserver_ucm_pb2.py │ ├── steammessages_clientserver_uds_pb2.py │ ├── steammessages_clientserver_ufs_pb2.py │ ├── steammessages_clientserver_userstats_pb2.py │ ├── steammessages_cloud_pb2.py │ ├── steammessages_contentsystem_pb2.py │ ├── steammessages_credentials_pb2.py │ ├── steammessages_datapublisher_pb2.py │ ├── steammessages_depotbuilder_pb2.py │ ├── steammessages_deviceauth_pb2.py │ ├── steammessages_econ_pb2.py │ ├── steammessages_friendmessages_pb2.py │ ├── steammessages_gamenotifications_pb2.py │ ├── steammessages_gameservers_pb2.py │ ├── steammessages_inventory_pb2.py │ ├── steammessages_linkfilter_pb2.py │ ├── steammessages_lobbymatchmaking_pb2.py │ ├── steammessages_market_pb2.py │ ├── steammessages_marketingmessages_pb2.py │ ├── steammessages_offline_pb2.py │ ├── steammessages_parental_pb2.py │ ├── steammessages_parties_pb2.py │ ├── steammessages_partnerapps_pb2.py │ ├── steammessages_physicalgoods_pb2.py │ ├── steammessages_player_pb2.py │ ├── steammessages_publishedfile_pb2.py │ ├── steammessages_qms_pb2.py │ ├── steammessages_remoteplay_pb2.py │ ├── steammessages_secrets_pb2.py │ ├── steammessages_shader_pb2.py │ ├── steammessages_site_license_pb2.py │ ├── steammessages_star_pb2.py │ ├── steammessages_steamtv_pb2.py │ ├── steammessages_store_pb2.py │ ├── steammessages_storebrowse_pb2.py │ ├── steammessages_timedtrial_pb2.py │ ├── steammessages_twofactor_pb2.py │ ├── steammessages_unified_base_pb2.py │ ├── steammessages_unified_test_pb2.py │ ├── steammessages_useraccount_pb2.py │ ├── steammessages_video_pb2.py │ ├── steammessages_webui_friends_pb2.py │ ├── steammessages_workshop_pb2.py │ └── test_messages_pb2.py ├── steamid.py ├── utils │ ├── __init__.py │ ├── appcache.py │ ├── binary.py │ ├── proto.py │ ├── throttle.py │ └── web.py ├── versions_report │ ├── __init__.py │ └── __main__.py ├── webapi.py └── webauth.py ├── tests ├── __init__.py ├── generete_webauth_vcr.py ├── test_core_cm.py ├── test_core_crypto.py ├── test_game_servers.py ├── test_guard.py ├── test_steamid.py ├── test_utils.py ├── test_webapi.py └── test_webauth.py ├── tox.ini └── vcr ├── steamid_community_urls.yaml ├── webapi.yaml ├── webauth_user_pass_only_fail.yaml └── webauth_user_pass_only_success.yaml /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/testing_initiative.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/.github/workflows/testing_initiative.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/.gitignore -------------------------------------------------------------------------------- /.sonarcloud.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/.sonarcloud.properties -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/README.rst -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/Vagrantfile -------------------------------------------------------------------------------- /dev_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/dev_requirements.txt -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | _doc 3 | _static 4 | _templates 5 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api/steam.client.builtins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/api/steam.client.builtins.rst -------------------------------------------------------------------------------- /docs/api/steam.client.cdn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/api/steam.client.cdn.rst -------------------------------------------------------------------------------- /docs/api/steam.client.gc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/api/steam.client.gc.rst -------------------------------------------------------------------------------- /docs/api/steam.client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/api/steam.client.rst -------------------------------------------------------------------------------- /docs/api/steam.client.user.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/api/steam.client.user.rst -------------------------------------------------------------------------------- /docs/api/steam.core.cm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/api/steam.core.cm.rst -------------------------------------------------------------------------------- /docs/api/steam.core.connection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/api/steam.core.connection.rst -------------------------------------------------------------------------------- /docs/api/steam.core.crypto.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/api/steam.core.crypto.rst -------------------------------------------------------------------------------- /docs/api/steam.core.manifest.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/api/steam.core.manifest.rst -------------------------------------------------------------------------------- /docs/api/steam.core.msg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/api/steam.core.msg.rst -------------------------------------------------------------------------------- /docs/api/steam.core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/api/steam.core.rst -------------------------------------------------------------------------------- /docs/api/steam.enums.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/api/steam.enums.rst -------------------------------------------------------------------------------- /docs/api/steam.exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/api/steam.exceptions.rst -------------------------------------------------------------------------------- /docs/api/steam.game_servers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/api/steam.game_servers.rst -------------------------------------------------------------------------------- /docs/api/steam.globalid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/api/steam.globalid.rst -------------------------------------------------------------------------------- /docs/api/steam.guard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/api/steam.guard.rst -------------------------------------------------------------------------------- /docs/api/steam.monkey.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/api/steam.monkey.rst -------------------------------------------------------------------------------- /docs/api/steam.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/api/steam.rst -------------------------------------------------------------------------------- /docs/api/steam.steamid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/api/steam.steamid.rst -------------------------------------------------------------------------------- /docs/api/steam.utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/api/steam.utils.rst -------------------------------------------------------------------------------- /docs/api/steam.versions_report.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/api/steam.versions_report.rst -------------------------------------------------------------------------------- /docs/api/steam.webapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/api/steam.webapi.rst -------------------------------------------------------------------------------- /docs/api/steam.webauth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/api/steam.webauth.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/global.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/global.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/intro.rst -------------------------------------------------------------------------------- /docs/user_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/docs/user_guide.rst -------------------------------------------------------------------------------- /generate_enums_from_proto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/generate_enums_from_proto.py -------------------------------------------------------------------------------- /protobuf_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobuf_list.txt -------------------------------------------------------------------------------- /protobufs/content_manifest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/content_manifest.proto -------------------------------------------------------------------------------- /protobufs/encrypted_app_ticket.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/encrypted_app_ticket.proto -------------------------------------------------------------------------------- /protobufs/enums.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/enums.proto -------------------------------------------------------------------------------- /protobufs/enums_clientserver.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/enums_clientserver.proto -------------------------------------------------------------------------------- /protobufs/enums_productinfo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/enums_productinfo.proto -------------------------------------------------------------------------------- /protobufs/gc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/gc.proto -------------------------------------------------------------------------------- /protobufs/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /protobufs/offline_ticket.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/offline_ticket.proto -------------------------------------------------------------------------------- /protobufs/steammessages_auth.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_auth.proto -------------------------------------------------------------------------------- /protobufs/steammessages_base.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_base.proto -------------------------------------------------------------------------------- /protobufs/steammessages_broadcast.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_broadcast.proto -------------------------------------------------------------------------------- /protobufs/steammessages_chat.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_chat.proto -------------------------------------------------------------------------------- /protobufs/steammessages_client_objects.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_client_objects.proto -------------------------------------------------------------------------------- /protobufs/steammessages_clientserver.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_clientserver.proto -------------------------------------------------------------------------------- /protobufs/steammessages_clientserver_2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_clientserver_2.proto -------------------------------------------------------------------------------- /protobufs/steammessages_clientserver_appinfo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_clientserver_appinfo.proto -------------------------------------------------------------------------------- /protobufs/steammessages_clientserver_friends.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_clientserver_friends.proto -------------------------------------------------------------------------------- /protobufs/steammessages_clientserver_gameservers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_clientserver_gameservers.proto -------------------------------------------------------------------------------- /protobufs/steammessages_clientserver_lbs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_clientserver_lbs.proto -------------------------------------------------------------------------------- /protobufs/steammessages_clientserver_login.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_clientserver_login.proto -------------------------------------------------------------------------------- /protobufs/steammessages_clientserver_mms.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_clientserver_mms.proto -------------------------------------------------------------------------------- /protobufs/steammessages_clientserver_ucm.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_clientserver_ucm.proto -------------------------------------------------------------------------------- /protobufs/steammessages_clientserver_uds.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_clientserver_uds.proto -------------------------------------------------------------------------------- /protobufs/steammessages_clientserver_ufs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_clientserver_ufs.proto -------------------------------------------------------------------------------- /protobufs/steammessages_clientserver_userstats.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_clientserver_userstats.proto -------------------------------------------------------------------------------- /protobufs/steammessages_cloud.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_cloud.proto -------------------------------------------------------------------------------- /protobufs/steammessages_contentsystem.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_contentsystem.proto -------------------------------------------------------------------------------- /protobufs/steammessages_credentials.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_credentials.proto -------------------------------------------------------------------------------- /protobufs/steammessages_datapublisher.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_datapublisher.proto -------------------------------------------------------------------------------- /protobufs/steammessages_depotbuilder.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_depotbuilder.proto -------------------------------------------------------------------------------- /protobufs/steammessages_deviceauth.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_deviceauth.proto -------------------------------------------------------------------------------- /protobufs/steammessages_econ.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_econ.proto -------------------------------------------------------------------------------- /protobufs/steammessages_friendmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_friendmessages.proto -------------------------------------------------------------------------------- /protobufs/steammessages_gamenotifications.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_gamenotifications.proto -------------------------------------------------------------------------------- /protobufs/steammessages_gameservers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_gameservers.proto -------------------------------------------------------------------------------- /protobufs/steammessages_inventory.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_inventory.proto -------------------------------------------------------------------------------- /protobufs/steammessages_linkfilter.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_linkfilter.proto -------------------------------------------------------------------------------- /protobufs/steammessages_lobbymatchmaking.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_lobbymatchmaking.proto -------------------------------------------------------------------------------- /protobufs/steammessages_market.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_market.proto -------------------------------------------------------------------------------- /protobufs/steammessages_marketingmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_marketingmessages.proto -------------------------------------------------------------------------------- /protobufs/steammessages_offline.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_offline.proto -------------------------------------------------------------------------------- /protobufs/steammessages_parental.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_parental.proto -------------------------------------------------------------------------------- /protobufs/steammessages_parties.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_parties.proto -------------------------------------------------------------------------------- /protobufs/steammessages_partnerapps.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_partnerapps.proto -------------------------------------------------------------------------------- /protobufs/steammessages_physicalgoods.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_physicalgoods.proto -------------------------------------------------------------------------------- /protobufs/steammessages_player.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_player.proto -------------------------------------------------------------------------------- /protobufs/steammessages_publishedfile.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_publishedfile.proto -------------------------------------------------------------------------------- /protobufs/steammessages_qms.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_qms.proto -------------------------------------------------------------------------------- /protobufs/steammessages_remoteplay.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_remoteplay.proto -------------------------------------------------------------------------------- /protobufs/steammessages_secrets.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_secrets.proto -------------------------------------------------------------------------------- /protobufs/steammessages_shader.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_shader.proto -------------------------------------------------------------------------------- /protobufs/steammessages_site_license.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_site_license.proto -------------------------------------------------------------------------------- /protobufs/steammessages_star.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_star.proto -------------------------------------------------------------------------------- /protobufs/steammessages_steamtv.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_steamtv.proto -------------------------------------------------------------------------------- /protobufs/steammessages_store.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_store.proto -------------------------------------------------------------------------------- /protobufs/steammessages_storebrowse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_storebrowse.proto -------------------------------------------------------------------------------- /protobufs/steammessages_timedtrial.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_timedtrial.proto -------------------------------------------------------------------------------- /protobufs/steammessages_twofactor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_twofactor.proto -------------------------------------------------------------------------------- /protobufs/steammessages_unified_base.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_unified_base.proto -------------------------------------------------------------------------------- /protobufs/steammessages_unified_test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_unified_test.proto -------------------------------------------------------------------------------- /protobufs/steammessages_useraccount.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_useraccount.proto -------------------------------------------------------------------------------- /protobufs/steammessages_video.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_video.proto -------------------------------------------------------------------------------- /protobufs/steammessages_webui_friends.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_webui_friends.proto -------------------------------------------------------------------------------- /protobufs/steammessages_workshop.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/steammessages_workshop.proto -------------------------------------------------------------------------------- /protobufs/test_messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/protobufs/test_messages.proto -------------------------------------------------------------------------------- /recipes/1.Login/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/recipes/1.Login/README.rst -------------------------------------------------------------------------------- /recipes/1.Login/diy_one_off_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/recipes/1.Login/diy_one_off_login.py -------------------------------------------------------------------------------- /recipes/1.Login/one_off_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/recipes/1.Login/one_off_login.py -------------------------------------------------------------------------------- /recipes/1.Login/persistent_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/recipes/1.Login/persistent_login.py -------------------------------------------------------------------------------- /recipes/2.SimpleWebAPI/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/recipes/2.SimpleWebAPI/README.rst -------------------------------------------------------------------------------- /recipes/2.SimpleWebAPI/run_webapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/recipes/2.SimpleWebAPI/run_webapi.py -------------------------------------------------------------------------------- /recipes/2.SimpleWebAPI/steam_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/recipes/2.SimpleWebAPI/steam_worker.py -------------------------------------------------------------------------------- /recipes/3.WalletBalance/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/recipes/3.WalletBalance/README.rst -------------------------------------------------------------------------------- /recipes/3.WalletBalance/wallet_steamclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/recipes/3.WalletBalance/wallet_steamclient.py -------------------------------------------------------------------------------- /recipes/3.WalletBalance/wallet_webauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/recipes/3.WalletBalance/wallet_webauth.py -------------------------------------------------------------------------------- /recipes/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/recipes/README.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/setup.py -------------------------------------------------------------------------------- /steam/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/__init__.py -------------------------------------------------------------------------------- /steam/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/client/__init__.py -------------------------------------------------------------------------------- /steam/client/builtins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/client/builtins/__init__.py -------------------------------------------------------------------------------- /steam/client/builtins/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/client/builtins/apps.py -------------------------------------------------------------------------------- /steam/client/builtins/friends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/client/builtins/friends.py -------------------------------------------------------------------------------- /steam/client/builtins/gameservers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/client/builtins/gameservers.py -------------------------------------------------------------------------------- /steam/client/builtins/leaderboards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/client/builtins/leaderboards.py -------------------------------------------------------------------------------- /steam/client/builtins/unified_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/client/builtins/unified_messages.py -------------------------------------------------------------------------------- /steam/client/builtins/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/client/builtins/user.py -------------------------------------------------------------------------------- /steam/client/builtins/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/client/builtins/web.py -------------------------------------------------------------------------------- /steam/client/cdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/client/cdn.py -------------------------------------------------------------------------------- /steam/client/gc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/client/gc.py -------------------------------------------------------------------------------- /steam/client/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/client/user.py -------------------------------------------------------------------------------- /steam/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /steam/core/cm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/core/cm.py -------------------------------------------------------------------------------- /steam/core/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/core/connection.py -------------------------------------------------------------------------------- /steam/core/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/core/crypto.py -------------------------------------------------------------------------------- /steam/core/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/core/manifest.py -------------------------------------------------------------------------------- /steam/core/msg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/core/msg/__init__.py -------------------------------------------------------------------------------- /steam/core/msg/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/core/msg/headers.py -------------------------------------------------------------------------------- /steam/core/msg/structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/core/msg/structs.py -------------------------------------------------------------------------------- /steam/core/msg/unified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/core/msg/unified.py -------------------------------------------------------------------------------- /steam/enums/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/enums/__init__.py -------------------------------------------------------------------------------- /steam/enums/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/enums/base.py -------------------------------------------------------------------------------- /steam/enums/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/enums/common.py -------------------------------------------------------------------------------- /steam/enums/emsg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/enums/emsg.py -------------------------------------------------------------------------------- /steam/enums/proto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/enums/proto.py -------------------------------------------------------------------------------- /steam/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/exceptions.py -------------------------------------------------------------------------------- /steam/game_servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/game_servers.py -------------------------------------------------------------------------------- /steam/globalid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/globalid.py -------------------------------------------------------------------------------- /steam/guard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/guard.py -------------------------------------------------------------------------------- /steam/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/monkey.py -------------------------------------------------------------------------------- /steam/protobufs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /steam/protobufs/content_manifest_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/content_manifest_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/encrypted_app_ticket_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/encrypted_app_ticket_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/enums_clientserver_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/enums_clientserver_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/enums_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/enums_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/enums_productinfo_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/enums_productinfo_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/gc_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/gc_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/offline_ticket_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/offline_ticket_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_auth_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_auth_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_base_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_base_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_broadcast_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_broadcast_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_chat_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_chat_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_client_objects_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_client_objects_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_clientserver_2_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_clientserver_2_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_clientserver_appinfo_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_clientserver_appinfo_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_clientserver_friends_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_clientserver_friends_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_clientserver_gameservers_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_clientserver_gameservers_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_clientserver_lbs_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_clientserver_lbs_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_clientserver_login_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_clientserver_login_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_clientserver_mms_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_clientserver_mms_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_clientserver_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_clientserver_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_clientserver_ucm_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_clientserver_ucm_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_clientserver_uds_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_clientserver_uds_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_clientserver_ufs_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_clientserver_ufs_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_clientserver_userstats_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_clientserver_userstats_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_cloud_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_cloud_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_contentsystem_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_contentsystem_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_credentials_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_credentials_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_datapublisher_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_datapublisher_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_depotbuilder_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_depotbuilder_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_deviceauth_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_deviceauth_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_econ_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_econ_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_friendmessages_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_friendmessages_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_gamenotifications_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_gamenotifications_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_gameservers_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_gameservers_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_inventory_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_inventory_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_linkfilter_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_linkfilter_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_lobbymatchmaking_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_lobbymatchmaking_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_market_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_market_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_marketingmessages_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_marketingmessages_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_offline_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_offline_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_parental_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_parental_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_parties_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_parties_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_partnerapps_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_partnerapps_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_physicalgoods_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_physicalgoods_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_player_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_player_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_publishedfile_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_publishedfile_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_qms_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_qms_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_remoteplay_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_remoteplay_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_secrets_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_secrets_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_shader_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_shader_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_site_license_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_site_license_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_star_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_star_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_steamtv_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_steamtv_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_store_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_store_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_storebrowse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_storebrowse_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_timedtrial_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_timedtrial_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_twofactor_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_twofactor_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_unified_base_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_unified_base_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_unified_test_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_unified_test_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_useraccount_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_useraccount_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_video_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_video_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_webui_friends_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_webui_friends_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/steammessages_workshop_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/steammessages_workshop_pb2.py -------------------------------------------------------------------------------- /steam/protobufs/test_messages_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/protobufs/test_messages_pb2.py -------------------------------------------------------------------------------- /steam/steamid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/steamid.py -------------------------------------------------------------------------------- /steam/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/utils/__init__.py -------------------------------------------------------------------------------- /steam/utils/appcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/utils/appcache.py -------------------------------------------------------------------------------- /steam/utils/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/utils/binary.py -------------------------------------------------------------------------------- /steam/utils/proto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/utils/proto.py -------------------------------------------------------------------------------- /steam/utils/throttle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/utils/throttle.py -------------------------------------------------------------------------------- /steam/utils/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/utils/web.py -------------------------------------------------------------------------------- /steam/versions_report/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/versions_report/__init__.py -------------------------------------------------------------------------------- /steam/versions_report/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/versions_report/__main__.py -------------------------------------------------------------------------------- /steam/webapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/webapi.py -------------------------------------------------------------------------------- /steam/webauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/steam/webauth.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/generete_webauth_vcr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/tests/generete_webauth_vcr.py -------------------------------------------------------------------------------- /tests/test_core_cm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/tests/test_core_cm.py -------------------------------------------------------------------------------- /tests/test_core_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/tests/test_core_crypto.py -------------------------------------------------------------------------------- /tests/test_game_servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/tests/test_game_servers.py -------------------------------------------------------------------------------- /tests/test_guard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/tests/test_guard.py -------------------------------------------------------------------------------- /tests/test_steamid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/tests/test_steamid.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_webapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/tests/test_webapi.py -------------------------------------------------------------------------------- /tests/test_webauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/tests/test_webauth.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/tox.ini -------------------------------------------------------------------------------- /vcr/steamid_community_urls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/vcr/steamid_community_urls.yaml -------------------------------------------------------------------------------- /vcr/webapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/vcr/webapi.yaml -------------------------------------------------------------------------------- /vcr/webauth_user_pass_only_fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/vcr/webauth_user_pass_only_fail.yaml -------------------------------------------------------------------------------- /vcr/webauth_user_pass_only_success.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValvePython/steam/HEAD/vcr/webauth_user_pass_only_success.yaml --------------------------------------------------------------------------------