Open
Description
Description
When I try "client.get_product_info(apps=[app_id], timeout=1)" I get an timeout. Of course before I initialize and login the Client and login anonymously with
client = SteamClient()
client.anonymous_login()
then I print(client) I get:
<SteamClient(('155.133.226.75', 27028)) offline>
So it seems like the SteamClient is offline?
Steps to Reproduce the behavior
Run:
app_id = 570
client = SteamClient()
client.anonymous_login()
info = client.get_product_info(apps=[app_id], timeout=1)
print (info)
Expected behavior
I expect informations about the provided App ID but since tonight I only get an timeout back
Screenshots
Versions Report
python -m steam.versions_report
steam: 1.4.4
Dependencies:
vdf: 3.4
protobuf: 3.20.3
requests: 2.31.0
cachetools: 5.3.2
gevent: 24.10.2
gevent-eventemitter: 2.1
pycryptodomex: 3.21.0
enum34: Not Installed
win-inet-pton: Not Installed
Python runtime:
executable: C:\Python312\python.exe
version: 3.12.1 (tags/v3.12.1:2305ca5, Dec 7 2023, 22:03:25) [MSC v.1937 64 bit (AMD64)]
platform: win32
System info:
system: Windows
machine: AMD64
release: 11
version: 10.0.22631```
</details>