Skip to content

Releases: RayyanW786/amari.py

v1.3.0

10 Jan 22:26
Compare
Choose a tag to compare

What's New?

  1. Cache System Added

    • You can now enable caching by adding cache=True to your request.
    • This will save the result for faster use in future requests.
    response = await AmariClient(...).foo(.., cache=True)  # Caches the result
  2. Set Maximum Requests

    • You can now set the maximum number of requests allowed during initialization.
    my_object = AmariClient("token", max_requests=max_requests=10)  # Limits to 10 requests
  3. Async Context Manager Support

    • The class now supports async with, letting you use it like this:
    async with AmariClient("token") as obj:
        result = await obj.some_method(...)
  4. Bug Fix: Correct Return Value

    • Fixed an issue where the class object was being returned instead of the correct result (self).

v1.2.1 & v1.2

21 Mar 23:10
Compare
Choose a tag to compare

What's new?

  • Reworked and improved the AntiRatelimit feature

v1.2.1 was a quick fix of a major bug in v1.2

v1.1.13

17 Nov 21:20
12063aa
Compare
Choose a tag to compare

What's new?

  • Improved anti ratelimiting system
  • Renamed useAntiRatelimit to useantiratelimit
  • Improve type hints for certain methods
  • Made fetch users now require integer user ids instead of strings

v1.1.10

24 Oct 02:44
8717b0e
Compare
Choose a tag to compare
  • Adjust guild rewards to use roleID

v1.1.9

03 Oct 22:05
Compare
Choose a tag to compare

Bug fixes

v1.1.8

02 Oct 02:40
Compare
Choose a tag to compare
  • Added ability to disable AntiRatelimit system (Very unrecommended as can result in ratelimits)
  • Fixed issue from last update

v1.1.7

29 Sep 00:45
Compare
Choose a tag to compare
  • Added members endpoint which can fetch multiple members
  • Changed up fetch_full_leaderboard to fetch with 1 request

v1.1.6

28 Sep 18:57
Compare
Choose a tag to compare

Added caching for quicker multi requests!

Data is cached for 3 minutes, so multiple requests of the same person or guild will be faster and won't require a request!