├── .idea ├── .gitignore ├── 100projects.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── 01_mad_libs └── mad_libs.py ├── 02_number_guessing └── number_guessing.py ├── 03_dice_simulator └── dice_simulator.py ├── 04_hangman └── hangman.py ├── 05_rock_paper_scissors └── rock_paper_scissors.py ├── 06_password_generator └── password_generator.py ├── 07_qr_code_generator └── qr_code_generator.py ├── 08_website_checker ├── main.py └── websites.csv ├── 09_common_password_checker ├── main.py └── passwords.text ├── 10_brute_force ├── main.py └── words.text ├── 11_image_downloader └── image_downloader.py ├── 12_tax_calculator └── tax_calculator.py ├── 13_file_sorter └── main.py ├── 14_sentiment_analysis_bot └── sentiment_analysis_bot.py ├── 15_url_shortener └── url_shortener.py ├── 16_pdf_reader ├── main.py └── sample.pdf ├── 17_chat_bot └── chat_bot.py ├── 18_email_scraper └── email_scraper.py ├── 19_cryptocurrency_alerter ├── crypto_data.py └── main.py ├── 20_public_api └── public_api.py ├── 21_habit_tracker ├── habit_tracker.py └── main.py ├── 22_currency_converter ├── main.py └── rates.json ├── 23_headline_scraper └── main.py ├── 24_distance_calculator └── distance_calculator.py ├── 25_email_sender ├── cat.png ├── credentials.py └── main.py ├── 26_weather_app ├── dummy_data.json ├── main.py ├── model.py └── weather_api.py ├── 27_value_prediction ├── main.py └── model.py ├── 28_telegram_bot └── telegram_bot.py ├── 29_discord_bot ├── knowledge.json ├── main.py └── responses.py ├── 30_dodgy_square └── main.py ├── README.md └── requirements.txt /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/100projects.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/.idea/100projects.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /01_mad_libs/mad_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/01_mad_libs/mad_libs.py -------------------------------------------------------------------------------- /02_number_guessing/number_guessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/02_number_guessing/number_guessing.py -------------------------------------------------------------------------------- /03_dice_simulator/dice_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/03_dice_simulator/dice_simulator.py -------------------------------------------------------------------------------- /04_hangman/hangman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/04_hangman/hangman.py -------------------------------------------------------------------------------- /05_rock_paper_scissors/rock_paper_scissors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/05_rock_paper_scissors/rock_paper_scissors.py -------------------------------------------------------------------------------- /06_password_generator/password_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/06_password_generator/password_generator.py -------------------------------------------------------------------------------- /07_qr_code_generator/qr_code_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/07_qr_code_generator/qr_code_generator.py -------------------------------------------------------------------------------- /08_website_checker/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/08_website_checker/main.py -------------------------------------------------------------------------------- /08_website_checker/websites.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/08_website_checker/websites.csv -------------------------------------------------------------------------------- /09_common_password_checker/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/09_common_password_checker/main.py -------------------------------------------------------------------------------- /09_common_password_checker/passwords.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/09_common_password_checker/passwords.text -------------------------------------------------------------------------------- /10_brute_force/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/10_brute_force/main.py -------------------------------------------------------------------------------- /10_brute_force/words.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/10_brute_force/words.text -------------------------------------------------------------------------------- /11_image_downloader/image_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/11_image_downloader/image_downloader.py -------------------------------------------------------------------------------- /12_tax_calculator/tax_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/12_tax_calculator/tax_calculator.py -------------------------------------------------------------------------------- /13_file_sorter/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/13_file_sorter/main.py -------------------------------------------------------------------------------- /14_sentiment_analysis_bot/sentiment_analysis_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/14_sentiment_analysis_bot/sentiment_analysis_bot.py -------------------------------------------------------------------------------- /15_url_shortener/url_shortener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/15_url_shortener/url_shortener.py -------------------------------------------------------------------------------- /16_pdf_reader/main.py: -------------------------------------------------------------------------------- 1 | # File missing 2 | -------------------------------------------------------------------------------- /16_pdf_reader/sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/16_pdf_reader/sample.pdf -------------------------------------------------------------------------------- /17_chat_bot/chat_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/17_chat_bot/chat_bot.py -------------------------------------------------------------------------------- /18_email_scraper/email_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/18_email_scraper/email_scraper.py -------------------------------------------------------------------------------- /19_cryptocurrency_alerter/crypto_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/19_cryptocurrency_alerter/crypto_data.py -------------------------------------------------------------------------------- /19_cryptocurrency_alerter/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/19_cryptocurrency_alerter/main.py -------------------------------------------------------------------------------- /20_public_api/public_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/20_public_api/public_api.py -------------------------------------------------------------------------------- /21_habit_tracker/habit_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/21_habit_tracker/habit_tracker.py -------------------------------------------------------------------------------- /21_habit_tracker/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/21_habit_tracker/main.py -------------------------------------------------------------------------------- /22_currency_converter/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/22_currency_converter/main.py -------------------------------------------------------------------------------- /22_currency_converter/rates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/22_currency_converter/rates.json -------------------------------------------------------------------------------- /23_headline_scraper/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/23_headline_scraper/main.py -------------------------------------------------------------------------------- /24_distance_calculator/distance_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/24_distance_calculator/distance_calculator.py -------------------------------------------------------------------------------- /25_email_sender/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/25_email_sender/cat.png -------------------------------------------------------------------------------- /25_email_sender/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/25_email_sender/credentials.py -------------------------------------------------------------------------------- /25_email_sender/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/25_email_sender/main.py -------------------------------------------------------------------------------- /26_weather_app/dummy_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/26_weather_app/dummy_data.json -------------------------------------------------------------------------------- /26_weather_app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/26_weather_app/main.py -------------------------------------------------------------------------------- /26_weather_app/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/26_weather_app/model.py -------------------------------------------------------------------------------- /26_weather_app/weather_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/26_weather_app/weather_api.py -------------------------------------------------------------------------------- /27_value_prediction/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/27_value_prediction/main.py -------------------------------------------------------------------------------- /27_value_prediction/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/27_value_prediction/model.py -------------------------------------------------------------------------------- /28_telegram_bot/telegram_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/28_telegram_bot/telegram_bot.py -------------------------------------------------------------------------------- /29_discord_bot/knowledge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/29_discord_bot/knowledge.json -------------------------------------------------------------------------------- /29_discord_bot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/29_discord_bot/main.py -------------------------------------------------------------------------------- /29_discord_bot/responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/29_discord_bot/responses.py -------------------------------------------------------------------------------- /30_dodgy_square/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/30_dodgy_square/main.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indently/python_projects/HEAD/requirements.txt --------------------------------------------------------------------------------