question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

get_my_market_listings() return empty values

See original GitHub issue

Steps to reproduce:

  1. 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())
  2. check output: {'buy_orders': {}, 'sell_listings': {}}

OS: Windows 10

Issue Analytics

  • State:open
  • Created a year ago
  • Comments:5

github_iconTop GitHub Comments

2reactions
EchoSixHIYAcommented, Oct 7, 2022

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.

1reaction
ChekeredList71commented, Apr 22, 2022

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?

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found