Skip to content

Releases: isFakeAccount/psnawp

v2.1.0

14 Jul 04:15
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.0.0...v2.1.0

Fixes Search, Improves pagination and typing and more.

17 Jun 04:32
Compare
Choose a tag to compare

Release Notes:

This is a major release, and it's been a while since the last one. This time I wanted to address all the shortcoming in the library. One of the short comings how the Authentication and RequestBuilder class worked. The authentication and the request builder class architecture is much more cleaner now.

The release also fixes the bug with the Search class since Sony ended up deprecating the previous API.

Lastly, this version uses improved pagination that I added a while ago. But previously it was only limited to TitleStats. But now all trophy endpoints use this pagination class.

This version introduces small changes to the methods of the library. Hence, the major release. Keep in mind when upgrading to this version.

If you have any question, feel free to ask me on subreddit r/DevYoshikageKira

What's Changed (auto generated)

New Contributors

Full Changelog: v1.3.3...v2.0.0

Added support for languages

17 Sep 19:51
Compare
Choose a tag to compare

Added support for languages. The language preference can be set from PSNAWP class.

For example

psnawp = PSNAWP(getenv("NPSSO_CODE"), accept_language="de-de", country="de")
trophies = psnawp.game_title(title_id="NPWR20188_00", np_communication_id="NPWR20188_00").trophies("PS5")
for trophy in trophies:
    print(trophy)

The default is still set to en-US

Fixed the PlatformType Bug in TrophyGroupSummary

03 Sep 02:10
Compare
Choose a tag to compare

Fixed the PlatformType Bug in TrophyGroupSummary. Issue link: #54

Updated the Requirements

07 Jul 03:21
Compare
Choose a tag to compare
  • Updated all the packages

Some minor fixed with Title Stats

02 Jul 05:17
Compare
Choose a tag to compare
  • Fixed the issue with the Title stats page size issue
  • More improvements are upcoming in the future where all the listing generators will use the generic listing generator like title stats. This will allow users to skip pages. Useful for mobile and web apps.
  • Small breaking change with title stats. The total_item_count is now in a different location.

Fixed Title Stats Limit Bug

08 Apr 21:26
Compare
Choose a tag to compare
  • Fixed Title Stats Limit Bug that was causing the bug invalid request, requested limit=1000 allowed limit=500
  • Fixed a minor pagination bug in title_stats.py

Title Trophies now include Title ID for convenience

02 Apr 20:23
Compare
Choose a tag to compare
  • Title Trophies now include Title ID for convenience
  • Updated the dependencies
  • Updated the documentation looks

Bug fixes and small improvements

16 Dec 06:21
Compare
Choose a tag to compare

Bug fixes and improvement regarding title stats and trophy pagination.

Added Title Stats Endpoint and Fixed Auth Bad Request bug

14 Dec 06:47
Compare
Choose a tag to compare
  • Added title_stats() method in client and user to retrieve a list of titles with their stats (play times). Thanks to @omz1990
  • Fixed the auth bug. Thanks to @kerdion