get_my_market_listings() return empty values
See original GitHub issueSteps to reproduce:
- run this code
from steampy.client import SteamClient steam_client = SteamClient('MY_API_KEY') steam_client.login('MY_USERNAME', 'MY_PASSWORD', 'PATH_TO_STEAMGUARD_FILE') print(steam_client.market.get_my_market_listings())
- check output:
{'buy_orders': {}, 'sell_listings': {}}
OS: Windows 10
Issue Analytics
- State:
- Created a year ago
- Comments:5
Top Results From Across the Web
Scraping with Selenium returning empty values after first ...
I'm scraping a webpage and for some reason it returns correctly the first 12 elements and not the remaining 24, for a total...
Read more >3 Clever Ways to Return Empty Value Instead of Null From a ...
How to avoid returning a null value? #1 Eliminate nulls with C# Nullable reference types; #2 Eliminate returning null values with the Null...
Read more >Update target with empty or Nulll value by transform?
Solved: Normally transform map doesn't update the target field with Null or empty value when the source field is empty or Null. I...
Read more >Return an empty array or collection instead of a null
Instead of returning a null value, this compliant solution simply returns the List , even when it is empty. class Inventory { private...
Read more >Check emptiness in Ruby : nil? vs blank? vs empty ... - BootrAils
In other words, if you cast nil or false as a boolean, it will return false . Every other kind of value is...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
solution A. Change ur primary language to english at this site: https://store.steampowered.com/account/languagepreferences/ solution B. If u want keep ur language settings,change the codes at steampy.utils,line 105,107 and 122. Example: old line 105:
if "My sell listings" in node.text:
new line 105:if "My sell listings" in node.text or "balabala" in node.text:
“balabala” is “My sell listings” in ur language, u can get it from steam website.Even after changing the client’s language, it still gives me an empty list. Maybe because of Steam market limitation I got after changing to Steam Desktop Authenticator?