├── Automate The Boring Stuff with Python ├── .gitignore ├── Programs │ ├── Browser │ │ ├── controlBrowser.py │ │ ├── downloadWeb.py │ │ ├── mapIt.bat │ │ ├── mapIt.py │ │ └── parseHTML.py │ ├── Email │ │ ├── checkInbox.py │ │ └── sendEmail.py │ ├── File Operations │ │ ├── combinedminutes.pdf │ │ ├── demo.docx │ │ ├── demo2.docx │ │ ├── demo4.docx │ │ ├── meetingminutes1.pdf │ │ ├── meetingminutes2.pdf │ │ ├── readAndWritePDF.py │ │ ├── readAndWriteWordFiles.py │ │ ├── readExcel.py │ │ ├── readExcel.xlsx │ │ └── writeExcel.xlsx │ ├── GUIAutomation │ │ ├── Calc7Pic.png │ │ ├── controlKeyboard.py │ │ ├── controlMouse.py │ │ ├── screenshot.png │ │ └── screenshotsAndImageRecognition.py │ ├── Regex │ │ └── phoneAndEmail.py │ └── requirements.txt ├── README.md └── Resources │ ├── Automate the Boring Stuff with Python Book.pdf │ ├── lesson1-recap.txt │ ├── lesson10-recap.txt │ ├── lesson11-recap.txt │ ├── lesson13-recap.txt │ ├── lesson14-recap.txt │ ├── lesson15-recap.txt │ ├── lesson16-recap.txt │ ├── lesson17-recap.txt │ ├── lesson19-recap.txt │ ├── lesson2-recap.txt │ ├── lesson20-recap.txt │ ├── lesson22-recap.txt │ ├── lesson23-recap.txt │ ├── lesson24-recap.txt │ ├── lesson25-recap.txt │ ├── lesson26-recap.txt │ ├── lesson27-recap.txt │ ├── lesson28-recap.txt │ ├── lesson30-recap.txt │ ├── lesson31-recap.txt │ ├── lesson33-recap.txt │ ├── lesson35-recap.txt │ ├── lesson36-recap.txt │ ├── lesson37-recap.txt │ ├── lesson39-recap.txt │ ├── lesson4-recap.txt │ ├── lesson40-recap.txt │ ├── lesson41-recap.txt │ ├── lesson42-recap.txt │ ├── lesson43-recap.txt │ ├── lesson44-recap.txt │ ├── lesson45-recap.txt │ ├── lesson48-recap.txt │ ├── lesson49-recap.txt │ ├── lesson5-recap.txt │ ├── lesson50-recap.txt │ ├── lesson6-recap.txt │ ├── lesson7-recap.txt │ ├── lesson8-recap.txt │ └── lesson9-recap.txt ├── Coronavirus Voice Assistant ├── .gitignore ├── Part1.py ├── README.md └── main.py ├── Cowin Vaccine Notifier ├── README.md ├── notification_sound.mp3 └── script.py ├── Data Engineering Introduction ├── .gitignore ├── README.md ├── data.csv ├── index.html ├── requirements.txt └── script.py ├── Machine Learning Algorithms ├── .gitignore ├── README.md ├── final_image.png ├── requirements.txt └── script.py ├── Path-Finding-Visualizer ├── README.md ├── astar.py └── img.jpg ├── Pong ├── Pong.py ├── README.md └── bounce.wav ├── Random Movie Generator ├── .gitignore ├── README.md ├── requirements.txt └── script.py ├── Sorting Visualizer ├── .gitignore ├── algorithms.py └── visualizer.py ├── Steganography ├── Front_end │ ├── __pycache__ │ │ ├── gui.cpython-36.pyc │ │ └── gui.cpython-37.pyc │ └── gui.py ├── LSB │ ├── Audio_in_audio │ │ ├── __pycache__ │ │ │ └── aialcode.cpython-37.pyc │ │ └── aialcode.py │ ├── Image_in_audio │ │ ├── __pycache__ │ │ │ └── iialcode.cpython-37.pyc │ │ └── iialcode.py │ └── Text_in_audio │ │ ├── __pycache__ │ │ ├── tiacode.cpython-37.pyc │ │ └── tialcode.cpython-37.pyc │ │ └── tialcode.py ├── __pycache__ │ ├── imagepil.cpython-36.pyc │ └── main.cpython-36.pyc ├── config.dat ├── main.py └── res │ ├── carrierAudio.wav │ ├── secretAudio.wav │ └── secretImage.jpg ├── Sudoku Solver ├── .gitignore ├── GUI.py ├── Intro.txt └── solver.py ├── Supervised Learning ├── .gitignore ├── README.md ├── requirements.txt └── script.py └── Translator ├── .gitignore ├── README.md ├── requirements.txt └── script.py /Automate The Boring Stuff with Python/.gitignore: -------------------------------------------------------------------------------- 1 | /Programs/venv 2 | geckodriver.log -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/Browser/controlBrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/Browser/controlBrowser.py -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/Browser/downloadWeb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/Browser/downloadWeb.py -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/Browser/mapIt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/Browser/mapIt.bat -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/Browser/mapIt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/Browser/mapIt.py -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/Browser/parseHTML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/Browser/parseHTML.py -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/Email/checkInbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/Email/checkInbox.py -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/Email/sendEmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/Email/sendEmail.py -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/File Operations/combinedminutes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/File Operations/combinedminutes.pdf -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/File Operations/demo.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/File Operations/demo.docx -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/File Operations/demo2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/File Operations/demo2.docx -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/File Operations/demo4.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/File Operations/demo4.docx -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/File Operations/meetingminutes1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/File Operations/meetingminutes1.pdf -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/File Operations/meetingminutes2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/File Operations/meetingminutes2.pdf -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/File Operations/readAndWritePDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/File Operations/readAndWritePDF.py -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/File Operations/readAndWriteWordFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/File Operations/readAndWriteWordFiles.py -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/File Operations/readExcel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/File Operations/readExcel.py -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/File Operations/readExcel.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/File Operations/readExcel.xlsx -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/File Operations/writeExcel.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/File Operations/writeExcel.xlsx -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/GUIAutomation/Calc7Pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/GUIAutomation/Calc7Pic.png -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/GUIAutomation/controlKeyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/GUIAutomation/controlKeyboard.py -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/GUIAutomation/controlMouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/GUIAutomation/controlMouse.py -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/GUIAutomation/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/GUIAutomation/screenshot.png -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/GUIAutomation/screenshotsAndImageRecognition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/GUIAutomation/screenshotsAndImageRecognition.py -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/Regex/phoneAndEmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/Regex/phoneAndEmail.py -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Programs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Programs/requirements.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/README.md -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/Automate the Boring Stuff with Python Book.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/Automate the Boring Stuff with Python Book.pdf -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson1-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson1-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson10-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson10-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson11-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson11-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson13-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson13-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson14-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson14-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson15-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson15-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson16-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson16-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson17-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson17-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson19-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson19-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson2-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson2-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson20-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson20-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson22-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson22-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson23-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson23-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson24-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson24-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson25-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson25-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson26-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson26-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson27-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson27-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson28-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson28-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson30-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson30-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson31-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson31-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson33-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson33-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson35-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson35-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson36-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson36-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson37-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson37-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson39-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson39-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson4-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson4-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson40-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson40-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson41-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson41-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson42-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson42-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson43-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson43-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson44-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson44-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson45-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson45-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson48-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson48-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson49-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson49-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson5-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson5-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson50-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson50-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson6-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson6-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson7-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson7-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson8-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson8-recap.txt -------------------------------------------------------------------------------- /Automate The Boring Stuff with Python/Resources/lesson9-recap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Automate The Boring Stuff with Python/Resources/lesson9-recap.txt -------------------------------------------------------------------------------- /Coronavirus Voice Assistant/.gitignore: -------------------------------------------------------------------------------- 1 | config.py 2 | __pycache__ 3 | .ipynb_checkpoints -------------------------------------------------------------------------------- /Coronavirus Voice Assistant/Part1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Coronavirus Voice Assistant/Part1.py -------------------------------------------------------------------------------- /Coronavirus Voice Assistant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Coronavirus Voice Assistant/README.md -------------------------------------------------------------------------------- /Coronavirus Voice Assistant/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Coronavirus Voice Assistant/main.py -------------------------------------------------------------------------------- /Cowin Vaccine Notifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Cowin Vaccine Notifier/README.md -------------------------------------------------------------------------------- /Cowin Vaccine Notifier/notification_sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Cowin Vaccine Notifier/notification_sound.mp3 -------------------------------------------------------------------------------- /Cowin Vaccine Notifier/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Cowin Vaccine Notifier/script.py -------------------------------------------------------------------------------- /Data Engineering Introduction/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Data Engineering Introduction/.gitignore -------------------------------------------------------------------------------- /Data Engineering Introduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Data Engineering Introduction/README.md -------------------------------------------------------------------------------- /Data Engineering Introduction/data.csv: -------------------------------------------------------------------------------- 1 | header,summary,link 2 | -------------------------------------------------------------------------------- /Data Engineering Introduction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Data Engineering Introduction/index.html -------------------------------------------------------------------------------- /Data Engineering Introduction/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Data Engineering Introduction/requirements.txt -------------------------------------------------------------------------------- /Data Engineering Introduction/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Data Engineering Introduction/script.py -------------------------------------------------------------------------------- /Machine Learning Algorithms/.gitignore: -------------------------------------------------------------------------------- 1 | /venv -------------------------------------------------------------------------------- /Machine Learning Algorithms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Machine Learning Algorithms/README.md -------------------------------------------------------------------------------- /Machine Learning Algorithms/final_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Machine Learning Algorithms/final_image.png -------------------------------------------------------------------------------- /Machine Learning Algorithms/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Machine Learning Algorithms/requirements.txt -------------------------------------------------------------------------------- /Machine Learning Algorithms/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Machine Learning Algorithms/script.py -------------------------------------------------------------------------------- /Path-Finding-Visualizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Path-Finding-Visualizer/README.md -------------------------------------------------------------------------------- /Path-Finding-Visualizer/astar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Path-Finding-Visualizer/astar.py -------------------------------------------------------------------------------- /Path-Finding-Visualizer/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Path-Finding-Visualizer/img.jpg -------------------------------------------------------------------------------- /Pong/Pong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Pong/Pong.py -------------------------------------------------------------------------------- /Pong/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Pong/README.md -------------------------------------------------------------------------------- /Pong/bounce.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Pong/bounce.wav -------------------------------------------------------------------------------- /Random Movie Generator/.gitignore: -------------------------------------------------------------------------------- 1 | /venv -------------------------------------------------------------------------------- /Random Movie Generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Random Movie Generator/README.md -------------------------------------------------------------------------------- /Random Movie Generator/requirements.txt: -------------------------------------------------------------------------------- 1 | IMDbPY==2020.9.25 2 | lxml==4.6.5 3 | SQLAlchemy==1.3.19 4 | -------------------------------------------------------------------------------- /Random Movie Generator/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Random Movie Generator/script.py -------------------------------------------------------------------------------- /Sorting Visualizer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Sorting Visualizer/.gitignore -------------------------------------------------------------------------------- /Sorting Visualizer/algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Sorting Visualizer/algorithms.py -------------------------------------------------------------------------------- /Sorting Visualizer/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Sorting Visualizer/visualizer.py -------------------------------------------------------------------------------- /Steganography/Front_end/__pycache__/gui.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Steganography/Front_end/__pycache__/gui.cpython-36.pyc -------------------------------------------------------------------------------- /Steganography/Front_end/__pycache__/gui.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Steganography/Front_end/__pycache__/gui.cpython-37.pyc -------------------------------------------------------------------------------- /Steganography/Front_end/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Steganography/Front_end/gui.py -------------------------------------------------------------------------------- /Steganography/LSB/Audio_in_audio/__pycache__/aialcode.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Steganography/LSB/Audio_in_audio/__pycache__/aialcode.cpython-37.pyc -------------------------------------------------------------------------------- /Steganography/LSB/Audio_in_audio/aialcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Steganography/LSB/Audio_in_audio/aialcode.py -------------------------------------------------------------------------------- /Steganography/LSB/Image_in_audio/__pycache__/iialcode.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Steganography/LSB/Image_in_audio/__pycache__/iialcode.cpython-37.pyc -------------------------------------------------------------------------------- /Steganography/LSB/Image_in_audio/iialcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Steganography/LSB/Image_in_audio/iialcode.py -------------------------------------------------------------------------------- /Steganography/LSB/Text_in_audio/__pycache__/tiacode.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Steganography/LSB/Text_in_audio/__pycache__/tiacode.cpython-37.pyc -------------------------------------------------------------------------------- /Steganography/LSB/Text_in_audio/__pycache__/tialcode.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Steganography/LSB/Text_in_audio/__pycache__/tialcode.cpython-37.pyc -------------------------------------------------------------------------------- /Steganography/LSB/Text_in_audio/tialcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Steganography/LSB/Text_in_audio/tialcode.py -------------------------------------------------------------------------------- /Steganography/__pycache__/imagepil.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Steganography/__pycache__/imagepil.cpython-36.pyc -------------------------------------------------------------------------------- /Steganography/__pycache__/main.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Steganography/__pycache__/main.cpython-36.pyc -------------------------------------------------------------------------------- /Steganography/config.dat: -------------------------------------------------------------------------------- 1 | 51/39/42/67 -------------------------------------------------------------------------------- /Steganography/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Steganography/main.py -------------------------------------------------------------------------------- /Steganography/res/carrierAudio.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Steganography/res/carrierAudio.wav -------------------------------------------------------------------------------- /Steganography/res/secretAudio.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Steganography/res/secretAudio.wav -------------------------------------------------------------------------------- /Steganography/res/secretImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Steganography/res/secretImage.jpg -------------------------------------------------------------------------------- /Sudoku Solver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Sudoku Solver/.gitignore -------------------------------------------------------------------------------- /Sudoku Solver/GUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Sudoku Solver/GUI.py -------------------------------------------------------------------------------- /Sudoku Solver/Intro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Sudoku Solver/Intro.txt -------------------------------------------------------------------------------- /Sudoku Solver/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Sudoku Solver/solver.py -------------------------------------------------------------------------------- /Supervised Learning/.gitignore: -------------------------------------------------------------------------------- 1 | /venv -------------------------------------------------------------------------------- /Supervised Learning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Supervised Learning/README.md -------------------------------------------------------------------------------- /Supervised Learning/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Supervised Learning/requirements.txt -------------------------------------------------------------------------------- /Supervised Learning/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Supervised Learning/script.py -------------------------------------------------------------------------------- /Translator/.gitignore: -------------------------------------------------------------------------------- 1 | /venv -------------------------------------------------------------------------------- /Translator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Translator/README.md -------------------------------------------------------------------------------- /Translator/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Translator/requirements.txt -------------------------------------------------------------------------------- /Translator/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-G-PRAJWAL/Python-Projects/HEAD/Translator/script.py --------------------------------------------------------------------------------