pysteam-client 1.4.6__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (291) hide show
  1. pysteam_client-1.4.6.dist-info/LICENSE +19 -0
  2. pysteam_client-1.4.6.dist-info/METADATA +225 -0
  3. pysteam_client-1.4.6.dist-info/RECORD +291 -0
  4. pysteam_client-1.4.6.dist-info/WHEEL +4 -0
  5. pysteam_client-1.4.6.dist-info/entry_points.txt +9 -0
  6. scripts/__init__.py +7 -0
  7. scripts/pb_compile.py +111 -0
  8. scripts/pb_fetch.py +104 -0
  9. scripts/pb_gen_enums.py +100 -0
  10. scripts/pb_postprocess.py +71 -0
  11. scripts/pb_services.py +69 -0
  12. scripts/pb_update.py +36 -0
  13. scripts/vcr_webapi.py +154 -0
  14. scripts/vcr_webauth.py +229 -0
  15. steam/__init__.py +13 -0
  16. steam/client/__init__.py +698 -0
  17. steam/client/builtins/__init__.py +17 -0
  18. steam/client/builtins/apps.py +430 -0
  19. steam/client/builtins/friends.py +232 -0
  20. steam/client/builtins/gameservers.py +230 -0
  21. steam/client/builtins/leaderboards.py +252 -0
  22. steam/client/builtins/unified_messages.py +124 -0
  23. steam/client/builtins/user.py +209 -0
  24. steam/client/builtins/web.py +158 -0
  25. steam/client/cdn.py +987 -0
  26. steam/client/gc.py +120 -0
  27. steam/client/user.py +169 -0
  28. steam/core/__init__.py +0 -0
  29. steam/core/cm.py +589 -0
  30. steam/core/connection.py +207 -0
  31. steam/core/crypto.py +106 -0
  32. steam/core/manifest.py +319 -0
  33. steam/core/msg/__init__.py +286 -0
  34. steam/core/msg/headers.py +189 -0
  35. steam/core/msg/structs.py +426 -0
  36. steam/core/msg/unified.py +140 -0
  37. steam/enums/__init__.py +109 -0
  38. steam/enums/base.py +5 -0
  39. steam/enums/common.py +1097 -0
  40. steam/enums/emsg.py +1986 -0
  41. steam/enums/proto.py +4127 -0
  42. steam/exceptions.py +49 -0
  43. steam/game_servers.py +674 -0
  44. steam/globalid.py +93 -0
  45. steam/guard.py +669 -0
  46. steam/monkey.py +26 -0
  47. steam/protobufs/__init__.py +0 -0
  48. steam/protobufs/clientmetrics_pb2.py +45 -0
  49. steam/protobufs/clientmetrics_pb2.pyi +182 -0
  50. steam/protobufs/content_manifest_pb2.py +51 -0
  51. steam/protobufs/content_manifest_pb2.pyi +239 -0
  52. steam/protobufs/contenthubs_pb2.py +47 -0
  53. steam/protobufs/contenthubs_pb2.pyi +156 -0
  54. steam/protobufs/encrypted_app_ticket_pb2.py +37 -0
  55. steam/protobufs/encrypted_app_ticket_pb2.pyi +47 -0
  56. steam/protobufs/enums_clientserver_pb2.py +49 -0
  57. steam/protobufs/enums_clientserver_pb2.pyi +3031 -0
  58. steam/protobufs/enums_pb2.py +203 -0
  59. steam/protobufs/enums_pb2.pyi +2235 -0
  60. steam/protobufs/enums_productinfo_pb2.py +39 -0
  61. steam/protobufs/enums_productinfo_pb2.pyi +89 -0
  62. steam/protobufs/gc_pb2.py +38 -0
  63. steam/protobufs/gc_pb2.pyi +84 -0
  64. steam/protobufs/htmlmessages_pb2.py +372 -0
  65. steam/protobufs/htmlmessages_pb2.pyi +4101 -0
  66. steam/protobufs/offline_ticket_pb2.py +36 -0
  67. steam/protobufs/offline_ticket_pb2.pyi +50 -0
  68. steam/protobufs/steamdatagram_messages_auth_pb2.py +50 -0
  69. steam/protobufs/steamdatagram_messages_auth_pb2.pyi +247 -0
  70. steam/protobufs/steamdatagram_messages_sdr_pb2.py +149 -0
  71. steam/protobufs/steamdatagram_messages_sdr_pb2.pyi +1872 -0
  72. steam/protobufs/steammessages_accounthardware_pb2.py +122 -0
  73. steam/protobufs/steammessages_accounthardware_pb2.pyi +872 -0
  74. steam/protobufs/steammessages_appoverview_pb2.py +52 -0
  75. steam/protobufs/steammessages_appoverview_pb2.pyi +455 -0
  76. steam/protobufs/steammessages_auth_pb2.py +161 -0
  77. steam/protobufs/steammessages_auth_pb2.pyi +1454 -0
  78. steam/protobufs/steammessages_base_pb2.py +96 -0
  79. steam/protobufs/steammessages_base_pb2.pyi +1268 -0
  80. steam/protobufs/steammessages_broadcast_pb2.py +216 -0
  81. steam/protobufs/steammessages_broadcast_pb2.pyi +2146 -0
  82. steam/protobufs/steammessages_chat_pb2.py +376 -0
  83. steam/protobufs/steammessages_chat_pb2.pyi +3944 -0
  84. steam/protobufs/steammessages_childprocessquery_pb2.py +42 -0
  85. steam/protobufs/steammessages_childprocessquery_pb2.pyi +100 -0
  86. steam/protobufs/steammessages_client_objects_pb2.py +194 -0
  87. steam/protobufs/steammessages_client_objects_pb2.pyi +2480 -0
  88. steam/protobufs/steammessages_clientlanp2p_pb2.py +48 -0
  89. steam/protobufs/steammessages_clientlanp2p_pb2.pyi +170 -0
  90. steam/protobufs/steammessages_clientmetrics_pb2.py +106 -0
  91. steam/protobufs/steammessages_clientmetrics_pb2.pyi +964 -0
  92. steam/protobufs/steammessages_clientnotificationtypes_pb2.py +131 -0
  93. steam/protobufs/steammessages_clientnotificationtypes_pb2.pyi +1132 -0
  94. steam/protobufs/steammessages_clientserver_2_pb2.py +270 -0
  95. steam/protobufs/steammessages_clientserver_2_pb2.pyi +2720 -0
  96. steam/protobufs/steammessages_clientserver_appinfo_pb2.py +78 -0
  97. steam/protobufs/steammessages_clientserver_appinfo_pb2.pyi +549 -0
  98. steam/protobufs/steammessages_clientserver_friends_pb2.py +116 -0
  99. steam/protobufs/steammessages_clientserver_friends_pb2.pyi +1044 -0
  100. steam/protobufs/steammessages_clientserver_gameservers_pb2.py +72 -0
  101. steam/protobufs/steammessages_clientserver_gameservers_pb2.pyi +601 -0
  102. steam/protobufs/steammessages_clientserver_lbs_pb2.py +54 -0
  103. steam/protobufs/steammessages_clientserver_lbs_pb2.pyi +271 -0
  104. steam/protobufs/steammessages_clientserver_login_pb2.py +68 -0
  105. steam/protobufs/steammessages_clientserver_login_pb2.pyi +594 -0
  106. steam/protobufs/steammessages_clientserver_mms_pb2.py +96 -0
  107. steam/protobufs/steammessages_clientserver_mms_pb2.pyi +892 -0
  108. steam/protobufs/steammessages_clientserver_pb2.py +145 -0
  109. steam/protobufs/steammessages_clientserver_pb2.pyi +1485 -0
  110. steam/protobufs/steammessages_clientserver_ucm_pb2.py +90 -0
  111. steam/protobufs/steammessages_clientserver_ucm_pb2.pyi +820 -0
  112. steam/protobufs/steammessages_clientserver_uds_pb2.py +74 -0
  113. steam/protobufs/steammessages_clientserver_uds_pb2.pyi +543 -0
  114. steam/protobufs/steammessages_clientserver_ufs_pb2.py +86 -0
  115. steam/protobufs/steammessages_clientserver_ufs_pb2.pyi +657 -0
  116. steam/protobufs/steammessages_clientserver_userstats_pb2.py +56 -0
  117. steam/protobufs/steammessages_clientserver_userstats_pb2.pyi +270 -0
  118. steam/protobufs/steammessages_clientserver_video_pb2.py +48 -0
  119. steam/protobufs/steammessages_clientserver_video_pb2.pyi +217 -0
  120. steam/protobufs/steammessages_clientsettings_pb2.py +587 -0
  121. steam/protobufs/steammessages_clientsettings_pb2.pyi +1055 -0
  122. steam/protobufs/steammessages_cloud_pb2.py +162 -0
  123. steam/protobufs/steammessages_cloud_pb2.pyi +1530 -0
  124. steam/protobufs/steammessages_community_pb2.py +179 -0
  125. steam/protobufs/steammessages_community_pb2.pyi +1689 -0
  126. steam/protobufs/steammessages_contentsystem_pb2.py +82 -0
  127. steam/protobufs/steammessages_contentsystem_pb2.pyi +530 -0
  128. steam/protobufs/steammessages_credentials_pb2.py +62 -0
  129. steam/protobufs/steammessages_credentials_pb2.pyi +304 -0
  130. steam/protobufs/steammessages_datapublisher_pb2.py +64 -0
  131. steam/protobufs/steammessages_datapublisher_pb2.pyi +352 -0
  132. steam/protobufs/steammessages_depotbuilder_pb2.py +68 -0
  133. steam/protobufs/steammessages_depotbuilder_pb2.pyi +389 -0
  134. steam/protobufs/steammessages_deviceauth_pb2.py +122 -0
  135. steam/protobufs/steammessages_deviceauth_pb2.pyi +628 -0
  136. steam/protobufs/steammessages_econ_pb2.py +86 -0
  137. steam/protobufs/steammessages_econ_pb2.pyi +749 -0
  138. steam/protobufs/steammessages_familygroups_pb2.py +193 -0
  139. steam/protobufs/steammessages_familygroups_pb2.pyi +1728 -0
  140. steam/protobufs/steammessages_friendmessages_pb2.py +93 -0
  141. steam/protobufs/steammessages_friendmessages_pb2.pyi +639 -0
  142. steam/protobufs/steammessages_gamenetworking_pb2.py +46 -0
  143. steam/protobufs/steammessages_gamenetworking_pb2.pyi +87 -0
  144. steam/protobufs/steammessages_gamenetworkingui_pb2.py +47 -0
  145. steam/protobufs/steammessages_gamenetworkingui_pb2.pyi +225 -0
  146. steam/protobufs/steammessages_gamenotifications_pb2.py +84 -0
  147. steam/protobufs/steammessages_gamenotifications_pb2.pyi +481 -0
  148. steam/protobufs/steammessages_gamerecording_objects_pb2.py +40 -0
  149. steam/protobufs/steammessages_gamerecording_objects_pb2.pyi +81 -0
  150. steam/protobufs/steammessages_gamerecording_pb2.py +75 -0
  151. steam/protobufs/steammessages_gamerecording_pb2.pyi +374 -0
  152. steam/protobufs/steammessages_gameservers_pb2.py +80 -0
  153. steam/protobufs/steammessages_gameservers_pb2.pyi +460 -0
  154. steam/protobufs/steammessages_hiddevices_pb2.py +83 -0
  155. steam/protobufs/steammessages_hiddevices_pb2.pyi +590 -0
  156. steam/protobufs/steammessages_inventory_pb2.py +90 -0
  157. steam/protobufs/steammessages_inventory_pb2.pyi +594 -0
  158. steam/protobufs/steammessages_linkfilter_pb2.py +52 -0
  159. steam/protobufs/steammessages_linkfilter_pb2.pyi +144 -0
  160. steam/protobufs/steammessages_lobbymatchmaking_pb2.py +46 -0
  161. steam/protobufs/steammessages_lobbymatchmaking_pb2.pyi +91 -0
  162. steam/protobufs/steammessages_market_pb2.py +44 -0
  163. steam/protobufs/steammessages_market_pb2.pyi +71 -0
  164. steam/protobufs/steammessages_marketingmessages_pb2.py +139 -0
  165. steam/protobufs/steammessages_marketingmessages_pb2.pyi +1181 -0
  166. steam/protobufs/steammessages_notifications_pb2.py +52 -0
  167. steam/protobufs/steammessages_notifications_pb2.pyi +203 -0
  168. steam/protobufs/steammessages_offline_pb2.py +51 -0
  169. steam/protobufs/steammessages_offline_pb2.pyi +118 -0
  170. steam/protobufs/steammessages_parental_objects_pb2.py +50 -0
  171. steam/protobufs/steammessages_parental_objects_pb2.pyi +270 -0
  172. steam/protobufs/steammessages_parental_pb2.py +113 -0
  173. steam/protobufs/steammessages_parental_pb2.pyi +692 -0
  174. steam/protobufs/steammessages_parties_pb2.py +66 -0
  175. steam/protobufs/steammessages_parties_pb2.pyi +284 -0
  176. steam/protobufs/steammessages_partnerapps_pb2.py +72 -0
  177. steam/protobufs/steammessages_partnerapps_pb2.pyi +379 -0
  178. steam/protobufs/steammessages_player_pb2.py +365 -0
  179. steam/protobufs/steammessages_player_pb2.pyi +3734 -0
  180. steam/protobufs/steammessages_publishedfile_pb2.py +247 -0
  181. steam/protobufs/steammessages_publishedfile_pb2.pyi +2820 -0
  182. steam/protobufs/steammessages_qms_pb2.py +68 -0
  183. steam/protobufs/steammessages_qms_pb2.pyi +374 -0
  184. steam/protobufs/steammessages_remoteclient_discovery_pb2.py +93 -0
  185. steam/protobufs/steammessages_remoteclient_discovery_pb2.pyi +879 -0
  186. steam/protobufs/steammessages_remoteclient_pb2.py +111 -0
  187. steam/protobufs/steammessages_remoteclient_pb2.pyi +1000 -0
  188. steam/protobufs/steammessages_remoteclient_service_messages_pb2.py +146 -0
  189. steam/protobufs/steammessages_remoteclient_service_messages_pb2.pyi +1238 -0
  190. steam/protobufs/steammessages_remoteclient_service_pb2.py +45 -0
  191. steam/protobufs/steammessages_remoteclient_service_pb2.pyi +8 -0
  192. steam/protobufs/steammessages_remoteplay_pb2.py +317 -0
  193. steam/protobufs/steammessages_remoteplay_pb2.pyi +3543 -0
  194. steam/protobufs/steammessages_secrets_pb2.py +48 -0
  195. steam/protobufs/steammessages_secrets_pb2.pyi +119 -0
  196. steam/protobufs/steammessages_shader_pb2.py +72 -0
  197. steam/protobufs/steammessages_shader_pb2.pyi +365 -0
  198. steam/protobufs/steammessages_site_license_pb2.py +74 -0
  199. steam/protobufs/steammessages_site_license_pb2.pyi +354 -0
  200. steam/protobufs/steammessages_sitelicenseclient_pb2.py +50 -0
  201. steam/protobufs/steammessages_sitelicenseclient_pb2.pyi +160 -0
  202. steam/protobufs/steammessages_siteserverui_pb2.py +84 -0
  203. steam/protobufs/steammessages_siteserverui_pb2.pyi +529 -0
  204. steam/protobufs/steammessages_star_pb2.py +92 -0
  205. steam/protobufs/steammessages_star_pb2.pyi +237 -0
  206. steam/protobufs/steammessages_steamtv_pb2.py +216 -0
  207. steam/protobufs/steammessages_steamtv_pb2.pyi +2005 -0
  208. steam/protobufs/steammessages_store_pb2.py +181 -0
  209. steam/protobufs/steammessages_store_pb2.pyi +1676 -0
  210. steam/protobufs/steammessages_storebrowse_pb2.py +169 -0
  211. steam/protobufs/steammessages_storebrowse_pb2.pyi +2131 -0
  212. steam/protobufs/steammessages_timedtrial_pb2.py +52 -0
  213. steam/protobufs/steammessages_timedtrial_pb2.pyi +143 -0
  214. steam/protobufs/steammessages_twofactor_pb2.py +80 -0
  215. steam/protobufs/steammessages_twofactor_pb2.pyi +590 -0
  216. steam/protobufs/steammessages_unified_base_pb2.py +42 -0
  217. steam/protobufs/steammessages_unified_base_pb2.pyi +85 -0
  218. steam/protobufs/steammessages_unified_test_pb2.py +66 -0
  219. steam/protobufs/steammessages_unified_test_pb2.pyi +193 -0
  220. steam/protobufs/steammessages_useraccount_pb2.py +106 -0
  221. steam/protobufs/steammessages_useraccount_pb2.pyi +840 -0
  222. steam/protobufs/steammessages_vac_pb2.py +48 -0
  223. steam/protobufs/steammessages_vac_pb2.pyi +125 -0
  224. steam/protobufs/steammessages_video_pb2.py +64 -0
  225. steam/protobufs/steammessages_video_pb2.pyi +220 -0
  226. steam/protobufs/steammessages_virtualcontroller_pb2.py +58 -0
  227. steam/protobufs/steammessages_virtualcontroller_pb2.pyi +454 -0
  228. steam/protobufs/steammessages_workshop_pb2.py +44 -0
  229. steam/protobufs/steammessages_workshop_pb2.pyi +62 -0
  230. steam/protobufs/steamnetworkingsockets_messages_certs_pb2.py +45 -0
  231. steam/protobufs/steamnetworkingsockets_messages_certs_pb2.pyi +155 -0
  232. steam/protobufs/steamnetworkingsockets_messages_pb2.py +72 -0
  233. steam/protobufs/steamnetworkingsockets_messages_pb2.pyi +638 -0
  234. steam/protobufs/steamnetworkingsockets_messages_udp_pb2.py +55 -0
  235. steam/protobufs/steamnetworkingsockets_messages_udp_pb2.pyi +272 -0
  236. steam/protobufs/test_messages_pb2.py +42 -0
  237. steam/protobufs/test_messages_pb2.pyi +112 -0
  238. steam/protobufs/webuimessages_achievements_pb2.py +48 -0
  239. steam/protobufs/webuimessages_achievements_pb2.pyi +90 -0
  240. steam/protobufs/webuimessages_audio_pb2.py +99 -0
  241. steam/protobufs/webuimessages_audio_pb2.pyi +503 -0
  242. steam/protobufs/webuimessages_base_pb2.py +42 -0
  243. steam/protobufs/webuimessages_base_pb2.pyi +58 -0
  244. steam/protobufs/webuimessages_bluetooth_pb2.py +101 -0
  245. steam/protobufs/webuimessages_bluetooth_pb2.pyi +589 -0
  246. steam/protobufs/webuimessages_gamenotes_pb2.py +46 -0
  247. steam/protobufs/webuimessages_gamenotes_pb2.pyi +59 -0
  248. steam/protobufs/webuimessages_gamerecording_pb2.py +234 -0
  249. steam/protobufs/webuimessages_gamerecording_pb2.pyi +2067 -0
  250. steam/protobufs/webuimessages_gamerecordingfiles_pb2.py +64 -0
  251. steam/protobufs/webuimessages_gamerecordingfiles_pb2.pyi +444 -0
  252. steam/protobufs/webuimessages_gamescope_pb2.py +67 -0
  253. steam/protobufs/webuimessages_gamescope_pb2.pyi +286 -0
  254. steam/protobufs/webuimessages_hardwareupdate_pb2.py +77 -0
  255. steam/protobufs/webuimessages_hardwareupdate_pb2.pyi +333 -0
  256. steam/protobufs/webuimessages_leds_pb2.py +85 -0
  257. steam/protobufs/webuimessages_leds_pb2.pyi +438 -0
  258. steam/protobufs/webuimessages_screensaver_pb2.py +49 -0
  259. steam/protobufs/webuimessages_screensaver_pb2.pyi +67 -0
  260. steam/protobufs/webuimessages_sharedjscontext_pb2.py +49 -0
  261. steam/protobufs/webuimessages_sharedjscontext_pb2.pyi +97 -0
  262. steam/protobufs/webuimessages_sleep_pb2.py +67 -0
  263. steam/protobufs/webuimessages_sleep_pb2.pyi +217 -0
  264. steam/protobufs/webuimessages_steamengine_pb2.py +60 -0
  265. steam/protobufs/webuimessages_steamengine_pb2.pyi +197 -0
  266. steam/protobufs/webuimessages_steaminput_pb2.py +160 -0
  267. steam/protobufs/webuimessages_steaminput_pb2.pyi +1484 -0
  268. steam/protobufs/webuimessages_steamos_pb2.py +125 -0
  269. steam/protobufs/webuimessages_steamos_pb2.pyi +788 -0
  270. steam/protobufs/webuimessages_storagedevicemanager_pb2.py +79 -0
  271. steam/protobufs/webuimessages_storagedevicemanager_pb2.pyi +402 -0
  272. steam/protobufs/webuimessages_systemmanager_pb2.py +50 -0
  273. steam/protobufs/webuimessages_systemmanager_pb2.pyi +80 -0
  274. steam/protobufs/webuimessages_transport_pb2.py +48 -0
  275. steam/protobufs/webuimessages_transport_pb2.pyi +63 -0
  276. steam/protobufs/webuimessages_transportvalidation_pb2.py +104 -0
  277. steam/protobufs/webuimessages_transportvalidation_pb2.pyi +525 -0
  278. steam/protobufs/webuimessages_user_pb2.py +50 -0
  279. steam/protobufs/webuimessages_user_pb2.pyi +93 -0
  280. steam/py.typed +0 -0
  281. steam/steamid.py +631 -0
  282. steam/utils/__init__.py +98 -0
  283. steam/utils/appcache.py +161 -0
  284. steam/utils/binary.py +69 -0
  285. steam/utils/proto.py +110 -0
  286. steam/utils/throttle.py +64 -0
  287. steam/utils/web.py +24 -0
  288. steam/versions_report/__init__.py +55 -0
  289. steam/versions_report/__main__.py +4 -0
  290. steam/webapi.py +535 -0
  291. steam/webauth.py +495 -0
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2015 Rossen Georgiev <rossen@rgp.io>
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
4
+ this software and associated documentation files (the "Software"), to deal in
5
+ the Software without restriction, including without limitation the rights to
6
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7
+ of the Software, and to permit persons to whom the Software is furnished to do
8
+ so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.
@@ -0,0 +1,225 @@
1
+ Metadata-Version: 2.1
2
+ Name: pysteam-client
3
+ Version: 1.4.6
4
+ Summary: Module for interacting with various Steam features
5
+ Home-page: https://github.com/ValvePython/steam
6
+ License: MIT
7
+ Keywords: valve,steam,steamid,api,webapi,steamcommunity
8
+ Author: Rossen Georgiev
9
+ Author-email: rossen@rgp.io
10
+ Requires-Python: >=3.13.11,<4.0.0
11
+ Classifier: Development Status :: 5 - Production/Stable
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Natural Language :: English
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Provides-Extra: client
19
+ Requires-Dist: cachetools (>=3.0.0)
20
+ Requires-Dist: gevent (>=1.5.0) ; extra == "client"
21
+ Requires-Dist: gevent-eventemitter (>=2.1) ; extra == "client"
22
+ Requires-Dist: protobuf (>=5.26,<7) ; extra == "client"
23
+ Requires-Dist: pycryptodomex (>=3.7.0)
24
+ Requires-Dist: requests (>=2.9.1)
25
+ Requires-Dist: six (>=1.10.0)
26
+ Requires-Dist: urllib3 (<2)
27
+ Requires-Dist: vdf (>=3.3)
28
+ Project-URL: Repository, https://github.com/H47R15/steam
29
+ Description-Content-Type: text/x-rst
30
+
31
+ steam
32
+ =====
33
+
34
+ Python client for the Steam network — CM protocol, PICS / CDN, WebAuth,
35
+ Web API, Steam Guard, SteamIDs, master-server queries.
36
+
37
+ **This is a fork of** `ValvePython/steam <https://github.com/ValvePython/steam>`_
38
+ maintained under `H47R15/steam <https://github.com/H47R15/steam>`_. The
39
+ upstream project is largely inactive; this fork exists to keep the library
40
+ working against modern Python and current Steam wire protocols.
41
+
42
+ What changed vs. upstream
43
+ -------------------------
44
+
45
+ * **Python 3.13+ only.** Dropped the py2 / py<3.4 compat shims (``six``,
46
+ ``six.moves``, ``raw_input``, ``xrange``, ``long``, ``win_inet_pton``,
47
+ ``backports.lzma``, ``enum34``, …).
48
+ * **Modern protobuf runtime + regenerated ``_pb2`` files.** Bumped from
49
+ ``protobuf==3.20.3`` to ``>=5.26,<7`` and re-ran ``protoc`` (v33.2) against
50
+ fresh SteamDB proto sources. The old per-message
51
+ ``_reflection.GeneratedProtocolMessageType`` codegen shrunk ~20× to the
52
+ modern ``_descriptor_pool.AddSerializedFile`` + ``_builder`` pattern
53
+ (``steammessages_base_pb2.py``: 2 200 → 96 lines).
54
+ * **Full ``.pyi`` type stubs** for every ``_pb2`` file via ``mypy-protobuf``
55
+ — ``msg.field`` accesses now type-check under Pylance / pyright.
56
+ * **Poetry-first workflow.** ``pip`` + ``Makefile`` + ``setup.py``
57
+ replaced by a single ``pyproject.toml``; regeneration steps registered as
58
+ ``poetry run pb-*`` console scripts (details below).
59
+ * **~50 new proto files** picked up from upstream since the fork was last
60
+ synced (family groups, game recording, remote client, SteamOS webui
61
+ messages, HTML messages, virtual controller, community messages, and
62
+ more). ``steam/enums/proto.py`` grew from 90 → 247 enums.
63
+ * Real latent bug fixes surfaced while porting — e.g. a ``list + map(...)``
64
+ ``TypeError`` in ``struct.py``, a tuple-vs-int mismatch in
65
+ ``MarketingMessage.flags``, ``hexlify(None)`` in avatar-URL fallback,
66
+ broken ``CookieJar`` iteration in ``WebAuth``.
67
+
68
+ Requirements
69
+ ------------
70
+
71
+ * Python **3.13.11** (pinned via ``pyproject.toml``). Any newer 3.13.x is
72
+ fine. Older Pythons are not supported.
73
+ * `Poetry <https://python-poetry.org/>`_ for dependency management.
74
+ * ``protoc`` on ``PATH`` — required only when regenerating the ``_pb2``
75
+ files (``poetry run pb-compile``). Install via ``brew install protobuf``
76
+ on macOS or the equivalent from your distro.
77
+
78
+ Install
79
+ -------
80
+
81
+ Clone the repo and install with poetry:
82
+
83
+ .. code:: bash
84
+
85
+ git clone https://github.com/H47R15/steam.git
86
+ cd steam
87
+ poetry install --with dev --extras client
88
+
89
+ The ``client`` extra pulls in ``gevent`` + ``protobuf`` + ``gevent-eventemitter``
90
+ — required by ``SteamClient`` and CDN. Without it, only the
91
+ ``requests``-based subset (WebAPI / WebAuth / SteamID / master-server
92
+ query) is functional.
93
+
94
+ Features
95
+ --------
96
+
97
+ * **SteamClient** — CM protocol client on top of gevent. Login flows
98
+ (password / QR / refresh token), PICS product info, friends list, chat,
99
+ game coordinator hooks.
100
+ * **CDNClient** — content depot downloads with manifest parsing.
101
+ * **WebAuth / MobileWebAuth** — obtain authenticated ``requests.Session``
102
+ cookies for ``store.steampowered.com`` / ``steamcommunity.com``.
103
+ * **WebAPI** — thin wrapper around Steam's ``api.steampowered.com`` that
104
+ introspects the interface catalogue at construction time.
105
+ * **SteamAuthenticator** — enable / disable / verify Steam Guard 2FA.
106
+ * **SteamID** — parse and convert between the 32-bit / 64-bit /
107
+ ``STEAM_X:Y:Z`` / community-URL representations.
108
+ * **Master server query protocol** — query masters directly or through
109
+ ``SteamClient``.
110
+
111
+ Dev workflow (poetry)
112
+ ---------------------
113
+
114
+ All commands run from the repo root.
115
+
116
+ .. code:: bash
117
+
118
+ poetry install --with dev --extras client # install everything
119
+ poetry run pytest # run the test suite (~83 tests, ~1s)
120
+ poetry run pytest -k test_webauth # filter to a subset
121
+ poetry run pytest --tb=short -q # concise output
122
+
123
+ poetry run pylint steam # optional lint pass
124
+
125
+ Regenerating protobufs
126
+ ----------------------
127
+
128
+ The ``_pb2.py`` and ``_pb2.pyi`` files under ``steam/protobufs`` are
129
+ generated from ``.proto`` sources under ``protobufs/``. Console scripts:
130
+
131
+ .. code:: bash
132
+
133
+ poetry run pb-fetch # download + normalize .proto files from SteamDB
134
+ poetry run pb-compile # protoc --python_out --mypy_out + post-process
135
+ poetry run pb-services # regenerate steam/core/msg/unified.py service map
136
+ poetry run pb-gen-enums # regenerate steam/enums/proto.py from *_pb2
137
+
138
+ poetry run pb-update # all four in sequence — the usual entry point
139
+
140
+ ``pb-fetch`` reads URLs from ``protobuf_list.txt`` (comments and blank
141
+ lines skipped) and downloads them into ``protobufs/``. Locally-maintained
142
+ ``.proto`` files (``gc.proto``, ``test_messages.proto``) are set aside via
143
+ ``.notouch`` rename before the fetch and restored after.
144
+
145
+ ``pb-compile`` wipes ``steam/protobufs/*_pb2.{py,pyi}`` first, then runs a
146
+ single ``protoc`` invocation over every ``.proto``. Post-processing:
147
+
148
+ * ``.py`` — sibling protobuf imports get the ``steam.protobufs.`` prefix
149
+ so runtime import works without ``steam/protobufs/`` on ``sys.path``.
150
+ * ``.pyi`` — ``DESCRIPTOR: _descriptor.Descriptor`` overrides inside each
151
+ message class are stripped (they trip
152
+ ``reportIncompatibleVariableOverride`` under types-protobuf 7.34+; the
153
+ parent ``Message`` class's union type is inherited instead).
154
+
155
+ VCR fixtures
156
+ ------------
157
+
158
+ Web-facing tests (``test_webapi.py``, ``test_webauth.py``,
159
+ ``test_steamid.py``) replay recorded HTTP fixtures from ``vcr/*.yaml`` in
160
+ ``RecordMode.NONE`` — no live network, no credentials needed for CI.
161
+
162
+ To regenerate the ``webapi.yaml`` cassette against a fresh Steam API
163
+ response, copy ``.env.example`` to ``.env`` and fill in ``STEAM_API_KEY``
164
+ (see the template for instructions on where to get one), then follow the
165
+ regen recipe at the top of ``tests/test_webapi.py``.
166
+
167
+ The ``webauth_*.yaml`` cassettes are regenerated by
168
+ ``tests/generete_webauth_vcr.py`` — needs real Steam credentials at run
169
+ time; run interactively when the anonymized replay drifts from live.
170
+
171
+ Live smoke test
172
+ ---------------
173
+
174
+ Beyond the unit suite, the CM handshake / anonymous-login / PICS-fetch
175
+ end-to-end flow can be smoke-tested against live Steam:
176
+
177
+ .. code:: python
178
+
179
+ from steam.client import SteamClient
180
+
181
+ client = SteamClient()
182
+ assert client.anonymous_login()
183
+ resp = client.get_product_info(apps=[553850], timeout=15) # Helldivers 2
184
+ print(resp['apps'][553850]['common']['name'])
185
+ client.logout()
186
+ client.disconnect()
187
+
188
+ Layout
189
+ ------
190
+
191
+ .. code::
192
+
193
+ steam/
194
+ ├── steam/ # library source
195
+ │ ├── client/ # SteamClient, CDN, builtins/*
196
+ │ ├── core/ # CM protocol, message framing
197
+ │ ├── enums/ # SteamIntEnum wrappers (common.py hand-written,
198
+ │ │ # proto.py auto-generated by pb-gen-enums)
199
+ │ ├── protobufs/ # generated *_pb2.py + *_pb2.pyi
200
+ │ └── utils/
201
+ ├── scripts/ # poetry console-script entry points (pb-*)
202
+ ├── protobufs/ # .proto sources (fetched by pb-fetch)
203
+ ├── typings/ # local pyright stubs (see typings/…/builder.pyi
204
+ │ # for the BuildServices typeshed override)
205
+ ├── tests/ # pytest suite
206
+ ├── vcr/ # recorded HTTP fixtures for offline test replay
207
+ ├── docs/ # Sphinx source (rendered at steam.readthedocs.io
208
+ │ # — kept in-tree but not currently deployed
209
+ │ # from this fork)
210
+ └── pyproject.toml # poetry config + [tool.pyright]
211
+
212
+ Upstream links (reference only — refer to this fork for maintained code):
213
+
214
+ * Upstream: https://github.com/ValvePython/steam
215
+ * Old docs: https://steam.readthedocs.io/en/latest/ (mostly still
216
+ applicable — the library shape has not diverged from upstream, only its
217
+ Python-runtime and protobuf-vintage baseline)
218
+ * Command-line companion (unmaintained upstream):
219
+ https://github.com/ValvePython/steamctl
220
+
221
+ License
222
+ -------
223
+
224
+ MIT (unchanged from upstream). See ``LICENSE``.
225
+
@@ -0,0 +1,291 @@
1
+ scripts/__init__.py,sha256=p0arPPrF4YBXiFZvhfo0SDK85izm2h5rLfhdEFhNFZ0,302
2
+ scripts/pb_compile.py,sha256=IdS7I0oLj71lGgty1q9xJ-yi-k683UQnTd2tXcXNvxY,3493
3
+ scripts/pb_fetch.py,sha256=s6bAYRfRwCUuKYJCOcXhO0c-zY8w9TjtgKbPPqJexqI,3074
4
+ scripts/pb_gen_enums.py,sha256=o7Sim6QWTj2yGRqDVQzT10Yl8yuSrJrt0S3HYYl-3Cc,3425
5
+ scripts/pb_postprocess.py,sha256=0tWXY6WXdONIOdQofxqM2a_yELRtdtRPmydtrX2Vby0,2636
6
+ scripts/pb_services.py,sha256=5T5pWqgVEd2UkEb3eVv27tKjebH0qqggzO91Q4kKk20,2216
7
+ scripts/pb_update.py,sha256=2F41sEbHETKPxePnyLsFKnuHmdcdItHiR_4fLcUwLUA,928
8
+ scripts/vcr_webapi.py,sha256=nNBrtmJqtSfPoHZUn85IsgTYqm4t0VG-A1M10kdeLiw,5169
9
+ scripts/vcr_webauth.py,sha256=-ZHOfBw-RipZZlbZeTqP5IAf6C2tBVKoa1MdIgnZd9w,9366
10
+ steam/__init__.py,sha256=ekSf3RqEMoSdahyVYgcdSev8OCvzKMs15a4qVFBm2dw,444
11
+ steam/client/__init__.py,sha256=YYuvHYquXQjJh9xDDETAcTE5iDyXeYO6PaJv9YFMvSE,26293
12
+ steam/client/builtins/__init__.py,sha256=jvvoVxas2IBHxc_9G1xW90TLML04p6HiPyfPi_igD0E,717
13
+ steam/client/builtins/apps.py,sha256=o1iTMPEThsEPEkOswyHaM9w9uo3BHR6Gfcm3sGzNSOo,17798
14
+ steam/client/builtins/friends.py,sha256=Efxl4zamSk-AUouKgwfB_yxYcQa7YrbgZjVlDjF0nUg,8126
15
+ steam/client/builtins/gameservers.py,sha256=T_65CJ_ZsN_qAKbdMa_t69Hd9adq8rozPYmMCxcPfrA,9534
16
+ steam/client/builtins/leaderboards.py,sha256=ejL1W9dyHruqqhn-OoeERPg7meUfEAhksqhZyHwfBOw,9538
17
+ steam/client/builtins/unified_messages.py,sha256=OtiuOQLJG-VP08nbNY0m7cO7jeGAUgwXrcYcYuVj3Wg,4565
18
+ steam/client/builtins/user.py,sha256=JaEZQfgd2ivSFpsaDfvTOY9TOQB4CQkcBsEPUWpCyjA,7735
19
+ steam/client/builtins/web.py,sha256=_l-A1VIWpwQr9guMMZ_cYlA8urpQav_g_Eq6n2Nhp3U,5567
20
+ steam/client/cdn.py,sha256=jmy5T1ezVcWzXfKb2dxHW2KQI3HHTvB8cbFW8svvHnk,39963
21
+ steam/client/gc.py,sha256=wJWzeyOg8Nb7vn2CHiRGxpZa6eg0Y0YzSD-UcYZFxRk,4045
22
+ steam/client/user.py,sha256=svwSL7s3yp20u-OzZXuJ2UydYOS13Z83JG0AnCGpodk,5625
23
+ steam/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
+ steam/core/cm.py,sha256=TlAy3LoW3nSHHy_P0U5S-l7CcQqprg63gwq6Uc8MXAY,19453
25
+ steam/core/connection.py,sha256=pLwS0dinqaYY06vJFW4czs5uICth32jV4BHtP6ez9QQ,6757
26
+ steam/core/crypto.py,sha256=78lQpgtVQftxJthNpsIp67dKIqb0NtIVnQ27f2fWjOk,3356
27
+ steam/core/manifest.py,sha256=jee0rXr01OwQ9AgE0byaBunyRGBZx6x5ysVlPvf3uy4,9146
28
+ steam/core/msg/__init__.py,sha256=va1-7e8_WfyF1LKbVXA6YcAQO6hi5kU2Rv49O3hGruc,10666
29
+ steam/core/msg/headers.py,sha256=ZQTu-D5_p8fuiEqwxFkVv_2-jfRnxGzpNIFT2gq3XMk,5809
30
+ steam/core/msg/structs.py,sha256=-0n0cxGJDSh7gLMAD9Z1cqYZr3sVv54q0BgxnhgK0ik,12804
31
+ steam/core/msg/unified.py,sha256=o_xkRvdsi8sxE3aJvrc1pfAt4NLFenrCRpbYhgWA4fs,9809
32
+ steam/enums/__init__.py,sha256=XR-X09AmSXh6Y9rq8J5XgP6uckv0A0Du9eBZif_C9Kc,2865
33
+ steam/enums/base.py,sha256=XOElxqfORUpZtoxaSC3wW-fq8irbMvIQXnnEcomWlek,65
34
+ steam/enums/common.py,sha256=jFvZkAx9fExBO7FdqLZwt3tmshpBw_XsxO-zrETcb60,32692
35
+ steam/enums/emsg.py,sha256=99hZ5xT0Y5kSDa-jkC4wuurXmFdUdDqCsLv_LJSDNPQ,70422
36
+ steam/enums/proto.py,sha256=lgstJAhfi9Tvg07xxYr32EH8AS1QrnpXdw4pFcythnc,129441
37
+ steam/exceptions.py,sha256=RYM2ZGb8HQp0ei3uzXZTpkuSaK0maxtQkrVywurBe4Y,1497
38
+ steam/game_servers.py,sha256=y-xkJf0CLMqvh2amSvnk7_qlDJVPFU9BiYBj_JMBOmU,23540
39
+ steam/globalid.py,sha256=_jGr-_JenrqSo2BL6pHba1pullV8z2TyZC6wO4dwvts,2678
40
+ steam/guard.py,sha256=PIlOLrOJb5W5f701Fhel6Xt0C_fjIl7fyn8fjq-dQ-E,24725
41
+ steam/monkey.py,sha256=4lpc80IO0a052Hs_bY0t8GO8glS_DVAYW5Fa9L6vhrU,681
42
+ steam/protobufs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
+ steam/protobufs/clientmetrics_pb2.py,sha256=hBBGrcqRCMPg05QZyIOszRhgzAi7l1QeeXe4EIkhQg0,3678
44
+ steam/protobufs/clientmetrics_pb2.pyi,sha256=QPVGTpPinL0wLQ18V2tSs67lxM6_Oypq4HuE4k0HiWE,9491
45
+ steam/protobufs/content_manifest_pb2.py,sha256=U36Qgv9R7bZDbYG_c8AIJfu83CLiT04q41tkUCiOY0E,4342
46
+ steam/protobufs/content_manifest_pb2.pyi,sha256=8YP3BxzK90TYJvzyZh234bl10H4VuSKvzIp7wJ50SIU,12350
47
+ steam/protobufs/contenthubs_pb2.py,sha256=nVL2KGq2Q6vikYzK0bbUXyE3KVcrxCBnyFrYIJ2jOAs,3275
48
+ steam/protobufs/contenthubs_pb2.pyi,sha256=33wXuMGszpIUKBlIpwMDcJbOee-KDbU_LO5VWGcjZqI,8042
49
+ steam/protobufs/encrypted_app_ticket_pb2.py,sha256=PUcVde6yA81xtIt_TXMDpVyWffxKZrIxLf3GWcydKlU,1666
50
+ steam/protobufs/encrypted_app_ticket_pb2.pyi,sha256=eigdn5cYMBgAFeVk8Y_B2NRWDfqz3Lqa3tyxTOgzgo0,2268
51
+ steam/protobufs/enums_clientserver_pb2.py,sha256=N7EEgO5GJkdaBHbIBx6Np0P7a17UemZfZe4EzteRsro,77192
52
+ steam/protobufs/enums_clientserver_pb2.pyi,sha256=SOuoYPAXZN1gNRskp1V0je3BgUNVKCTJmAVk1QtcoM8,170093
53
+ steam/protobufs/enums_pb2.py,sha256=E94_MpQr659LRUJtMPmodF54UMEO9epNqqXSmBbk2Aw,49385
54
+ steam/protobufs/enums_pb2.pyi,sha256=x58z6xNSz5mOkS8lZ2TdRpYMC8jd2i_hkKmtmG4C6eE,142220
55
+ steam/protobufs/enums_productinfo_pb2.py,sha256=bRJP6cZhsEB2nRnW1_QsOR7DEu4ZkGa-fe7ez9hOPgc,2648
56
+ steam/protobufs/enums_productinfo_pb2.pyi,sha256=M1tW-pn5zD3mH8ru9Pxb81XqpLqxqr-KbgREMXzp7RE,4450
57
+ steam/protobufs/gc_pb2.py,sha256=dbeOmVG0EJZqTcmsrI4DsQz5s0kPgcFUuf_vYHpPrkA,2289
58
+ steam/protobufs/gc_pb2.pyi,sha256=tOOIGQ6rbEw-_ppaGN5l5RBxfmpI51dXF_29IXtnPUU,4247
59
+ steam/protobufs/htmlmessages_pb2.py,sha256=2f-_EX43I4mTKCzgNVrwbYSH_eN5t9P5BCD764ev68c,49454
60
+ steam/protobufs/htmlmessages_pb2.pyi,sha256=eB37QzGZzMn-jOzZwUQV0He96saewvP8FESNv0ke45k,187593
61
+ steam/protobufs/offline_ticket_pb2.py,sha256=9HdxFwa0R32fAKAOIG00QLxosVydHfWc68xLdKZENR0,1473
62
+ steam/protobufs/offline_ticket_pb2.pyi,sha256=ahaaT3PT_0qG7AWDiKJXumH8IERqcrpAR_iDrRuEmBs,1957
63
+ steam/protobufs/steamdatagram_messages_auth_pb2.py,sha256=fRWDr-N3rCRWGejzgcq8NWk-sb1U85Xh2M8n7B6jazU,4794
64
+ steam/protobufs/steamdatagram_messages_auth_pb2.pyi,sha256=TD_Tzmh99kIEqWEVto6mI8zMNdERGtUghmgEP5_Z97g,13661
65
+ steam/protobufs/steamdatagram_messages_sdr_pb2.py,sha256=POOoHIlh6GLwT86gQYeJquFD1IVu3RkUzmKSb8F6e9s,32884
66
+ steam/protobufs/steamdatagram_messages_sdr_pb2.pyi,sha256=Av2nATAncFkdTBlXgDJoMmeXY0pb66LfBbZDrVQQd8E,115995
67
+ steam/protobufs/steammessages_accounthardware_pb2.py,sha256=H0Txh_OdY9bVYHpWYw6-TAF0zN0rPanoWppX1gaIrss,17979
68
+ steam/protobufs/steammessages_accounthardware_pb2.pyi,sha256=m8KW7B0HzNPt1hc7n7uImNOJv6MajOHcu1nraMArn0c,43733
69
+ steam/protobufs/steammessages_appoverview_pb2.py,sha256=3CAegihCrZn0giywXJ2CCEVO6xnjKjEQt7hfeNSMlbc,9184
70
+ steam/protobufs/steammessages_appoverview_pb2.pyi,sha256=6_v9H67JwqT75se5t74p8LZIFG4NbwGPM68lWOn5Hxs,29468
71
+ steam/protobufs/steammessages_auth_pb2.py,sha256=PZThuoqYxO6t73-0kdy914W8CVbfpgqrg-M9YYCxC2o,28793
72
+ steam/protobufs/steammessages_auth_pb2.pyi,sha256=QA2xKTLeVi4BESzNcl6MgjrH6UvXVqxF67oo5SZfAkw,76094
73
+ steam/protobufs/steammessages_base_pb2.py,sha256=MvuFLtT8S8JRDeZcyogH3hAezYtFmynMkVxfhgok5tw,19966
74
+ steam/protobufs/steammessages_base_pb2.pyi,sha256=9WlDZnlxWIi8U-lK55OxTlIVt09P81KFK0jNq4WEyio,72273
75
+ steam/protobufs/steammessages_broadcast_pb2.py,sha256=7yw4bbG1kqYzJ9yrvnPg0SUwAyRlUE6LvWYZpiX4-YA,39355
76
+ steam/protobufs/steammessages_broadcast_pb2.pyi,sha256=oulgypfkXktCe6Sg90bjXeu7e2tK2ZKF4Lm8vt6d96I,111892
77
+ steam/protobufs/steammessages_chat_pb2.py,sha256=dbzGprM87otQ-NqWx1HcwGE-sleGoU2ORhkzugDShDk,69852
78
+ steam/protobufs/steammessages_chat_pb2.pyi,sha256=dLcNJ6KbHHflFrOBQ73l0X30OUzq0CpEtx_-HrBSGQA,207259
79
+ steam/protobufs/steammessages_childprocessquery_pb2.py,sha256=C-9gwCVf_ho1bx9uB-fvWX8pGgpFWCZFAJtT1982J6g,2532
80
+ steam/protobufs/steammessages_childprocessquery_pb2.pyi,sha256=gBPaOsvLprJUQsINEhfwBGi89yxQw9dAl9cg4-I5KyE,5004
81
+ steam/protobufs/steammessages_client_objects_pb2.py,sha256=SocVByWAPJYL3JML66Z3bcYq2b6NDMNQR-osfaxsRTc,39067
82
+ steam/protobufs/steammessages_client_objects_pb2.pyi,sha256=Op84-NRxjLW2f7jfZ8iVDZxbIzgbBBroXwkgz_0BJeo,142079
83
+ steam/protobufs/steammessages_clientlanp2p_pb2.py,sha256=DIMnFWxcM7oEUe9NXISBcFPE_Ro7J6_C0lAz6cwogug,3391
84
+ steam/protobufs/steammessages_clientlanp2p_pb2.pyi,sha256=d1HmNikT4n2tdPs63oRLt_SG05XUaKDbErPpVm5qKGM,7663
85
+ steam/protobufs/steammessages_clientmetrics_pb2.py,sha256=FHrzeUwEa50KyLZmlVRMwCfjSeh2iQbTHI-Pz9WyCXM,18920
86
+ steam/protobufs/steammessages_clientmetrics_pb2.pyi,sha256=ZRtxUn5_-uGPwKYjIThOFnPE2C4JSGdJZhNmfzBF1Yo,53882
87
+ steam/protobufs/steammessages_clientnotificationtypes_pb2.py,sha256=spnzoUz02kpDcMTThEjmk_gZJB2kjZ4ZaHku_K_yLG0,18610
88
+ steam/protobufs/steammessages_clientnotificationtypes_pb2.pyi,sha256=V3ptUHkVyz_2T9H_KRcrQO0fyVgHe6FsRQmQiGO0o6k,57243
89
+ steam/protobufs/steammessages_clientserver_2_pb2.py,sha256=YBmAr6VdJSJs5cKWqs8RXnYVRm7ZCaE3zE6UQ5SLU5w,38017
90
+ steam/protobufs/steammessages_clientserver_2_pb2.pyi,sha256=QMihGhWySEjA6o_jUxToGFYWGANUrD5vT6Zn4SCSVT4,132615
91
+ steam/protobufs/steammessages_clientserver_appinfo_pb2.py,sha256=WbzTw_47nILIJEXvgReSGhkncxh8c_iOYzu6l97fRJA,9067
92
+ steam/protobufs/steammessages_clientserver_appinfo_pb2.pyi,sha256=Z7wVeCiyXG-PYzwya0LzQb44HJvG5xsiXOPFWM_8MIM,28773
93
+ steam/protobufs/steammessages_clientserver_friends_pb2.py,sha256=Z15HZ4fPzN83Tg3R6fgaHcXky64W4LJR6JW8TU1ZRbY,14949
94
+ steam/protobufs/steammessages_clientserver_friends_pb2.pyi,sha256=4nk0PxfwAQY2wo5BbS1cAqDzsO6jGOEpgVEBT_BxVgw,52852
95
+ steam/protobufs/steammessages_clientserver_gameservers_pb2.py,sha256=XtMuiox0PbRPulucMElL7g8nuQjwvbf4Hm9qjYgfLjA,8948
96
+ steam/protobufs/steammessages_clientserver_gameservers_pb2.pyi,sha256=XhTc163o8vGU4_bIBoFzDl8GeftlC8dDJzVx2TJOvcc,31406
97
+ steam/protobufs/steammessages_clientserver_lbs_pb2.py,sha256=H1TA3aCnj5g7Pl18q2XQcbRoCO6dpV8hU3A0CvO-CRA,4792
98
+ steam/protobufs/steammessages_clientserver_lbs_pb2.pyi,sha256=Ralh9eQ094-tk-4S5I7WcOJ73DNc9WPc4OQb-uxzjZI,13656
99
+ steam/protobufs/steammessages_clientserver_login_pb2.py,sha256=sdB7dDI6MhDe1RICpkci3iV7-4mOUEaTQd51RHuvh4U,9412
100
+ steam/protobufs/steammessages_clientserver_login_pb2.pyi,sha256=jliXGcm6Z6ZhxivHeGh3qiCvA916gxFdZMf4SBzFWPs,34673
101
+ steam/protobufs/steammessages_clientserver_mms_pb2.py,sha256=eB5JjG0sHWoLkUKiv7DhZKs-BjbNYAoxLm0VigpGhHU,13137
102
+ steam/protobufs/steammessages_clientserver_mms_pb2.pyi,sha256=hZyHwW3NGBqDEmWfezunNqvQwII6PccfbyPE5ohOuiY,45547
103
+ steam/protobufs/steammessages_clientserver_pb2.py,sha256=mxpgM2mV4sbuV-WrL4bgzMscL4Bj2574flFKOfLQMHY,22060
104
+ steam/protobufs/steammessages_clientserver_pb2.pyi,sha256=o2bF8UBEehhezrLKXxeSOB-8S38RbOMDviH6JrhKBG4,79112
105
+ steam/protobufs/steammessages_clientserver_ucm_pb2.py,sha256=dO_ZP6TFnzaauzHYQNJciGVYe0QPP-VAvpepVMTwHng,13525
106
+ steam/protobufs/steammessages_clientserver_ucm_pb2.pyi,sha256=DYVLi3qZOnTxVNOzxoe3x-CiBL2dsv_iv1mQ6489dY0,43654
107
+ steam/protobufs/steammessages_clientserver_uds_pb2.py,sha256=aUdek0neJ2DS7HodcCO6VAq6UBukyPZDRNcIVgRGdvs,8402
108
+ steam/protobufs/steammessages_clientserver_uds_pb2.pyi,sha256=2ERmi0VRraD5KgGTd-7J2EUadjLh7xIVJVEmZlOLsm0,27255
109
+ steam/protobufs/steammessages_clientserver_ufs_pb2.py,sha256=mxDplZdudhy82qnDp7VGvda2jDYBgNSMaTOKHcLTHtY,10077
110
+ steam/protobufs/steammessages_clientserver_ufs_pb2.pyi,sha256=kcqRHTEtQzqT-GSB0q_7Rv-qOiPOrNW0maLoxzITk9o,31392
111
+ steam/protobufs/steammessages_clientserver_userstats_pb2.py,sha256=qQQi1A96lVQs_FmYImZ5is5_hOBPAsXTmK2h39WmO50,4891
112
+ steam/protobufs/steammessages_clientserver_userstats_pb2.pyi,sha256=LIPQbiSGFqzIwDpEzPjWGgFWMcwSq2gmQTzcDHtI8oY,13184
113
+ steam/protobufs/steammessages_clientserver_video_pb2.py,sha256=l0W5SXR1o8zK9sUx9jglMZMV3uLKM5OLiCoXO_v7vO8,4264
114
+ steam/protobufs/steammessages_clientserver_video_pb2.pyi,sha256=D_nuoJhdsekUcwD9x-Xj-pZ5lAII30AF7GEe1mBcXIc,11697
115
+ steam/protobufs/steammessages_clientsettings_pb2.py,sha256=P8QFZxc_not7yrzmntnKJpPMOq36YyOziChKqma18k8,115890
116
+ steam/protobufs/steammessages_clientsettings_pb2.pyi,sha256=g6sddl0_gUmfIgHFGrb8LAWRx3XzPcg-6NHLBz4UQjI,92786
117
+ steam/protobufs/steammessages_cloud_pb2.py,sha256=e-dRVPb2rY12gH8dWY1PzNIDhL3aFjPw3hnfY1EigSE,25582
118
+ steam/protobufs/steammessages_cloud_pb2.pyi,sha256=hMt2OC0YZ_i4XEDYFp2OFyNEOxYxlHPO_Ll3shmSCOw,74387
119
+ steam/protobufs/steammessages_community_pb2.py,sha256=d9-OwMlFGIjcU8vJUbujQ8WVB-bTecMdWjc4SVr4G1o,30686
120
+ steam/protobufs/steammessages_community_pb2.pyi,sha256=cdZ9vWmtvblvKJMCFhyZu7Sg4WcPA2v78mmI97Fxtx0,85087
121
+ steam/protobufs/steammessages_contentsystem_pb2.py,sha256=cY1ydk1QbKI3XCiOSTpqkaubVfQ0skTmW0m9Keed9zE,11095
122
+ steam/protobufs/steammessages_contentsystem_pb2.pyi,sha256=Wy5CsdMVsmSPTK_SkoJs4V38_b2scFtpkG9HL7ELqLs,27156
123
+ steam/protobufs/steammessages_credentials_pb2.py,sha256=NlT6LW0blKuhEXwvjt9U0puPuE1SDkXeKwhgn6KUmu0,6878
124
+ steam/protobufs/steammessages_credentials_pb2.pyi,sha256=EBk1B9IxxRxOoL82Biw9Z_Rt071RgYgLm2ZpHjRy4wA,18075
125
+ steam/protobufs/steammessages_datapublisher_pb2.py,sha256=rcwJCWSke2vZH-C85OxY5giKo6HPzT3_V3YLavLbHOI,7490
126
+ steam/protobufs/steammessages_datapublisher_pb2.pyi,sha256=n0Kf6tSLNDNNj6M6EYXWcuDLTVIESDNCdhMCqiKTfQg,18330
127
+ steam/protobufs/steammessages_depotbuilder_pb2.py,sha256=tU9oJHLbyeQDs0rbhHP6Ty7qaMYhZowfoOpic4mZSIs,7955
128
+ steam/protobufs/steammessages_depotbuilder_pb2.pyi,sha256=jVCFTUM-mTPAepNn2Y2UvgI6tSTkzjgrV-1ol9sOJAg,20610
129
+ steam/protobufs/steammessages_deviceauth_pb2.py,sha256=Bmf2BSW-dQ8NXeO1jv35b1plCSX5uzFzKvwvnIbSzns,16183
130
+ steam/protobufs/steammessages_deviceauth_pb2.pyi,sha256=4TPAFn55lDecOja70-JNflsn1mkuWXLA4Cjiptfcc1A,30451
131
+ steam/protobufs/steammessages_econ_pb2.py,sha256=AEaiRh5DRRJZ1AQSJuRXDzk9GQaCyKbQ_W1tN-RuWzo,12531
132
+ steam/protobufs/steammessages_econ_pb2.pyi,sha256=ST_GwttNwH5YF_MsQHM3HMwRgnmnwEnku5JysxjpNDI,39214
133
+ steam/protobufs/steammessages_familygroups_pb2.py,sha256=0Q9BhEwhRIxwEbtwIFap0DDea_FpNWUMn2SvQwPrByA,33053
134
+ steam/protobufs/steammessages_familygroups_pb2.pyi,sha256=3yUfSS57qWTK4yEX099JUQ2VpnmsTXDnnhUKqCM6bX4,89901
135
+ steam/protobufs/steammessages_friendmessages_pb2.py,sha256=MJd7M6st6gxXT20sPKI1nbzlyUGycv_zaYd4hSjfHaU,13242
136
+ steam/protobufs/steammessages_friendmessages_pb2.pyi,sha256=usrZfyIzeTfWD_mbSYKJxfWMNCWM9YAFBBmJygTu6_w,33362
137
+ steam/protobufs/steammessages_gamenetworking_pb2.py,sha256=93nKR9q9vtiucSM8gDhoGO6XFdP1i8_G9gtX4VgEVSo,2812
138
+ steam/protobufs/steammessages_gamenetworking_pb2.pyi,sha256=VMeDxPMojTR3o8WJCMQrCzeGkbiSggk9r3bS48U3cqY,3685
139
+ steam/protobufs/steammessages_gamenetworkingui_pb2.py,sha256=LQQBazr5KJxuT_HTRy2HwCl1I7Z7tSGFVaKH59I0iAI,4667
140
+ steam/protobufs/steammessages_gamenetworkingui_pb2.pyi,sha256=W0aDG-lFtwm6RTTOGMasDwxaucDPZ_FKJmGJmImIfWA,13932
141
+ steam/protobufs/steammessages_gamenotifications_pb2.py,sha256=f_qTw5336oN_C9UBDRU55SyqRnLl3HPXEc8vTvwgfAA,9797
142
+ steam/protobufs/steammessages_gamenotifications_pb2.pyi,sha256=tdmV5s0LelKhvxhMomsQrQlVhCf9EXztZr2mfkg-hCo,22689
143
+ steam/protobufs/steammessages_gamerecording_objects_pb2.py,sha256=a1wwWY_h5RFZzoIlJgKwexKMZPUTfzHIJoYoLAOecJ8,2298
144
+ steam/protobufs/steammessages_gamerecording_objects_pb2.pyi,sha256=xYVViVd6DGdWf9ezX1-dFEpPs7D1NgDdRHbVFGafKn0,3783
145
+ steam/protobufs/steammessages_gamerecording_pb2.py,sha256=Q1rMbwKE5ofy89OB2_14adsowiTWmsBg-woU5vw16fg,8285
146
+ steam/protobufs/steammessages_gamerecording_pb2.pyi,sha256=jIZA1AaN-uDZEiHv8eE2XjsgMLEzODmmPXad5csToFM,18689
147
+ steam/protobufs/steammessages_gameservers_pb2.py,sha256=i7ShenrpEoVQhb-LrCMprMTYJZTVh4ws37wzroDZBGM,8867
148
+ steam/protobufs/steammessages_gameservers_pb2.pyi,sha256=AZBeylOvjTzMLu0o3SVkt4s24dvzYMREzMOIDc8QR1I,22349
149
+ steam/protobufs/steammessages_hiddevices_pb2.py,sha256=OJS8e11cLBqQJzmE7WnwKs5Kbcj4rnylS18UZurljpU,10327
150
+ steam/protobufs/steammessages_hiddevices_pb2.pyi,sha256=nqESGxUE9_jB0PH_6QPxmPYXDwud44GlF2cqcDT18K4,31547
151
+ steam/protobufs/steammessages_inventory_pb2.py,sha256=IEIQwGRZ1zbFOv3ZwmeyR-OUqqtSVxu91zkEhy_gaxQ,11091
152
+ steam/protobufs/steammessages_inventory_pb2.pyi,sha256=u3xnDq4PUco1Jpx_JOZk-9NSbMBDlTF7H2RSA4WZ9gk,27539
153
+ steam/protobufs/steammessages_linkfilter_pb2.py,sha256=GuG3uE4yL_1FYmHRm0mhnXWJKgY_CqGWNaDkmOqjwd8,3752
154
+ steam/protobufs/steammessages_linkfilter_pb2.pyi,sha256=iG31j1gVMOyOMH3g0YWOL4t_Bg1oG5cCEIuqi7MSbVc,6062
155
+ steam/protobufs/steammessages_lobbymatchmaking_pb2.py,sha256=quHrqSs_6Rg2CoqCtLPiP0n1RWK_AKLYTHSN_bCGVeI,3019
156
+ steam/protobufs/steammessages_lobbymatchmaking_pb2.pyi,sha256=n8Fi1njbUfen-IP9xKNaSJl_5yoGhP4vMpN_qNGBCpA,4202
157
+ steam/protobufs/steammessages_market_pb2.py,sha256=Fgo0kze5wGHphDviH5S4O62W2xBZmMXg6acpbW9Nj0o,2555
158
+ steam/protobufs/steammessages_market_pb2.pyi,sha256=6kdWgqai9BBL0R8rBMZBqB5LfanFmtcboKIIlwyF2Go,3429
159
+ steam/protobufs/steammessages_marketingmessages_pb2.py,sha256=d4-3beLXDVNE4BaDRg04mJJhhnI4mr4EAjshlWOpqoM,25493
160
+ steam/protobufs/steammessages_marketingmessages_pb2.pyi,sha256=Gaex3y5GB1MPq3FyqRvPXOjElGBGfr-TA9PIr8_EpD0,63039
161
+ steam/protobufs/steammessages_notifications_pb2.py,sha256=6qGp0rA64Lj_C8mtiOQ4bzspPtg3vtJSkS4PBaaTsds,5691
162
+ steam/protobufs/steammessages_notifications_pb2.pyi,sha256=lb0rduM17e8kq4HPShQvCZK6WPtU2X7go0VuSXqpN58,12193
163
+ steam/protobufs/steammessages_offline_pb2.py,sha256=qt5lxIOblGiV3NNIIACWDtsQprAWT-x8vUsiEnzFrdc,3439
164
+ steam/protobufs/steammessages_offline_pb2.pyi,sha256=JVfYCv8XgfMESZ5Hiikc0VGmnACJL0JItpAj0cYYnyw,5279
165
+ steam/protobufs/steammessages_parental_objects_pb2.py,sha256=v8-RNapdnzug5Jjg7qtJC7kDG1pe38eEDH16qrXogwI,4753
166
+ steam/protobufs/steammessages_parental_objects_pb2.pyi,sha256=FOkK_8Q--wrtkR6OGn720Z9j1eQdbmaCfCcKd6zM5nY,15157
167
+ steam/protobufs/steammessages_parental_pb2.py,sha256=K4Dki9vzfypx8lRXQjpMQT80qrV00NAS8OqBemANQig,13278
168
+ steam/protobufs/steammessages_parental_pb2.pyi,sha256=Qr53xdff-pkdMiU5XuXa-hSOUkug9psQLoIUQARX-wQ,31466
169
+ steam/protobufs/steammessages_parties_pb2.py,sha256=QpVVZY2djvPSOHuOcGTDTs0uZpUsxkC8AJ6WUwF46B8,5610
170
+ steam/protobufs/steammessages_parties_pb2.pyi,sha256=OCV1nGk25W-ONlz8t5PH31a28fJeFfBtmlsR6pwrJ3Q,12315
171
+ steam/protobufs/steammessages_partnerapps_pb2.py,sha256=t39koJu1GUGw_qFABMCUfjHSTQqD37bnbTibUNQofjQ,7810
172
+ steam/protobufs/steammessages_partnerapps_pb2.pyi,sha256=yYd5sjN-NsP1PjrMqwOHNQD9nTur2-qYLdpCmI9YCos,17056
173
+ steam/protobufs/steammessages_player_pb2.py,sha256=ztGZxhp1SbHiRODnYz9-wYlh2v0MKu27JKdRohRjd_8,65064
174
+ steam/protobufs/steammessages_player_pb2.pyi,sha256=o1Aig4cWGBp62xkQ5Z-CX63cBV879nKPmy7HlcXUlPA,192302
175
+ steam/protobufs/steammessages_publishedfile_pb2.py,sha256=h_nleVbeVYlLMdiWlua1k36CkEFqerEdzooEKC0TGeA,49488
176
+ steam/protobufs/steammessages_publishedfile_pb2.pyi,sha256=U5xBRfr_2B6BotpNmWxKrENR7jhc8saMhsPtN6tqLnk,153505
177
+ steam/protobufs/steammessages_qms_pb2.py,sha256=bNGJ32V2G1ufPmjYnUXzScy2AwsnbNP54gFvYF6uSHE,7733
178
+ steam/protobufs/steammessages_qms_pb2.pyi,sha256=_izmMksyHUCjTVMOjCWDqynOk47BXNNxnRG9y8IRL3w,18927
179
+ steam/protobufs/steammessages_remoteclient_discovery_pb2.py,sha256=C5sdcrajowhN30zhxpVfRAx0PKpSzN8Ze-GPglTvEhc,15779
180
+ steam/protobufs/steammessages_remoteclient_discovery_pb2.pyi,sha256=qfO4FdXW_GnYfiUve_aO2vBuW3Z5ZRgXnNQZhGKMxew,50464
181
+ steam/protobufs/steammessages_remoteclient_pb2.py,sha256=5Q4uTCO9xvMBFVzi_zNDI8guluK9hw5sRqnyaDH8eVQ,15489
182
+ steam/protobufs/steammessages_remoteclient_pb2.pyi,sha256=Fa-EsRLiHPWzC9Xvsi0a6VA41q7VAqjB_kybCsiGyCQ,53621
183
+ steam/protobufs/steammessages_remoteclient_service_messages_pb2.py,sha256=GH_A31ffAIxi-pUQzkEKRe5KYK2dYkKO5uS-P-6-4H8,18833
184
+ steam/protobufs/steammessages_remoteclient_service_messages_pb2.pyi,sha256=hnSewWKo7Kl9dabg_PtVE_ilFR1XzJIzKV5Mq7qn8aQ,60758
185
+ steam/protobufs/steammessages_remoteclient_service_pb2.py,sha256=Wo9YxSpzs8wqkRcg6Cj3lNI-SfeyeYi771hs6jzLyHA,4811
186
+ steam/protobufs/steammessages_remoteclient_service_pb2.pyi,sha256=6wYB5AhbfN2NpWpsJhtrV7MW9oSTQkVlWm_bn1sk2TU,171
187
+ steam/protobufs/steammessages_remoteplay_pb2.py,sha256=XAxGP3t2KqbZb-RapunYSX1_QFRbATOj16gEzrVMQoE,52693
188
+ steam/protobufs/steammessages_remoteplay_pb2.pyi,sha256=hOXTFwLv4i81M4ME_LjjGNM1yAA8s5WMXzxNNpv6hWY,181208
189
+ steam/protobufs/steammessages_secrets_pb2.py,sha256=GNszBrL0O4elgy55Xy2fJBWv6YEAm7tkQvEFGj_JBQk,3079
190
+ steam/protobufs/steammessages_secrets_pb2.pyi,sha256=oUkhF_Iy48PZwCedp5iPmGgqUyJqUXn2KzHkjPLrW7s,5449
191
+ steam/protobufs/steammessages_shader_pb2.py,sha256=4LCTumHRX8r79AsrBR9DCNeXPZmUsWaARAEpuHJJLH8,7089
192
+ steam/protobufs/steammessages_shader_pb2.pyi,sha256=LGIQeZpRQCTGahNipNxx4YgZm1rnOWNXAakgPaKaTLw,16799
193
+ steam/protobufs/steammessages_site_license_pb2.py,sha256=ZZ3JXUnP1qKh3dGjWFyxAdnlHKSIY3FmfbKbEVdWI7I,7674
194
+ steam/protobufs/steammessages_site_license_pb2.pyi,sha256=L3MeRjz7z2NQ0mmsZ5ukQiSIeaye1LGRCIjs3E3UszU,16617
195
+ steam/protobufs/steammessages_sitelicenseclient_pb2.py,sha256=i0y1dlkgxPTjiWbdwnwrWBjz3-ALzNgHVHoNZ6eszLI,3272
196
+ steam/protobufs/steammessages_sitelicenseclient_pb2.pyi,sha256=E8lEE2rlcQeAXhes9sYiKCxcAdgzxy3rcqTWZM_NCzI,6836
197
+ steam/protobufs/steammessages_siteserverui_pb2.py,sha256=xdY56lPM9HqMnEcyctc99Uqeav8m8phYN1CIfsm0DwI,8082
198
+ steam/protobufs/steammessages_siteserverui_pb2.pyi,sha256=XsTyQdKNW2bEKMK25aBIJYbi24uZUYyOZUrgiTPI77c,24460
199
+ steam/protobufs/steammessages_star_pb2.py,sha256=DRwORQGtsYnNDySNHpY3C4JQsPb4fB_pINdFTUAt8bM,9594
200
+ steam/protobufs/steammessages_star_pb2.pyi,sha256=-TQ0U-DNKCmmqia9sGTyrRdkFdiKAJXXFPpTxGsK0L4,11046
201
+ steam/protobufs/steammessages_steamtv_pb2.py,sha256=4v10x_ToBPoKK8EpC6-3lxlTfDirHAvBqmZiD3iRHkg,33386
202
+ steam/protobufs/steammessages_steamtv_pb2.pyi,sha256=Ej6QU--2cOZN0HdMURHT15FURLTv5gq1xx_WIxUVoj4,96487
203
+ steam/protobufs/steammessages_store_pb2.py,sha256=pB5dN30ySLlW9_gJPdXm_2e8Hef7ZJNREc_lSbh6V1U,30965
204
+ steam/protobufs/steammessages_store_pb2.pyi,sha256=Va-zMlZB_Pvvl32Tn5b-UJpelYHn7c5R7mwvQLRKGc4,88379
205
+ steam/protobufs/steammessages_storebrowse_pb2.py,sha256=ZE67YM0VS-2g7R__JI_bMj90PBL2GWu6e_N-hXmJCjw,35417
206
+ steam/protobufs/steammessages_storebrowse_pb2.pyi,sha256=ut77oANytu2NGvVEKs9jRellEqwtXcn_fTP8mXFKaIs,127875
207
+ steam/protobufs/steammessages_timedtrial_pb2.py,sha256=eAIfXL2b0B9VRv22pnN60mtKNSScBurkNhrX2GJUHXg,3616
208
+ steam/protobufs/steammessages_timedtrial_pb2.pyi,sha256=mKVA7wkyt4mpXG2-4LOG6cCuj6A9VTEe-QdMhIiuLSk,6269
209
+ steam/protobufs/steammessages_twofactor_pb2.py,sha256=HLflIfUabOG-r78Qpn68oPFq4GiU9yN3OEnzI8ST2Bw,11198
210
+ steam/protobufs/steammessages_twofactor_pb2.pyi,sha256=ScN0IVpy81umS9SVG4euFg7xle7NyitEOzOtabzZBT0,31758
211
+ steam/protobufs/steammessages_unified_base_pb2.py,sha256=XT8wnsLqjqCAWryQlyiEKS6oTn_j6yo77NW58_5v0ew,3030
212
+ steam/protobufs/steammessages_unified_base_pb2.pyi,sha256=TE0-PV0Bbo2nzdQiCtLU1Ku_0zdVpNGpajU7jQlhgFE,4272
213
+ steam/protobufs/steammessages_unified_test_pb2.py,sha256=mKQrgJ6xl12QTMY7gk2Nz1mkfeM7kaIJ76j1DLdM-i4,5134
214
+ steam/protobufs/steammessages_unified_test_pb2.pyi,sha256=unuTcB0ZKhNewfq_-_AbPjqBGnoajIkP4g4q5dnFJYM,7688
215
+ steam/protobufs/steammessages_useraccount_pb2.py,sha256=jBAuynHAAZ5KH2TrG2EFhhmeAesUBphfeIxIxv-wMnA,16158
216
+ steam/protobufs/steammessages_useraccount_pb2.pyi,sha256=rLhrZhQxVbuNhKznKFHBlsyN0PyhCIocyUXGfreWU-E,46883
217
+ steam/protobufs/steammessages_vac_pb2.py,sha256=vYayqKccu1loDnH8LwL8kZrkXnndR1GOyCbiyUDPII4,3461
218
+ steam/protobufs/steammessages_vac_pb2.pyi,sha256=sEg3rU0QO-uXD8wC-UJrroan6Ww2LKvo11R0dnwCP_E,6060
219
+ steam/protobufs/steammessages_video_pb2.py,sha256=GVmjkloOcmxtfcdmgd2oLraOvLbNQ7ZhOUadoTCEoSc,5114
220
+ steam/protobufs/steammessages_video_pb2.pyi,sha256=R6fmBkoV-Vg2XZUek9SOzcGP-ZvnOXr5eECC5NpzHgw,10128
221
+ steam/protobufs/steammessages_virtualcontroller_pb2.py,sha256=aRrw73H0CtMdaxpylo5hlQ2iJu9qCQgGZB0vpN24280,8473
222
+ steam/protobufs/steammessages_virtualcontroller_pb2.pyi,sha256=ZvEyj8budqDBkvtevJ3UVirsTJeKPfXDTFKlcLZxwcQ,25331
223
+ steam/protobufs/steammessages_workshop_pb2.py,sha256=JQ1Xh58WSwe7-6VGuwY7zR2t4EFhI_Vn9hPoJQ8KGR8,2325
224
+ steam/protobufs/steammessages_workshop_pb2.pyi,sha256=GAixAIPUoLQxYpxhIrigfbfCdoHfJnglMgMH_x_EMQ8,2500
225
+ steam/protobufs/steamnetworkingsockets_messages_certs_pb2.py,sha256=KLUxdZNd-46Lg7EiIgfSbj9izdsKkHs22blxZ0hIn_U,3269
226
+ steam/protobufs/steamnetworkingsockets_messages_certs_pb2.pyi,sha256=syGG4qz57rDqoPOGGLy98zB8ORDFhiLsQoIXNAqCEno,7797
227
+ steam/protobufs/steamnetworkingsockets_messages_pb2.py,sha256=h7yWvu2W93dHB08Ag1qt9Ha6S0VJ-frFGh6GbouMNLo,10853
228
+ steam/protobufs/steamnetworkingsockets_messages_pb2.pyi,sha256=nrQA5TZbYUdMrpb9WxUoD3JSd4uVpddJiA_yOC44WE0,37965
229
+ steam/protobufs/steamnetworkingsockets_messages_udp_pb2.py,sha256=KAGVTaNJyfUXkXoaNjWpD-zVum0KA5r-8U7gW93alrY,5550
230
+ steam/protobufs/steamnetworkingsockets_messages_udp_pb2.pyi,sha256=7U5vmv8OvYgyNTpubuxjv6SVDAwUv6HaXZDSS0M8GvY,15352
231
+ steam/protobufs/test_messages_pb2.py,sha256=O__tafuSnhm2-gsKmAid6Xfmv12yGWaqU8nZdAla-j8,2305
232
+ steam/protobufs/test_messages_pb2.pyi,sha256=5TdkPRnh5KeXLFa6rjuchVnlFiGFNxWEwM9aspDGIoM,5095
233
+ steam/protobufs/webuimessages_achievements_pb2.py,sha256=tpOaDXNFV8QSRhHRlruYlNkVBZyvzZ7EXTxvChikhlA,2868
234
+ steam/protobufs/webuimessages_achievements_pb2.pyi,sha256=1KDzjxTeFVHcrhMI94YXmFI7aZFTDtgrFF-uOKoHNV8,3989
235
+ steam/protobufs/webuimessages_audio_pb2.py,sha256=1ElCd5VTb2TSPZnzy_u5MnScxbBgNdWiNPg6CGDhNOY,9760
236
+ steam/protobufs/webuimessages_audio_pb2.pyi,sha256=Z0ft4OfLjsVgjFzAXPAKiygofZ1il57HpoaC6v6iV90,20857
237
+ steam/protobufs/webuimessages_base_pb2.py,sha256=3wqFMKDVocJULuEwztykfcl6nnOOXKMZlvb26SHjl14,2338
238
+ steam/protobufs/webuimessages_base_pb2.pyi,sha256=-aXLoxeSpvSsj9dPNQ69Sj9HO1Poj79oiMh2Cnl_GH4,2616
239
+ steam/protobufs/webuimessages_bluetooth_pb2.py,sha256=qC-88qBPZl8g58X6oPzaGoLlrnRIZjyEf8v4F246ZI0,11198
240
+ steam/protobufs/webuimessages_bluetooth_pb2.pyi,sha256=LbZ0j4xK_qjGNJOb0WP-sxZIwia55MHrMGEW96zGkFU,25961
241
+ steam/protobufs/webuimessages_gamenotes_pb2.py,sha256=v9rTWCENYOZxQBHo5cV8syT42hdrpNSlRhszUUPdi2w,2404
242
+ steam/protobufs/webuimessages_gamenotes_pb2.pyi,sha256=Upa88RJodm3eGUNtl118ISJVe-T6d8e-87TyRwuj7d0,2273
243
+ steam/protobufs/webuimessages_gamerecording_pb2.py,sha256=_hJRdPaA96IU6tSdKJJ6puQZYhksMWt-8wFr8PJ7J8A,38119
244
+ steam/protobufs/webuimessages_gamerecording_pb2.pyi,sha256=uNTu7dRE213jLjDiP6lelSzZJ5tYUh41UGhNcEqSxlE,100646
245
+ steam/protobufs/webuimessages_gamerecordingfiles_pb2.py,sha256=V-QN297oZw24cZk9-8-J3m2Qtaadxy-5UeiJNdZAgYg,7214
246
+ steam/protobufs/webuimessages_gamerecordingfiles_pb2.pyi,sha256=yDuXao2kiRlqYmg8r4vtV8wd2rzZa7yd7sQSCz5ARo8,23270
247
+ steam/protobufs/webuimessages_gamescope_pb2.py,sha256=caJryuXHwEmOAiD2_zoYtIAVAkx-f1RRa_oOQNzmXYk,6267
248
+ steam/protobufs/webuimessages_gamescope_pb2.pyi,sha256=SteXyO9fPqfTqQO1UMaWCIR8MXkOFHu29IwFhRdLjRM,14844
249
+ steam/protobufs/webuimessages_hardwareupdate_pb2.py,sha256=_qCq9l3DWZ8ValoRAkWQRp_VhfXYDaAjc-PaDUdPAHI,7270
250
+ steam/protobufs/webuimessages_hardwareupdate_pb2.pyi,sha256=TBQCRoBYFaU-Yq_IUbeqIAICawmPB97pcAMZN7CXhyE,15089
251
+ steam/protobufs/webuimessages_leds_pb2.py,sha256=OjI5tE1O12c7jwlBAkor_6hv07ePRqeiWe-fqJtmDY0,8183
252
+ steam/protobufs/webuimessages_leds_pb2.pyi,sha256=KBWtVWbxqmfvWZc0mmLaqjXUaWnwIERfXBUU0gwoY3M,19130
253
+ steam/protobufs/webuimessages_screensaver_pb2.py,sha256=dyl_AuAGh61hq8CGugEtw5GBEQPpK2ARDeCRdKigMmA,2779
254
+ steam/protobufs/webuimessages_screensaver_pb2.pyi,sha256=iP5R0V99gHGCmWyZNbebXR0bni4uYsRaB3pS_O4U6wo,2530
255
+ steam/protobufs/webuimessages_sharedjscontext_pb2.py,sha256=ZHm_Bd58KGtSiFkFF-fRzAqUVkQwMLc95gWO3OxS1TU,3167
256
+ steam/protobufs/webuimessages_sharedjscontext_pb2.pyi,sha256=MsEc2Bid_W5h6ulN6FtT5S_6k8mIqbwnrP384u9Ps2w,4294
257
+ steam/protobufs/webuimessages_sleep_pb2.py,sha256=bN_lzmsG6PPPPpV7-KnQG0JESg7i8miQA7D-Lg-TtiI,5519
258
+ steam/protobufs/webuimessages_sleep_pb2.pyi,sha256=E1yS0QXv0EH2x38FR5ux0nbGmYzg4C5_md5TuWF2mZE,9649
259
+ steam/protobufs/webuimessages_steamengine_pb2.py,sha256=JA0FNmlz0NLCUeo3tp2f9BZ7WbguJyWjinXRwAY5LkM,5148
260
+ steam/protobufs/webuimessages_steamengine_pb2.pyi,sha256=f6RFaDOdURY0vve6h0ClS7hfkE-PF9Qu7YcjN8KVLn0,8496
261
+ steam/protobufs/webuimessages_steaminput_pb2.py,sha256=DN-njeQ9TCklgL4vBB3brD6zI8_W8A3QISilKLpzc2s,29070
262
+ steam/protobufs/webuimessages_steaminput_pb2.pyi,sha256=LBNSjCvUikMGwkP3aal3Dc5MTgHMg7cOV_8MxQnG2Mc,78455
263
+ steam/protobufs/webuimessages_steamos_pb2.py,sha256=bLKJSNsWA9vfJy20SLD0EL9qbrJq9iOjhdEzBvD3J4A,15290
264
+ steam/protobufs/webuimessages_steamos_pb2.pyi,sha256=MCWYIEz4gQ5lL5Yj8zcKrdCzT7GjcOulqZYJe3qy1iE,39019
265
+ steam/protobufs/webuimessages_storagedevicemanager_pb2.py,sha256=DsH4fD3uI2VmjJuB7MZjg3rXmEl_XSmmJxMC_gGyek0,8405
266
+ steam/protobufs/webuimessages_storagedevicemanager_pb2.pyi,sha256=-ZBxCmC1o0bWPhKDZFVyyCkhYbTRGdbHLTnWykBG39M,18921
267
+ steam/protobufs/webuimessages_systemmanager_pb2.py,sha256=XjkV0qTc5zI0m4UBDHFbgvbp1NYzOViOji0X97mnTk4,2810
268
+ steam/protobufs/webuimessages_systemmanager_pb2.pyi,sha256=fZMXy-AAr9mDpeEiE4szhUUX-ko4WyYygn1aaLPFCXM,2971
269
+ steam/protobufs/webuimessages_transport_pb2.py,sha256=DT_jp7jbw8U_S1NkgCikzo4QAtOoNmOcwfvmmVGroko,2641
270
+ steam/protobufs/webuimessages_transport_pb2.pyi,sha256=l6ltsig-mqRr-ygaZHRD1zBq1jyBTy5_gS1KtwHajdY,2351
271
+ steam/protobufs/webuimessages_transportvalidation_pb2.py,sha256=8Q77AwRLOpFg0bzvSexANzj1rDYwYCaQNmURUKhaZ7g,11635
272
+ steam/protobufs/webuimessages_transportvalidation_pb2.pyi,sha256=EtgtVmylj1Jrvt2squEIVXpIy0VTmY0gjKEcHv7WeU8,22652
273
+ steam/protobufs/webuimessages_user_pb2.py,sha256=2Oo95dwtfJo1DSEBQdkQqNVQMZMy0stZkwlu2sNd1W8,2944
274
+ steam/protobufs/webuimessages_user_pb2.pyi,sha256=uzOh6c-bVJp8qqKh5tsQcO98dvb7zANaNxSjtFcx5nM,3971
275
+ steam/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
276
+ steam/steamid.py,sha256=k3iUUCf_huW3ZlZTna0iC4NMomDnH7I8b3PnOi0CZb8,18686
277
+ steam/utils/__init__.py,sha256=_I5o-OE4BweThrB_eWO5j2ZyZH15Q1s_buPgCBT3l7c,2281
278
+ steam/utils/appcache.py,sha256=Tjg_rRaJM6jsfhKNeRJO3F7nX_YraqYNwczFQZxAQUs,4456
279
+ steam/utils/binary.py,sha256=otThbBrvUPpXdZXkgrZAXPk__RAkyJURTHaYzWDx3ug,2067
280
+ steam/utils/proto.py,sha256=1yug1WOnyY4v2YrnaQj7Cm5d8R1Hvr0yW42nocmm7qE,3432
281
+ steam/utils/throttle.py,sha256=Hpcq2H-jB9wyozIi3GY1P4Bs_xSfHuiD1YGQ1twWnvs,1753
282
+ steam/utils/web.py,sha256=ZM8p-6hayVRndariF_hJauiR4uth1V4O1-Io7Jh7b6c,627
283
+ steam/versions_report/__init__.py,sha256=FjCg0M-Rv4XV1gBl6pYb-4V06KwIdMzXM6Ks0uNp2DM,1967
284
+ steam/versions_report/__main__.py,sha256=Bs_8GuiCcPaiffFYPVkdz9ZnH9CeIwh5XoBIyQpdIDg,104
285
+ steam/webapi.py,sha256=gMxWFXHsQkV1FPz_8QBL9i4ICtHEDWYXmudIcCU607A,18813
286
+ steam/webauth.py,sha256=q_oTcFOJ_rFn2veFCcaiX-cfNXGaRRP9y6-OSWpLn4I,20717
287
+ pysteam_client-1.4.6.dist-info/LICENSE,sha256=h8RtvdQi6ZQA9CiHO2oj_VUm0zYpJroXNR23xFdxveo,1075
288
+ pysteam_client-1.4.6.dist-info/METADATA,sha256=zSAryT-g-aTd8rr_s5RZgz2WOyOnKvOL0nEEEGcw2dE,9477
289
+ pysteam_client-1.4.6.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
290
+ pysteam_client-1.4.6.dist-info/entry_points.txt,sha256=BL8Lrlpoc3rQ2vCau093kSaXEQDNB1dkp5uK9e-XEoA,266
291
+ pysteam_client-1.4.6.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 1.9.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,9 @@
1
+ [console_scripts]
2
+ pb-compile=scripts.pb_compile:main
3
+ pb-fetch=scripts.pb_fetch:main
4
+ pb-gen-enums=scripts.pb_gen_enums:main
5
+ pb-services=scripts.pb_services:main
6
+ pb-update=scripts.pb_update:main
7
+ vcr-webapi=scripts.vcr_webapi:main
8
+ vcr-webauth=scripts.vcr_webauth:main
9
+
scripts/__init__.py ADDED
@@ -0,0 +1,7 @@
1
+ """Dev-only helpers exposed as poetry console scripts.
2
+
3
+ See ``pyproject.toml``'s ``[tool.poetry.scripts]`` block for the console
4
+ entries (``pb-fetch`` / ``pb-compile`` / ``pb-services`` / ``pb-gen-enums``
5
+ / ``pb-update``). Each is a thin wrapper around one of this package's
6
+ ``main()`` functions.
7
+ """