Results 144 comments of Rossen

You need to own app to get info. Steam no longer gives to you without a license.

Yeah that looks like a bug. Although, is using the `90` (instead of `depotfromapp`) as appid correct or this a bug in Steam?

I see, thanks for the clarification. Will need to update the logic

From the debug, doesn't look like the password parameter is being set: `...'user': 'RandomUsername1', 'password': None...`

Ok, yeah it colliding with the parameters from the subcommand, which overwriting it. This a bug :)

Use a terminal that supports utf8 and is configured to use utf8

Doesn't look like library issue. Whatever way you are loading the file is not using the correct codec when decoding the file. Try: `vdf.load(open('appmanifest_1406850.txt', encoding='utf8'))`

Hi @kb1lqc, I'm glad you like `aprslib`. I made it a while ago for http://tracker.habhub.org/ The focus was on APRS-IS and parsing position reports. It been in use at habhub...

You can generate simple position report, but that could easily be extended for other formats. https://github.com/rossengeorgiev/aprs-python/blob/f6a952a1091963dc7bbe4721e83b00f8df02d44e/aprslib/packets/position.py I've taken a more generic approach. Fill in the bits you want, and the...

Basically works this way ```python In [2]: p = aprslib.packets.PositionReport() In [3]: str(p) Out[3]: 'N0CALL>N0CALL:!0000.00N/00000.00El' In [4]: p.fromcall = 'LZ1DEV' In [5]: p.tocall = 'LZ1DEV-3' In [6]: p.latitude = -4...