Releases: RayyanW786/amari.py
Releases · RayyanW786/amari.py
v1.3.0
What's New?
-
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
- You can now enable caching by adding
-
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
-
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(...)
- The class now supports
-
Bug Fix: Correct Return Value
- Fixed an issue where the class object was being returned instead of the correct result (
self
).
- Fixed an issue where the class object was being returned instead of the correct result (
v1.2.1 & v1.2
What's new?
- Reworked and improved the AntiRatelimit feature
v1.2.1 was a quick fix of a major bug in v1.2