├── Chatbot ├── Speech recognition │ ├── LICENSE │ ├── OpenAI-Whisper-ChatGPT-Notebook.ipynb │ ├── OpenAI-Whisper-ChatGPTAPI-Audio-Output-Notebook.ipynb │ └── readme.md └── Text Generation │ ├── Deep learning │ ├── Tim_Chatbot.ipynb │ ├── loading model.py │ ├── main.py │ └── readme.md │ ├── Simplilearn │ ├── README.md │ ├── Readme.md │ ├── chatbot.py │ ├── intents.json │ └── new.py │ └── pythoncv Telegram channel │ ├── Python Chatbot Project.py │ ├── Python_Chatbot_Project_–_Learn_to_build_your_first_chatbot_using.docx │ └── readme.md ├── Discord Bots ├── CS50.db ├── LICENSE ├── README.md ├── auth.py ├── cogs │ └── check.py ├── readme.md └── requirements.txt ├── Instagram Bots ├── Commenting_bot.ipynb ├── Scraping Instagram with Python.pdf ├── WebscrapingInstagram_completeNotebook.ipynb ├── instagram.py ├── mport instaloader.py └── readme.md ├── Snapp Prize ├── Snapp.py ├── gui.py ├── http_error.py └── readme.md ├── Telegram Bots ├── Automation │ ├── Melanee robot.py │ └── readme.md ├── Bot.py ├── mtrx.py └── readme.md └── readme.md /Chatbot/Speech recognition/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Chatbot/Speech recognition/LICENSE -------------------------------------------------------------------------------- /Chatbot/Speech recognition/OpenAI-Whisper-ChatGPT-Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Chatbot/Speech recognition/OpenAI-Whisper-ChatGPT-Notebook.ipynb -------------------------------------------------------------------------------- /Chatbot/Speech recognition/OpenAI-Whisper-ChatGPTAPI-Audio-Output-Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Chatbot/Speech recognition/OpenAI-Whisper-ChatGPTAPI-Audio-Output-Notebook.ipynb -------------------------------------------------------------------------------- /Chatbot/Speech recognition/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Chatbot/Speech recognition/readme.md -------------------------------------------------------------------------------- /Chatbot/Text Generation/Deep learning/Tim_Chatbot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Chatbot/Text Generation/Deep learning/Tim_Chatbot.ipynb -------------------------------------------------------------------------------- /Chatbot/Text Generation/Deep learning/loading model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Chatbot/Text Generation/Deep learning/loading model.py -------------------------------------------------------------------------------- /Chatbot/Text Generation/Deep learning/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Chatbot/Text Generation/Deep learning/main.py -------------------------------------------------------------------------------- /Chatbot/Text Generation/Deep learning/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Chatbot/Text Generation/Deep learning/readme.md -------------------------------------------------------------------------------- /Chatbot/Text Generation/Simplilearn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Chatbot/Text Generation/Simplilearn/README.md -------------------------------------------------------------------------------- /Chatbot/Text Generation/Simplilearn/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chatbot/Text Generation/Simplilearn/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Chatbot/Text Generation/Simplilearn/chatbot.py -------------------------------------------------------------------------------- /Chatbot/Text Generation/Simplilearn/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Chatbot/Text Generation/Simplilearn/intents.json -------------------------------------------------------------------------------- /Chatbot/Text Generation/Simplilearn/new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Chatbot/Text Generation/Simplilearn/new.py -------------------------------------------------------------------------------- /Chatbot/Text Generation/pythoncv Telegram channel/Python Chatbot Project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Chatbot/Text Generation/pythoncv Telegram channel/Python Chatbot Project.py -------------------------------------------------------------------------------- /Chatbot/Text Generation/pythoncv Telegram channel/Python_Chatbot_Project_–_Learn_to_build_your_first_chatbot_using.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Chatbot/Text Generation/pythoncv Telegram channel/Python_Chatbot_Project_–_Learn_to_build_your_first_chatbot_using.docx -------------------------------------------------------------------------------- /Chatbot/Text Generation/pythoncv Telegram channel/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Discord Bots/CS50.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Discord Bots/CS50.db -------------------------------------------------------------------------------- /Discord Bots/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Discord Bots/LICENSE -------------------------------------------------------------------------------- /Discord Bots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Discord Bots/README.md -------------------------------------------------------------------------------- /Discord Bots/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Discord Bots/auth.py -------------------------------------------------------------------------------- /Discord Bots/cogs/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Discord Bots/cogs/check.py -------------------------------------------------------------------------------- /Discord Bots/readme.md: -------------------------------------------------------------------------------- 1 | 2 | https://github.com/YasTechOrg/cs50_auth 3 | -------------------------------------------------------------------------------- /Discord Bots/requirements.txt: -------------------------------------------------------------------------------- 1 | disnake==2.5.2 -------------------------------------------------------------------------------- /Instagram Bots/Commenting_bot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Instagram Bots/Commenting_bot.ipynb -------------------------------------------------------------------------------- /Instagram Bots/Scraping Instagram with Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Instagram Bots/Scraping Instagram with Python.pdf -------------------------------------------------------------------------------- /Instagram Bots/WebscrapingInstagram_completeNotebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Instagram Bots/WebscrapingInstagram_completeNotebook.ipynb -------------------------------------------------------------------------------- /Instagram Bots/instagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Instagram Bots/instagram.py -------------------------------------------------------------------------------- /Instagram Bots/mport instaloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Instagram Bots/mport instaloader.py -------------------------------------------------------------------------------- /Instagram Bots/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Instagram Bots/readme.md -------------------------------------------------------------------------------- /Snapp Prize/Snapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Snapp Prize/Snapp.py -------------------------------------------------------------------------------- /Snapp Prize/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Snapp Prize/gui.py -------------------------------------------------------------------------------- /Snapp Prize/http_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Snapp Prize/http_error.py -------------------------------------------------------------------------------- /Snapp Prize/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Snapp Prize/readme.md -------------------------------------------------------------------------------- /Telegram Bots/Automation/Melanee robot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Telegram Bots/Automation/Melanee robot.py -------------------------------------------------------------------------------- /Telegram Bots/Automation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Telegram Bots/Automation/readme.md -------------------------------------------------------------------------------- /Telegram Bots/Bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Telegram Bots/Bot.py -------------------------------------------------------------------------------- /Telegram Bots/mtrx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Telegram Bots/mtrx.py -------------------------------------------------------------------------------- /Telegram Bots/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/Telegram Bots/readme.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Melanee-Melanee/Python-Bots/HEAD/readme.md --------------------------------------------------------------------------------