Eric Schneider
52967ec103
Fix path sanitation for absolute Windows paths
When using an absolute Windows path (e.g. `C:\Users\USER\Documents\`)
for the `newbot` command the translation table replaced the valid `:`
character in the drive causing it to create the directory at the wrong
place.
Fixes #10096
2 months ago
oDepleted
bc87715463
Trim trailing whitespace in cog template
2 years ago
Rapptz
7c1dffbf9d
Use importlib.metadata instead of pkg_resources
3 years ago
Server Bot
fb8d5c15d0
Add cog_app_command_error to python -m newcog
3 years ago
tomy
781b297ac9
Add intents to python -m discord newbot
3 years ago
jack1142
86de926678
Print help when no args are provided to python -m discord
3 years ago
Stocker
5aa696ccfa
Fix typing issues and improve typing completeness across the library
Co-authored-by: Danny <[email protected] >
Co-authored-by: Josh <[email protected] >
3 years ago
Josh
a1c618215e
[commads] Change cog/extension load/unload methods to be async
3 years ago
Rapptz
fc4e5d6237
Fix type checker error in discord.__main__
3 years ago
Rapptz
88b520b5ab
Reformat code using black
Segments where readability was hampered were fixed by appropriate
format skipping directives. New code should hopefully be black
compatible. The moment they remove the -S option is probably the moment
I stop using black though.
3 years ago
Rapptz
d2dd31de63
Make __main__ template strings private
4 years ago
Kallum
cc6edccc0c
Make the bot template use f-strings over str.format
4 years ago
Rapptz
4d44872511
Remove encoding header from generated code
4 years ago
Rapptz
9d39b135f4
Modernize code to use f-strings
This also removes the encoding on the top, since Python 3 does it by
default. It also changes some methods to use `yield from`.
4 years ago
Bryan Forbes
c325918ae6
Only run main() if the module is being executed as a script
4 years ago
Josh
73a783cd6b
Strip both - and _ from newcog class names
4 years ago
Nihaal Sangha
69bdc3a184
Change copyright year to present
4 years ago
Rapptz
b8154e365f
Rewrite gateway to use aiohttp instead of websockets
5 years ago
Rapptz
6071607176
Bump copyright year to 2020
Closes #2510
5 years ago
Rapptz
4843f61eaf
Make discord --version a bit more helpful.
6 years ago
Rapptz
2fe42d5e81
Remove Python 3.5 check in __main__.py
6 years ago
NCPlayz
11a0098269
Add new cog methods
Added two new arguments to the parser, and updated defunct cog code.
Remove debug
remove print statement
6 years ago
Dante Dam
9656a21ebe
Bumped copyright years to 2019.
6 years ago
Hornwitser
efb4ff850e
[lint] Fix import order
Reorder imports to be consistenly grouped by standard library, third
party library, and local modules in that order thoughout the library.
7 years ago
Hornwitser
fa46b07db1
[lint] Rename exception variables to exc
Use the more explicit (and common) exc instead of e as the variable
holding the exception in except handlers.
7 years ago
Hornwitser
c8b49d37be
[lint] Fix incorrect and inconsistent whitespace
Adjust whitespace to be consistent with the rest of the library.
7 years ago
Hornwitser
d58fc0ccee
[lint] Remove unused imports
Left over from various refactoring and rewrites.
7 years ago
Rapptz
c23ef9e8a4
[commands] Add __global_check_once to list of cog functions.
8 years ago
Rapptz
02d854a99c
Fix format string in new bot template.
8 years ago
Rapptz
8aa04b7084
First pass at having a __main__ file.
This allows you to generate templates and projects easily. Its main
purpose is to be easy to use for beginners in the upcoming
documentation.
Two new commands are added:
* newbot
* creates a new bot template using a name and optional directory
* newcog
* creates a new cog template using a name and optional directory
8 years ago