0.1.0.7
Release date : 13 March 2025 (happy new year 2025 🎉)
Hello! This version is meant to make dispy more intuitive and simple to use. These adjustments and fixes we're made when developing my own bots with dispy.
I've made importing the library more clean and more optimized. All the types need to be imported from dispy.types
as for now and creating a bot is made with from dispy import Bot
.
And i'm working on slash commands, it will be really cool to use!
Changelog
New
Support adding reactions and removing them.
Snowflakes (IDs) now are represent as STR and INT, so you can compared them (e.g. is equal) with STR and INT values.
ISO timestamp are now automatically converted to epoch timestamp, now dispy will only use this kind of timestamp because it is easier to manipulate.
Added a caching system used by slash commands, it can store informations so it isn't define every executions.
.
kick()
for members and users.Added
.getDict()
to the DictWrapper, so you can finally usejson.dumps()
.
Fix
Editing a message now return a message object.
Fixed an issue with DictWrapper, which made if the debug mode was disable, it will failed if there is an extra field.
Removed
Pydantic dependency.
TokenReader() was removed :'(
Changes
Importing dispy is now way more clean.
How to update my code?
Timestamps
Now that dispy has completely removed iso timestamp, you will need to recalculate and recode parcel of your code that use the old timestamp. The epoch timestamps is using seconds and milliseconds are in decimals.
Importing
Before, you where forced to import all (*) of the dispy library, now you need to import it cleanly, for example:
Removed
TokenReader() was removed, but no one was using it anyway lmao.
Last updated