├── .github ├── auto_assign.yml ├── config.yml └── workflows │ └── python-app.yml ├── .gitignore ├── .idea ├── .gitignore ├── bot-collection.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── Book_Bot ├── README.md ├── book.py ├── main.py └── requirements.txt ├── Discord Motivation Bot ├── README.md └── bot.py ├── Discord Weather Bot ├── README.md ├── __pycache__ │ └── weather.cpython-39.pyc ├── img │ ├── preview.png │ └── weather icon.png ├── main.py └── weather.py ├── Discord_Bot ├── README.md ├── main.py └── requirments.txt ├── Discord_Poll_Bot ├── .gitignore └── main.py ├── Encouragement discord bot ├── code.py └── readme.md ├── Excel_Automation_Python └── main.py ├── LICENSE ├── News_Bot ├── README.md ├── main.py └── requirements.txt ├── QR-Code-Bot ├── QR_Code.py └── README.md ├── README.md ├── Search Bot ├── Search_Bot.ipynb └── requirements.txt ├── Telegram Bots └── Torrent Links Downloader │ ├── README.md │ └── config.py ├── TwitterBots ├── README.md ├── config.py ├── keys.py └── retweet.py ├── Unsplash-Bot ├── README.md ├── image_downloader.py ├── main.py ├── requirements.txt └── unsplash.png ├── Voice_Recognition_AutomationBot.py ├── WOTD_Bot ├── README.md ├── requirements.txt └── wotd_bot.py ├── Web Scrapper Bot ├── requirements.txt └── web_scrapping_bot.py ├── Whatsapp-Redirect-Bot ├── Images │ ├── Screenshot.jpg │ └── logo.png ├── README.md ├── Whatsapp_Redirect_Bot.py ├── helper.py └── requirements.txt ├── Whatsapp-bot ├── Profile-Info-bot │ ├── Whatsapp.py │ ├── readme.md │ └── requirements.txt ├── Tag-all-bot │ ├── README.md │ ├── requirements.txt │ └── tagall-bot.py └── image-bot │ ├── README.md │ ├── image-bot.py │ └── requirements.txt ├── YouTube-Bot ├── ReadMe.md ├── YouTube_Bot.py └── requirements.txt ├── ai_image_generation_telegram_bot ├── .env ├── README.md ├── ai_bot.py ├── botss.jpg ├── replicatess.png └── requirements.txt ├── bulk_email_automation.py ├── contributing_guide.md ├── covid_bot ├── .env ├── README.md ├── covid_telegram_bot.py ├── requirements.txt └── ss1.png ├── discord_bot ├── readme.md └── welcome_bot.py ├── email_module.py ├── google_cloud_bot ├── bot.html ├── logo1.PNG └── style1.css ├── insta_bot.py ├── meme_bot ├── .env ├── README.md ├── bot.py ├── requirements.txt └── ss1.png ├── messenger_module.py ├── robo-speaker └── main.py ├── spelling_corrector.py ├── tg_bot ├── README.md ├── images │ ├── main.png │ └── screen.png ├── main.py └── requirements.txt ├── translator.py ├── twitter_bot ├── README.md ├── bot.py ├── config.py └── requirements.txt └── wa_bot_code.py /.github/auto_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/.github/auto_assign.yml -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | TwitterBots/__pycache__ -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/bot-collection.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/.idea/bot-collection.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Book_Bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Book_Bot/README.md -------------------------------------------------------------------------------- /Book_Bot/book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Book_Bot/book.py -------------------------------------------------------------------------------- /Book_Bot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Book_Bot/main.py -------------------------------------------------------------------------------- /Book_Bot/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Book_Bot/requirements.txt -------------------------------------------------------------------------------- /Discord Motivation Bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Discord Motivation Bot/README.md -------------------------------------------------------------------------------- /Discord Motivation Bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Discord Motivation Bot/bot.py -------------------------------------------------------------------------------- /Discord Weather Bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Discord Weather Bot/README.md -------------------------------------------------------------------------------- /Discord Weather Bot/__pycache__/weather.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Discord Weather Bot/__pycache__/weather.cpython-39.pyc -------------------------------------------------------------------------------- /Discord Weather Bot/img/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Discord Weather Bot/img/preview.png -------------------------------------------------------------------------------- /Discord Weather Bot/img/weather icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Discord Weather Bot/img/weather icon.png -------------------------------------------------------------------------------- /Discord Weather Bot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Discord Weather Bot/main.py -------------------------------------------------------------------------------- /Discord Weather Bot/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Discord Weather Bot/weather.py -------------------------------------------------------------------------------- /Discord_Bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Discord_Bot/README.md -------------------------------------------------------------------------------- /Discord_Bot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Discord_Bot/main.py -------------------------------------------------------------------------------- /Discord_Bot/requirments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Discord_Bot/requirments.txt -------------------------------------------------------------------------------- /Discord_Poll_Bot/.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /Discord_Poll_Bot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Discord_Poll_Bot/main.py -------------------------------------------------------------------------------- /Encouragement discord bot/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Encouragement discord bot/code.py -------------------------------------------------------------------------------- /Encouragement discord bot/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Encouragement discord bot/readme.md -------------------------------------------------------------------------------- /Excel_Automation_Python/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Excel_Automation_Python/main.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/LICENSE -------------------------------------------------------------------------------- /News_Bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/News_Bot/README.md -------------------------------------------------------------------------------- /News_Bot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/News_Bot/main.py -------------------------------------------------------------------------------- /News_Bot/requirements.txt: -------------------------------------------------------------------------------- 1 | newsapi-python 2 | pycountry -------------------------------------------------------------------------------- /QR-Code-Bot/QR_Code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/QR-Code-Bot/QR_Code.py -------------------------------------------------------------------------------- /QR-Code-Bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/QR-Code-Bot/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/README.md -------------------------------------------------------------------------------- /Search Bot/Search_Bot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Search Bot/Search_Bot.ipynb -------------------------------------------------------------------------------- /Search Bot/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Search Bot/requirements.txt -------------------------------------------------------------------------------- /Telegram Bots/Torrent Links Downloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Telegram Bots/Torrent Links Downloader/README.md -------------------------------------------------------------------------------- /Telegram Bots/Torrent Links Downloader/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Telegram Bots/Torrent Links Downloader/config.py -------------------------------------------------------------------------------- /TwitterBots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/TwitterBots/README.md -------------------------------------------------------------------------------- /TwitterBots/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/TwitterBots/config.py -------------------------------------------------------------------------------- /TwitterBots/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/TwitterBots/keys.py -------------------------------------------------------------------------------- /TwitterBots/retweet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/TwitterBots/retweet.py -------------------------------------------------------------------------------- /Unsplash-Bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Unsplash-Bot/README.md -------------------------------------------------------------------------------- /Unsplash-Bot/image_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Unsplash-Bot/image_downloader.py -------------------------------------------------------------------------------- /Unsplash-Bot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Unsplash-Bot/main.py -------------------------------------------------------------------------------- /Unsplash-Bot/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Unsplash-Bot/requirements.txt -------------------------------------------------------------------------------- /Unsplash-Bot/unsplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Unsplash-Bot/unsplash.png -------------------------------------------------------------------------------- /Voice_Recognition_AutomationBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Voice_Recognition_AutomationBot.py -------------------------------------------------------------------------------- /WOTD_Bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/WOTD_Bot/README.md -------------------------------------------------------------------------------- /WOTD_Bot/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | twilio 3 | flask 4 | -------------------------------------------------------------------------------- /WOTD_Bot/wotd_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/WOTD_Bot/wotd_bot.py -------------------------------------------------------------------------------- /Web Scrapper Bot/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Web Scrapper Bot/requirements.txt -------------------------------------------------------------------------------- /Web Scrapper Bot/web_scrapping_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Web Scrapper Bot/web_scrapping_bot.py -------------------------------------------------------------------------------- /Whatsapp-Redirect-Bot/Images/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Whatsapp-Redirect-Bot/Images/Screenshot.jpg -------------------------------------------------------------------------------- /Whatsapp-Redirect-Bot/Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Whatsapp-Redirect-Bot/Images/logo.png -------------------------------------------------------------------------------- /Whatsapp-Redirect-Bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Whatsapp-Redirect-Bot/README.md -------------------------------------------------------------------------------- /Whatsapp-Redirect-Bot/Whatsapp_Redirect_Bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Whatsapp-Redirect-Bot/Whatsapp_Redirect_Bot.py -------------------------------------------------------------------------------- /Whatsapp-Redirect-Bot/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Whatsapp-Redirect-Bot/helper.py -------------------------------------------------------------------------------- /Whatsapp-Redirect-Bot/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Whatsapp-Redirect-Bot/requirements.txt -------------------------------------------------------------------------------- /Whatsapp-bot/Profile-Info-bot/Whatsapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Whatsapp-bot/Profile-Info-bot/Whatsapp.py -------------------------------------------------------------------------------- /Whatsapp-bot/Profile-Info-bot/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Whatsapp-bot/Profile-Info-bot/readme.md -------------------------------------------------------------------------------- /Whatsapp-bot/Profile-Info-bot/requirements.txt: -------------------------------------------------------------------------------- 1 | selenium==3.141.0 2 | -------------------------------------------------------------------------------- /Whatsapp-bot/Tag-all-bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Whatsapp-bot/Tag-all-bot/README.md -------------------------------------------------------------------------------- /Whatsapp-bot/Tag-all-bot/requirements.txt: -------------------------------------------------------------------------------- 1 | selenium==3.141.0 2 | -------------------------------------------------------------------------------- /Whatsapp-bot/Tag-all-bot/tagall-bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Whatsapp-bot/Tag-all-bot/tagall-bot.py -------------------------------------------------------------------------------- /Whatsapp-bot/image-bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Whatsapp-bot/image-bot/README.md -------------------------------------------------------------------------------- /Whatsapp-bot/image-bot/image-bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Whatsapp-bot/image-bot/image-bot.py -------------------------------------------------------------------------------- /Whatsapp-bot/image-bot/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/Whatsapp-bot/image-bot/requirements.txt -------------------------------------------------------------------------------- /YouTube-Bot/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/YouTube-Bot/ReadMe.md -------------------------------------------------------------------------------- /YouTube-Bot/YouTube_Bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/YouTube-Bot/YouTube_Bot.py -------------------------------------------------------------------------------- /YouTube-Bot/requirements.txt: -------------------------------------------------------------------------------- 1 | webbrowser 2 | googleapiclient 3 | youtube_dl 4 | vlc 5 | pafy -------------------------------------------------------------------------------- /ai_image_generation_telegram_bot/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/ai_image_generation_telegram_bot/.env -------------------------------------------------------------------------------- /ai_image_generation_telegram_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/ai_image_generation_telegram_bot/README.md -------------------------------------------------------------------------------- /ai_image_generation_telegram_bot/ai_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/ai_image_generation_telegram_bot/ai_bot.py -------------------------------------------------------------------------------- /ai_image_generation_telegram_bot/botss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/ai_image_generation_telegram_bot/botss.jpg -------------------------------------------------------------------------------- /ai_image_generation_telegram_bot/replicatess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/ai_image_generation_telegram_bot/replicatess.png -------------------------------------------------------------------------------- /ai_image_generation_telegram_bot/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/ai_image_generation_telegram_bot/requirements.txt -------------------------------------------------------------------------------- /bulk_email_automation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/bulk_email_automation.py -------------------------------------------------------------------------------- /contributing_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/contributing_guide.md -------------------------------------------------------------------------------- /covid_bot/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/covid_bot/.env -------------------------------------------------------------------------------- /covid_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/covid_bot/README.md -------------------------------------------------------------------------------- /covid_bot/covid_telegram_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/covid_bot/covid_telegram_bot.py -------------------------------------------------------------------------------- /covid_bot/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/covid_bot/requirements.txt -------------------------------------------------------------------------------- /covid_bot/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/covid_bot/ss1.png -------------------------------------------------------------------------------- /discord_bot/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/discord_bot/readme.md -------------------------------------------------------------------------------- /discord_bot/welcome_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/discord_bot/welcome_bot.py -------------------------------------------------------------------------------- /email_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/email_module.py -------------------------------------------------------------------------------- /google_cloud_bot/bot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/google_cloud_bot/bot.html -------------------------------------------------------------------------------- /google_cloud_bot/logo1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/google_cloud_bot/logo1.PNG -------------------------------------------------------------------------------- /google_cloud_bot/style1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/google_cloud_bot/style1.css -------------------------------------------------------------------------------- /insta_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/insta_bot.py -------------------------------------------------------------------------------- /meme_bot/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/meme_bot/.env -------------------------------------------------------------------------------- /meme_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/meme_bot/README.md -------------------------------------------------------------------------------- /meme_bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/meme_bot/bot.py -------------------------------------------------------------------------------- /meme_bot/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/meme_bot/requirements.txt -------------------------------------------------------------------------------- /meme_bot/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/meme_bot/ss1.png -------------------------------------------------------------------------------- /messenger_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/messenger_module.py -------------------------------------------------------------------------------- /robo-speaker/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/robo-speaker/main.py -------------------------------------------------------------------------------- /spelling_corrector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/spelling_corrector.py -------------------------------------------------------------------------------- /tg_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/tg_bot/README.md -------------------------------------------------------------------------------- /tg_bot/images/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/tg_bot/images/main.png -------------------------------------------------------------------------------- /tg_bot/images/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/tg_bot/images/screen.png -------------------------------------------------------------------------------- /tg_bot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/tg_bot/main.py -------------------------------------------------------------------------------- /tg_bot/requirements.txt: -------------------------------------------------------------------------------- 1 | pyrogram==2.0.106 2 | -------------------------------------------------------------------------------- /translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/translator.py -------------------------------------------------------------------------------- /twitter_bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/twitter_bot/README.md -------------------------------------------------------------------------------- /twitter_bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/twitter_bot/bot.py -------------------------------------------------------------------------------- /twitter_bot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/twitter_bot/config.py -------------------------------------------------------------------------------- /twitter_bot/requirements.txt: -------------------------------------------------------------------------------- 1 | tweepy==4.0.1 2 | pyrogram==1.4.2 -------------------------------------------------------------------------------- /wa_bot_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neelshah2409/Bot-Collection/HEAD/wa_bot_code.py --------------------------------------------------------------------------------