├── 001_Convert_IPython_to_PDF ├── 001_Convert_IPython_to_PDF.ipynb ├── README.md └── img │ ├── JLUFE.png │ ├── j2p1.png │ └── j2p2.png ├── 002_Create_Digital_Clock ├── 002_Create_Digital_Clock_and_Stopwatch.ipynb ├── README.md ├── dclock.png ├── img │ └── stopwatch.ico └── swatch.png ├── 003_Convert_.py_to_.exe ├── 003_Convert_.py_to_.exe.ipynb ├── README.md ├── __pycache__ │ └── clock.cpython-38.pyc ├── clock.exe ├── clock.py └── img │ ├── py2exe1.png │ ├── py2exe2.png │ ├── py2exe3.png │ ├── py2exe4.png │ └── py2exe5.png ├── 004_Find_IP_Address ├── 004_Find_IP_Address.ipynb └── README.md ├── 005_Test_Internet_Speed ├── 005_Test_Internet_Speed.ipynb ├── README.md ├── result.png └── speed.ico ├── 006_Check_Weather_Forecast ├── 006_Check_Weather_Forecast.ipynb ├── README.md └── output.png ├── 007_Create_AudioBook_from_PDF ├── 007_Create_AudioBook_from_PDF.ipynb ├── README.md ├── demo.pdf └── demo1.pdf ├── 008_Generate_Random_Jokes ├── 008_Generate_Random_Jokes.ipynb └── README.md ├── 009_Convert_image_to_ASCII ├── 009_Convert_image_to_ASCII_and_PencilSketch.ipynb ├── README.md ├── ascii_img.txt ├── pywhatkit_dbs.txt ├── result.png ├── result2.png └── rose.png ├── 010_Perform_Google_Search ├── 010_Perform_Google_Search.ipynb ├── README.md └── pywhatkit_dbs.txt ├── 011_Generate_QR_Code ├── 011_Generate_QR_Code.ipynb ├── README.md └── githubID.png ├── 012_Encode_CAPTCHA ├── 012_Encode_CAPTCHA.ipynb ├── CAPTCHA_1.png ├── CAPTCHA_2.wav └── README.md ├── 013_Unzip_File ├── 013_Unzip_File.ipynb ├── README.md ├── demo.zip └── unzip │ └── 013_Unzip_File │ └── 013_Unzip_File.ipynb ├── 014_Run_JavaScript_in_Python ├── 014_Run_JavaScript_in_Python.ipynb └── README.md ├── 015_Web_Scraping_Covid-19_Data ├── 015_Web_Scraping_Covid-19_Data.ipynb ├── Covid-19_data.csv ├── README.md ├── wordometer1.png └── wordometer2.png ├── 016_Web_Scraping_CoWin_Vaccine_Slots ├── 016_Web_Scraping_CoWin_Vaccine_Slots.ipynb ├── CoWin.png └── README.md ├── 017_Check_Weather_Forecast_with_GUI ├── 017_Check_Weather_Forecast_with_GUI.ipynb ├── README.md ├── get_weather_icons.ipynb └── img │ ├── 01d.png │ ├── 02d.png │ ├── 03d.png │ ├── 04d.png │ ├── landscape.png │ ├── result_1.png │ ├── result_2.png │ └── sun_icon.ico ├── 018_Draw_Sakura_Tree ├── 018_Draw_Sakura_Tree.ipynb ├── README.md └── sakura.png ├── 019_Plagiarism_Checker ├── 019_Plagiarism_Checker.ipynb ├── Arthur.txt ├── Ben.txt ├── Clark.txt ├── README.md └── output.png ├── 020_Road_Detection ├── 020_Road_Detection.ipynb └── img │ ├── road_1.jpeg │ ├── road_2.jpeg │ └── road_3.jpeg ├── LICENSE ├── README.md └── img └── dnld_rep.png /001_Convert_IPython_to_PDF/001_Convert_IPython_to_PDF.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/001_Convert_IPython_to_PDF/001_Convert_IPython_to_PDF.ipynb -------------------------------------------------------------------------------- /001_Convert_IPython_to_PDF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/001_Convert_IPython_to_PDF/README.md -------------------------------------------------------------------------------- /001_Convert_IPython_to_PDF/img/JLUFE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/001_Convert_IPython_to_PDF/img/JLUFE.png -------------------------------------------------------------------------------- /001_Convert_IPython_to_PDF/img/j2p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/001_Convert_IPython_to_PDF/img/j2p1.png -------------------------------------------------------------------------------- /001_Convert_IPython_to_PDF/img/j2p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/001_Convert_IPython_to_PDF/img/j2p2.png -------------------------------------------------------------------------------- /002_Create_Digital_Clock/002_Create_Digital_Clock_and_Stopwatch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/002_Create_Digital_Clock/002_Create_Digital_Clock_and_Stopwatch.ipynb -------------------------------------------------------------------------------- /002_Create_Digital_Clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/002_Create_Digital_Clock/README.md -------------------------------------------------------------------------------- /002_Create_Digital_Clock/dclock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/002_Create_Digital_Clock/dclock.png -------------------------------------------------------------------------------- /002_Create_Digital_Clock/img/stopwatch.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/002_Create_Digital_Clock/img/stopwatch.ico -------------------------------------------------------------------------------- /002_Create_Digital_Clock/swatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/002_Create_Digital_Clock/swatch.png -------------------------------------------------------------------------------- /003_Convert_.py_to_.exe/003_Convert_.py_to_.exe.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/003_Convert_.py_to_.exe/003_Convert_.py_to_.exe.ipynb -------------------------------------------------------------------------------- /003_Convert_.py_to_.exe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/003_Convert_.py_to_.exe/README.md -------------------------------------------------------------------------------- /003_Convert_.py_to_.exe/__pycache__/clock.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/003_Convert_.py_to_.exe/__pycache__/clock.cpython-38.pyc -------------------------------------------------------------------------------- /003_Convert_.py_to_.exe/clock.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/003_Convert_.py_to_.exe/clock.exe -------------------------------------------------------------------------------- /003_Convert_.py_to_.exe/clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/003_Convert_.py_to_.exe/clock.py -------------------------------------------------------------------------------- /003_Convert_.py_to_.exe/img/py2exe1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/003_Convert_.py_to_.exe/img/py2exe1.png -------------------------------------------------------------------------------- /003_Convert_.py_to_.exe/img/py2exe2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/003_Convert_.py_to_.exe/img/py2exe2.png -------------------------------------------------------------------------------- /003_Convert_.py_to_.exe/img/py2exe3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/003_Convert_.py_to_.exe/img/py2exe3.png -------------------------------------------------------------------------------- /003_Convert_.py_to_.exe/img/py2exe4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/003_Convert_.py_to_.exe/img/py2exe4.png -------------------------------------------------------------------------------- /003_Convert_.py_to_.exe/img/py2exe5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/003_Convert_.py_to_.exe/img/py2exe5.png -------------------------------------------------------------------------------- /004_Find_IP_Address/004_Find_IP_Address.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/004_Find_IP_Address/004_Find_IP_Address.ipynb -------------------------------------------------------------------------------- /004_Find_IP_Address/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/004_Find_IP_Address/README.md -------------------------------------------------------------------------------- /005_Test_Internet_Speed/005_Test_Internet_Speed.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/005_Test_Internet_Speed/005_Test_Internet_Speed.ipynb -------------------------------------------------------------------------------- /005_Test_Internet_Speed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/005_Test_Internet_Speed/README.md -------------------------------------------------------------------------------- /005_Test_Internet_Speed/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/005_Test_Internet_Speed/result.png -------------------------------------------------------------------------------- /005_Test_Internet_Speed/speed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/005_Test_Internet_Speed/speed.ico -------------------------------------------------------------------------------- /006_Check_Weather_Forecast/006_Check_Weather_Forecast.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/006_Check_Weather_Forecast/006_Check_Weather_Forecast.ipynb -------------------------------------------------------------------------------- /006_Check_Weather_Forecast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/006_Check_Weather_Forecast/README.md -------------------------------------------------------------------------------- /006_Check_Weather_Forecast/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/006_Check_Weather_Forecast/output.png -------------------------------------------------------------------------------- /007_Create_AudioBook_from_PDF/007_Create_AudioBook_from_PDF.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/007_Create_AudioBook_from_PDF/007_Create_AudioBook_from_PDF.ipynb -------------------------------------------------------------------------------- /007_Create_AudioBook_from_PDF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/007_Create_AudioBook_from_PDF/README.md -------------------------------------------------------------------------------- /007_Create_AudioBook_from_PDF/demo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/007_Create_AudioBook_from_PDF/demo.pdf -------------------------------------------------------------------------------- /007_Create_AudioBook_from_PDF/demo1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/007_Create_AudioBook_from_PDF/demo1.pdf -------------------------------------------------------------------------------- /008_Generate_Random_Jokes/008_Generate_Random_Jokes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/008_Generate_Random_Jokes/008_Generate_Random_Jokes.ipynb -------------------------------------------------------------------------------- /008_Generate_Random_Jokes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/008_Generate_Random_Jokes/README.md -------------------------------------------------------------------------------- /009_Convert_image_to_ASCII/009_Convert_image_to_ASCII_and_PencilSketch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/009_Convert_image_to_ASCII/009_Convert_image_to_ASCII_and_PencilSketch.ipynb -------------------------------------------------------------------------------- /009_Convert_image_to_ASCII/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/009_Convert_image_to_ASCII/README.md -------------------------------------------------------------------------------- /009_Convert_image_to_ASCII/ascii_img.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/009_Convert_image_to_ASCII/ascii_img.txt -------------------------------------------------------------------------------- /009_Convert_image_to_ASCII/pywhatkit_dbs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/009_Convert_image_to_ASCII/pywhatkit_dbs.txt -------------------------------------------------------------------------------- /009_Convert_image_to_ASCII/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/009_Convert_image_to_ASCII/result.png -------------------------------------------------------------------------------- /009_Convert_image_to_ASCII/result2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/009_Convert_image_to_ASCII/result2.png -------------------------------------------------------------------------------- /009_Convert_image_to_ASCII/rose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/009_Convert_image_to_ASCII/rose.png -------------------------------------------------------------------------------- /010_Perform_Google_Search/010_Perform_Google_Search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/010_Perform_Google_Search/010_Perform_Google_Search.ipynb -------------------------------------------------------------------------------- /010_Perform_Google_Search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/010_Perform_Google_Search/README.md -------------------------------------------------------------------------------- /010_Perform_Google_Search/pywhatkit_dbs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/010_Perform_Google_Search/pywhatkit_dbs.txt -------------------------------------------------------------------------------- /011_Generate_QR_Code/011_Generate_QR_Code.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/011_Generate_QR_Code/011_Generate_QR_Code.ipynb -------------------------------------------------------------------------------- /011_Generate_QR_Code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/011_Generate_QR_Code/README.md -------------------------------------------------------------------------------- /011_Generate_QR_Code/githubID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/011_Generate_QR_Code/githubID.png -------------------------------------------------------------------------------- /012_Encode_CAPTCHA/012_Encode_CAPTCHA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/012_Encode_CAPTCHA/012_Encode_CAPTCHA.ipynb -------------------------------------------------------------------------------- /012_Encode_CAPTCHA/CAPTCHA_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/012_Encode_CAPTCHA/CAPTCHA_1.png -------------------------------------------------------------------------------- /012_Encode_CAPTCHA/CAPTCHA_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/012_Encode_CAPTCHA/CAPTCHA_2.wav -------------------------------------------------------------------------------- /012_Encode_CAPTCHA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/012_Encode_CAPTCHA/README.md -------------------------------------------------------------------------------- /013_Unzip_File/013_Unzip_File.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/013_Unzip_File/013_Unzip_File.ipynb -------------------------------------------------------------------------------- /013_Unzip_File/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/013_Unzip_File/README.md -------------------------------------------------------------------------------- /013_Unzip_File/demo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/013_Unzip_File/demo.zip -------------------------------------------------------------------------------- /013_Unzip_File/unzip/013_Unzip_File/013_Unzip_File.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/013_Unzip_File/unzip/013_Unzip_File/013_Unzip_File.ipynb -------------------------------------------------------------------------------- /014_Run_JavaScript_in_Python/014_Run_JavaScript_in_Python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/014_Run_JavaScript_in_Python/014_Run_JavaScript_in_Python.ipynb -------------------------------------------------------------------------------- /014_Run_JavaScript_in_Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/014_Run_JavaScript_in_Python/README.md -------------------------------------------------------------------------------- /015_Web_Scraping_Covid-19_Data/015_Web_Scraping_Covid-19_Data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/015_Web_Scraping_Covid-19_Data/015_Web_Scraping_Covid-19_Data.ipynb -------------------------------------------------------------------------------- /015_Web_Scraping_Covid-19_Data/Covid-19_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/015_Web_Scraping_Covid-19_Data/Covid-19_data.csv -------------------------------------------------------------------------------- /015_Web_Scraping_Covid-19_Data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/015_Web_Scraping_Covid-19_Data/README.md -------------------------------------------------------------------------------- /015_Web_Scraping_Covid-19_Data/wordometer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/015_Web_Scraping_Covid-19_Data/wordometer1.png -------------------------------------------------------------------------------- /015_Web_Scraping_Covid-19_Data/wordometer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/015_Web_Scraping_Covid-19_Data/wordometer2.png -------------------------------------------------------------------------------- /016_Web_Scraping_CoWin_Vaccine_Slots/016_Web_Scraping_CoWin_Vaccine_Slots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/016_Web_Scraping_CoWin_Vaccine_Slots/016_Web_Scraping_CoWin_Vaccine_Slots.ipynb -------------------------------------------------------------------------------- /016_Web_Scraping_CoWin_Vaccine_Slots/CoWin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/016_Web_Scraping_CoWin_Vaccine_Slots/CoWin.png -------------------------------------------------------------------------------- /016_Web_Scraping_CoWin_Vaccine_Slots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/016_Web_Scraping_CoWin_Vaccine_Slots/README.md -------------------------------------------------------------------------------- /017_Check_Weather_Forecast_with_GUI/017_Check_Weather_Forecast_with_GUI.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/017_Check_Weather_Forecast_with_GUI/017_Check_Weather_Forecast_with_GUI.ipynb -------------------------------------------------------------------------------- /017_Check_Weather_Forecast_with_GUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/017_Check_Weather_Forecast_with_GUI/README.md -------------------------------------------------------------------------------- /017_Check_Weather_Forecast_with_GUI/get_weather_icons.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/017_Check_Weather_Forecast_with_GUI/get_weather_icons.ipynb -------------------------------------------------------------------------------- /017_Check_Weather_Forecast_with_GUI/img/01d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/017_Check_Weather_Forecast_with_GUI/img/01d.png -------------------------------------------------------------------------------- /017_Check_Weather_Forecast_with_GUI/img/02d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/017_Check_Weather_Forecast_with_GUI/img/02d.png -------------------------------------------------------------------------------- /017_Check_Weather_Forecast_with_GUI/img/03d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/017_Check_Weather_Forecast_with_GUI/img/03d.png -------------------------------------------------------------------------------- /017_Check_Weather_Forecast_with_GUI/img/04d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/017_Check_Weather_Forecast_with_GUI/img/04d.png -------------------------------------------------------------------------------- /017_Check_Weather_Forecast_with_GUI/img/landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/017_Check_Weather_Forecast_with_GUI/img/landscape.png -------------------------------------------------------------------------------- /017_Check_Weather_Forecast_with_GUI/img/result_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/017_Check_Weather_Forecast_with_GUI/img/result_1.png -------------------------------------------------------------------------------- /017_Check_Weather_Forecast_with_GUI/img/result_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/017_Check_Weather_Forecast_with_GUI/img/result_2.png -------------------------------------------------------------------------------- /017_Check_Weather_Forecast_with_GUI/img/sun_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/017_Check_Weather_Forecast_with_GUI/img/sun_icon.ico -------------------------------------------------------------------------------- /018_Draw_Sakura_Tree/018_Draw_Sakura_Tree.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/018_Draw_Sakura_Tree/018_Draw_Sakura_Tree.ipynb -------------------------------------------------------------------------------- /018_Draw_Sakura_Tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/018_Draw_Sakura_Tree/README.md -------------------------------------------------------------------------------- /018_Draw_Sakura_Tree/sakura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/018_Draw_Sakura_Tree/sakura.png -------------------------------------------------------------------------------- /019_Plagiarism_Checker/019_Plagiarism_Checker.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/019_Plagiarism_Checker/019_Plagiarism_Checker.ipynb -------------------------------------------------------------------------------- /019_Plagiarism_Checker/Arthur.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/019_Plagiarism_Checker/Arthur.txt -------------------------------------------------------------------------------- /019_Plagiarism_Checker/Ben.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/019_Plagiarism_Checker/Ben.txt -------------------------------------------------------------------------------- /019_Plagiarism_Checker/Clark.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/019_Plagiarism_Checker/Clark.txt -------------------------------------------------------------------------------- /019_Plagiarism_Checker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/019_Plagiarism_Checker/README.md -------------------------------------------------------------------------------- /019_Plagiarism_Checker/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/019_Plagiarism_Checker/output.png -------------------------------------------------------------------------------- /020_Road_Detection/020_Road_Detection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/020_Road_Detection/020_Road_Detection.ipynb -------------------------------------------------------------------------------- /020_Road_Detection/img/road_1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/020_Road_Detection/img/road_1.jpeg -------------------------------------------------------------------------------- /020_Road_Detection/img/road_2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/020_Road_Detection/img/road_2.jpeg -------------------------------------------------------------------------------- /020_Road_Detection/img/road_3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/020_Road_Detection/img/road_3.jpeg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/README.md -------------------------------------------------------------------------------- /img/dnld_rep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaan9/91_Python_Mini_Projects/HEAD/img/dnld_rep.png --------------------------------------------------------------------------------