27 |
28 |
29 |
30 | ### STAR THE PROJECT IF U LIKE :)
31 |
--------------------------------------------------------------------------------
/Python/SECURITY.md:
--------------------------------------------------------------------------------
1 | # Security Policy
2 |
3 | ## Reporting a Vulnerability
4 |
5 | Use this section to tell people how to report a vulnerability.
6 |
7 | If you want to report a vulnerability, there are 2 ways.
8 |
9 | You can open an issue,
10 | or raise a pull request.
11 |
--------------------------------------------------------------------------------
/Python/global-req.txt:
--------------------------------------------------------------------------------
1 | git+https://github.com/Pycord-Development/pycord
2 | asyncio
3 | youtube-dl
4 | pynacl
5 | FFmpeg
6 | google
7 | beautifulsoup4
8 | asyncpraw
9 | aiohttp
10 |
--------------------------------------------------------------------------------
/Python/main.py:
--------------------------------------------------------------------------------
1 | import discord
2 | from discord.ext import commands
3 | import os
4 |
5 | TOKEN = os.environ['TOKEN']
6 | intents = discord.Intents.all() #need to enable
7 | bot = commands.Bot(command_prefix='~', intents=intents)
8 |
9 | for foldername in os.listdir('./Cogs'): #for every folder in cogs
10 | for filename in os.listdir(f'./Cogs/{foldername}'):# for every file in a folder in cogs
11 | if filename.endswith('.py') and not filename in ['util.py', 'error.py']: #if the file is a python file and if the file is a cog
12 | bot.load_extension(f'Cogs.{foldername}.{filename[:-3]}')#load the extension
13 |
14 |
15 |
16 | bot.run(TOKEN)
17 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
A Multipurpose bot with many Commands.
2 |
If you want to contribute, join the Support server and raise a pull request
3 |
4 | # How to use this repo:
5 | Note: If you want to use the code in this repo, do NOT fork it. this repo has JS and Python versions of the same bot, so I fail to understand how will this be usefull if you fork it.
6 |
7 | ### Step 1:
8 | Navigate to any cog you want.
9 | Click on the "copy raw button"
10 |
11 | #### Video demonstration:
12 | 
13 |
14 |
15 | ### Step 2:
16 | Hereafter, You need to replace any "..."'s or read the comments, if any customizing is required.
17 |
18 |
19 |
--------------------------------------------------------------------------------
/vids/Video 1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pogrammar/Discord-multipurpose-bot/39139d75ac8048d9ff8c1c69c0ee1c230fed5b32/vids/Video 1.gif
--------------------------------------------------------------------------------