sinfulporcupine

main.py

Dec 19th, 2024 (edited)
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.74 KB | Source Code | 0 0
  1. # This Discord bot was created by 'sinning' based off the following tutorial by Indently:
  2. # https://www.youtube.com/watch?v=UYJDKSah-Ww
  3. # The majority of code in main.py, and some part of responses.py, is directly copied from the tutorial.
  4. # The original author's GitHub repository can be found here:
  5. # https://github.com/indently/discord_tutorial_2024
  6. # Note that this bot will not work without all the steps included in the tutorial at all
  7. # And I cannot guarantee it will work even if those are followed perfectly
  8. # See also: https://pastebin.com/uSUFpdkf , for responses.py
  9. # And https://danbooru.donmai.us/forum_topics/28338 for related topic
  10.  
  11. from typing import Final
  12. import os
  13. from dotenv import load_dotenv
  14. from discord import Intents, Client, Message
  15. from responses import get_response
  16.  
  17. # STEP 0: LOAD OUR TOKEN FROM SOMEWHERE SAFE
  18. load_dotenv()
  19. TOKEN: Final[str] = os.getenv('DISCORD_TOKEN')
  20.  
  21. # STEP 1: BOT SETUP
  22. intents: Intents = Intents.default()
  23. intents.message_content = True  # NOQA
  24. client: Client = Client(intents=intents)
  25.  
  26.  
  27. # STEP 2: MESSAGE FUNCTIONALITY
  28. async def send_message(message: Message, user_message: str) -> None:
  29.     if not user_message:
  30.         print('(Message was empty because intents were not enabled probably)')
  31.         return
  32.  
  33.     if is_private := user_message[0] == '?':
  34.         user_message = user_message[1:]
  35.  
  36.     try:
  37.         potential_embed = ''
  38.         if len(message.embeds) > 0:
  39.             print("The message has embeds")
  40.             potential_embed=[]
  41.             for _embed in message.embeds:
  42.                 print(f"_embed.thumbnail.url={_embed.thumbnail.url}   _embed.image.url={_embed.image.url}")
  43.                 if isinstance(_embed.image.url, str):
  44.                     potential_embed.append(_embed.image.url)
  45.                 if isinstance(_embed.thumbnail.url, str):
  46.                     potential_embed.append(_embed.thumbnail.url)
  47.         response: str = get_response(user_message, potential_embed)
  48.         await message.author.send(response) if is_private else await message.channel.send(response)
  49.     except Exception as e:
  50.         print(e)
  51.  
  52.  
  53. # STEP 3: HANDLING THE STARTUP FOR OUR BOT
  54. @client.event
  55. async def on_ready() -> None:
  56.     print(f'{client.user} is now running!')
  57.  
  58.  
  59. # STEP 4: HANDLING INCOMING MESSAGES
  60. @client.event
  61. async def on_message(message: Message) -> None:
  62.     if message.author == client.user:
  63.         return
  64.  
  65.     username: str = str(message.author)
  66.     user_message: str = message.content
  67.     channel: str = str(message.channel)
  68.  
  69.     print(f'[{channel}] {username}: "{user_message}"')
  70.     await send_message(message, user_message)
  71.  
  72.  
  73. # STEP 5: MAIN ENTRY POINT
  74. def main() -> None:
  75.     client.run(token=TOKEN)
  76.  
  77.  
  78. if __name__ == '__main__':
  79.     main()
  80.  
Tags: python
Add Comment
Please, Sign In to add comment