aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/snakes (follow)
Commit message (Collapse)AuthorAgeLines
* Move snakes commands into fun folderGravatar Janine vN2021-09-05-1965/+0
|
* Merge branch 'main' into android-codeblock-fixGravatar Xithrius2021-09-03-30/+30
|\
| * Removed more not-needed `None` returnsGravatar Xithrius2021-09-02-1/+1
| |
| * Fix type annotationsGravatar decorator-factory2021-08-31-29/+29
| |
* | Improved consistency for codeblocks to end with a newlineGravatar wookie1842021-09-01-28/+32
|/
* Snakes: make use of PLAYER_ICON_IMAGE_SIZE againGravatar Matteo Bertucci2021-08-31-1/+1
|
* Migrate to Discord.py 2.0a0Gravatar Matteo Bertucci2021-08-31-12/+6
| | | | | | Since the Discord.py repository has been archived, we can switch to the latest commit of 2.0a0, knowing no breaking change will occur (still pinned to the commit just in case). This commit also solves two small problems due to that fix, the avatar interface changing and Embed.name disappearing. Quite a painless migration.
* Add baby anaconda to snake hatch (#822)Gravatar Krishna Ramasimha2021-08-30-1/+2
| | | Add baby anaconda to snake hatch, using the anaconda logo
* Replace fuzzywuzzy with rapidfuzzGravatar wookie1842021-08-06-1/+1
|
* chore: Refactor more code to follow our style guideGravatar ToxicKidz2021-05-14-11/+15
|
* chore: Use pathlib.Path.read_text & write_text over openGravatar ToxicKidz2021-05-13-8/+4
|
* chore: Use ctx instead of ctx.channelGravatar ToxicKidz2021-05-10-1/+1
|
* chore: ctx.message.author -> ctx.authorGravatar ToxicKidz2021-05-10-3/+3
|
* chore: Apply more suggested changesGravatar ToxicKidz2021-05-10-3/+1
|
* chore: Reformat the code to follow the style guildGravatar ToxicKidz2021-05-07-9/+24
|
* chore: Apply anand's suggested changesGravatar ToxicKidz2021-05-05-89/+88
|
* fix: Pass bot only when __init__ is definedGravatar ToxicKidz2021-05-04-3/+2
|
* Merge branch 'spring-cleanup' of https://github.com/ToxicKidz/sir-lancebot ↵Gravatar ToxicKidz2021-05-04-1/+1
|\ | | | | | | into spring-cleanup
| * chore: Don't make content an empty stringGravatar ToxicKidz2021-05-04-1/+1
| | | | | | Co-authored-by: Matteo Bertucci <[email protected]>
* | chore: Prefer double quotes over single quotesGravatar ToxicKidz2021-05-04-99/+99
|/
* chore: Don't return a Message object when the return annotation is NoneGravatar ToxicKidz2021-05-03-2/+4
|
* chore: ctx.channel.send -> ctx.sendGravatar vcokltfre2021-04-20-11/+11
|
* make invoke_help_command only take ctxGravatar ToxicKidz2021-03-13-1/+1
|
* make utility invoke_help_command functionGravatar ToxicKidz2021-03-12-2/+2
|
* change ctx.send_help to ctx.invoke(help_command)Gravatar ToxicKidz2021-03-11-1/+2
| | | | ;
* Remove unused importGravatar William Da Silva2020-12-29-1/+1
|
* Merge branch 'master' into omdb-to-tmdbGravatar William Da Silva2020-12-28-18/+7
|\
| * Check if error.original is an instance of OSError.Gravatar Rohan2020-12-11-4/+3
| | | | | | | | Also, remove error handler for get_command and video_command.
| * Modify snakes_cog error handler.Gravatar Rohan2020-12-07-16/+6
| | | | | | | | | | local error handler no longer checks for BadArgument error and the attribute handled will be set to True on the error if an OSError occurs.
* | Merge branch 'master' into omdb-to-tmdbGravatar Matteo Bertucci2020-11-30-2/+2
|\|
| * Use get instead direct getting of key for snake video responseGravatar ks1292020-10-07-1/+1
| |
| * Snakes: Use `quote_plus` instead `quote` for parsing snake video queryGravatar ks1292020-10-07-1/+1
| |
* | Fix empty field in snake movie embedGravatar Will Da Silva2020-10-16-2/+4
| |
* | Comply with TMDB ToSGravatar Will Da Silva2020-10-16-1/+2
| |
* | Set the number of movie pages fetched on first requestGravatar Will Da Silva2020-10-13-1/+5
| |
* | Fix TMDB leakGravatar Will Da Silva2020-10-08-1/+1
| |
* | Replace OMDB with TMDBGravatar Will Da Silva2020-10-05-51/+43
|/ | | | Closes: #136
* Update snake cog so ext command won't show filesGravatar Gustav Odinger2020-09-21-4/+4
| | | | - Doing .c list would show the files inside the snakes module as individual cogs, which isn't the case
* Remove redundant f-stringsGravatar MarkKoz2020-07-14-2/+2
| | | | This fixes a new lint error (F541) introduced by flake8 3.8.
* Merge branch 'master' into encoding_bug_fixGravatar Josué D. (JD)2020-05-24-3/+5
|\
| * F i x e d S p a c eGravatar DuckMasterAl2020-05-08-1/+1
| |
| * Lint limitGravatar DuckMasterAl2020-05-07-1/+2
| |
| * Updated Prefix and WebsiteGravatar DuckMasterAl2020-05-07-3/+4
| |
* | 5/19 - bot | xmas, easter, evergreen - updated open statesments with ↵Gravatar jodth072020-05-19-2/+2
|/ | | | explicit encoding
* Deseasonify: log in `add_cog` rather than in each `setup`Gravatar kwzrd2020-03-28-1/+0
| | | | | | | | | | | | The previous system required each extension's `setup` func to log that the cog was loaded. This leads to inconsistent messages all trying to convey the same thing, variable logger names in the output file are difficult to read, and several extensions were not logging at all. By logging directly in the `add_cog` method, we reduce code repetition, ensure consistent format, and remove the responsibility to remember that a log should be made.
* Deseasonify: rename `seasons` pkg to `exts`Gravatar kwzrd2020-03-28-0/+1963
It is believed that this is now a more logical name for the package, as extensions no longer bind to seasons. Internally, packages are still grouped into seasonal sub-packages. There are quite a few, and it makes sense to group them by a common theme that inspired their functionality.