├── ChatBot ├── __pycache__ │ └── main.cpython-37.pyc ├── db.sqlite3 ├── db.sqlite3-shm ├── db.sqlite3-wal ├── main.exe ├── main.py ├── main.spec ├── readme.md └── requirements.txt ├── Drink Water Notifier ├── __pycache__ │ └── water_notifier.cpython-37.pyc ├── build │ └── water_notifier │ │ ├── Analysis-00.toc │ │ ├── COLLECT-00.toc │ │ ├── EXE-00.toc │ │ ├── PKG-00.pkg │ │ ├── PKG-00.toc │ │ ├── PYZ-00.pyz │ │ ├── PYZ-00.toc │ │ ├── base_library.zip │ │ ├── warn-water_notifier.txt │ │ ├── water_notifier.exe │ │ ├── water_notifier.exe.manifest │ │ └── xref-water_notifier.html ├── dist │ └── water_notifier │ │ ├── VCRUNTIME140.dll │ │ ├── _bz2.pyd │ │ ├── _ctypes.pyd │ │ ├── _hashlib.pyd │ │ ├── _lzma.pyd │ │ ├── _queue.pyd │ │ ├── _socket.pyd │ │ ├── _ssl.pyd │ │ ├── base_library.zip │ │ ├── libcrypto-1_1-x64.dll │ │ ├── libssl-1_1-x64.dll │ │ ├── pyexpat.pyd │ │ ├── python37.dll │ │ ├── pywintypes37.dll │ │ ├── select.pyd │ │ ├── unicodedata.pyd │ │ ├── water_notifier.exe │ │ ├── water_notifier.exe.manifest │ │ ├── win32api.pyd │ │ └── win32evtlog.pyd ├── water_notifier.py └── water_notifier.spec ├── Facebook automater ├── README.md ├── main.exe └── main.py ├── Health management system └── main.py ├── Kirana store calculator and receipt generator ├── LICENSE.txt ├── README.md ├── main.exe └── main.py ├── LICENSE.txt ├── Library mangement system ├── main.exe ├── main.py ├── main.spec └── readme.md ├── NUMBER GUESSUNG GAME └── main.py ├── News Reader ├── LICENSE.txt ├── README.md ├── main.exe ├── main.py └── tempCodeRunnerFile.py ├── README.md ├── Secure the password └── main.py ├── Snake water gun game ├── LICENSE.txt ├── README.md ├── SNAKE_WATER_GAME.exe └── SNAKE_WATER_GAME.py ├── binod detector ├── main.exe ├── main.py ├── main.spec ├── readme.md ├── search.txt └── search2.txt ├── cryptocurrency prices ├── README.md ├── main.py └── requirements.txt └── password generator ├── main.exe ├── main.py └── main.spec /ChatBot/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/ChatBot/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /ChatBot/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/ChatBot/db.sqlite3 -------------------------------------------------------------------------------- /ChatBot/db.sqlite3-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/ChatBot/db.sqlite3-shm -------------------------------------------------------------------------------- /ChatBot/db.sqlite3-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/ChatBot/db.sqlite3-wal -------------------------------------------------------------------------------- /ChatBot/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/ChatBot/main.exe -------------------------------------------------------------------------------- /ChatBot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/ChatBot/main.py -------------------------------------------------------------------------------- /ChatBot/main.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/ChatBot/main.spec -------------------------------------------------------------------------------- /ChatBot/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/ChatBot/readme.md -------------------------------------------------------------------------------- /ChatBot/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/ChatBot/requirements.txt -------------------------------------------------------------------------------- /Drink Water Notifier/__pycache__/water_notifier.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/__pycache__/water_notifier.cpython-37.pyc -------------------------------------------------------------------------------- /Drink Water Notifier/build/water_notifier/Analysis-00.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/build/water_notifier/Analysis-00.toc -------------------------------------------------------------------------------- /Drink Water Notifier/build/water_notifier/COLLECT-00.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/build/water_notifier/COLLECT-00.toc -------------------------------------------------------------------------------- /Drink Water Notifier/build/water_notifier/EXE-00.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/build/water_notifier/EXE-00.toc -------------------------------------------------------------------------------- /Drink Water Notifier/build/water_notifier/PKG-00.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/build/water_notifier/PKG-00.pkg -------------------------------------------------------------------------------- /Drink Water Notifier/build/water_notifier/PKG-00.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/build/water_notifier/PKG-00.toc -------------------------------------------------------------------------------- /Drink Water Notifier/build/water_notifier/PYZ-00.pyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/build/water_notifier/PYZ-00.pyz -------------------------------------------------------------------------------- /Drink Water Notifier/build/water_notifier/PYZ-00.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/build/water_notifier/PYZ-00.toc -------------------------------------------------------------------------------- /Drink Water Notifier/build/water_notifier/base_library.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/build/water_notifier/base_library.zip -------------------------------------------------------------------------------- /Drink Water Notifier/build/water_notifier/warn-water_notifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/build/water_notifier/warn-water_notifier.txt -------------------------------------------------------------------------------- /Drink Water Notifier/build/water_notifier/water_notifier.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/build/water_notifier/water_notifier.exe -------------------------------------------------------------------------------- /Drink Water Notifier/build/water_notifier/water_notifier.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/build/water_notifier/water_notifier.exe.manifest -------------------------------------------------------------------------------- /Drink Water Notifier/build/water_notifier/xref-water_notifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/build/water_notifier/xref-water_notifier.html -------------------------------------------------------------------------------- /Drink Water Notifier/dist/water_notifier/VCRUNTIME140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/dist/water_notifier/VCRUNTIME140.dll -------------------------------------------------------------------------------- /Drink Water Notifier/dist/water_notifier/_bz2.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/dist/water_notifier/_bz2.pyd -------------------------------------------------------------------------------- /Drink Water Notifier/dist/water_notifier/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/dist/water_notifier/_ctypes.pyd -------------------------------------------------------------------------------- /Drink Water Notifier/dist/water_notifier/_hashlib.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/dist/water_notifier/_hashlib.pyd -------------------------------------------------------------------------------- /Drink Water Notifier/dist/water_notifier/_lzma.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/dist/water_notifier/_lzma.pyd -------------------------------------------------------------------------------- /Drink Water Notifier/dist/water_notifier/_queue.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/dist/water_notifier/_queue.pyd -------------------------------------------------------------------------------- /Drink Water Notifier/dist/water_notifier/_socket.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/dist/water_notifier/_socket.pyd -------------------------------------------------------------------------------- /Drink Water Notifier/dist/water_notifier/_ssl.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/dist/water_notifier/_ssl.pyd -------------------------------------------------------------------------------- /Drink Water Notifier/dist/water_notifier/base_library.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/dist/water_notifier/base_library.zip -------------------------------------------------------------------------------- /Drink Water Notifier/dist/water_notifier/libcrypto-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/dist/water_notifier/libcrypto-1_1-x64.dll -------------------------------------------------------------------------------- /Drink Water Notifier/dist/water_notifier/libssl-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/dist/water_notifier/libssl-1_1-x64.dll -------------------------------------------------------------------------------- /Drink Water Notifier/dist/water_notifier/pyexpat.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/dist/water_notifier/pyexpat.pyd -------------------------------------------------------------------------------- /Drink Water Notifier/dist/water_notifier/python37.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/dist/water_notifier/python37.dll -------------------------------------------------------------------------------- /Drink Water Notifier/dist/water_notifier/pywintypes37.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/dist/water_notifier/pywintypes37.dll -------------------------------------------------------------------------------- /Drink Water Notifier/dist/water_notifier/select.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/dist/water_notifier/select.pyd -------------------------------------------------------------------------------- /Drink Water Notifier/dist/water_notifier/unicodedata.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/dist/water_notifier/unicodedata.pyd -------------------------------------------------------------------------------- /Drink Water Notifier/dist/water_notifier/water_notifier.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/dist/water_notifier/water_notifier.exe -------------------------------------------------------------------------------- /Drink Water Notifier/dist/water_notifier/water_notifier.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/dist/water_notifier/water_notifier.exe.manifest -------------------------------------------------------------------------------- /Drink Water Notifier/dist/water_notifier/win32api.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/dist/water_notifier/win32api.pyd -------------------------------------------------------------------------------- /Drink Water Notifier/dist/water_notifier/win32evtlog.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/dist/water_notifier/win32evtlog.pyd -------------------------------------------------------------------------------- /Drink Water Notifier/water_notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/water_notifier.py -------------------------------------------------------------------------------- /Drink Water Notifier/water_notifier.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Drink Water Notifier/water_notifier.spec -------------------------------------------------------------------------------- /Facebook automater/README.md: -------------------------------------------------------------------------------- 1 | # Facebook automater 2 | -------------------------------------------------------------------------------- /Facebook automater/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Facebook automater/main.exe -------------------------------------------------------------------------------- /Facebook automater/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Facebook automater/main.py -------------------------------------------------------------------------------- /Health management system/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Health management system/main.py -------------------------------------------------------------------------------- /Kirana store calculator and receipt generator/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Kirana store calculator and receipt generator/LICENSE.txt -------------------------------------------------------------------------------- /Kirana store calculator and receipt generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Kirana store calculator and receipt generator/README.md -------------------------------------------------------------------------------- /Kirana store calculator and receipt generator/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Kirana store calculator and receipt generator/main.exe -------------------------------------------------------------------------------- /Kirana store calculator and receipt generator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Kirana store calculator and receipt generator/main.py -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Library mangement system/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Library mangement system/main.exe -------------------------------------------------------------------------------- /Library mangement system/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Library mangement system/main.py -------------------------------------------------------------------------------- /Library mangement system/main.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Library mangement system/main.spec -------------------------------------------------------------------------------- /Library mangement system/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Library mangement system/readme.md -------------------------------------------------------------------------------- /NUMBER GUESSUNG GAME/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/NUMBER GUESSUNG GAME/main.py -------------------------------------------------------------------------------- /News Reader/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/News Reader/LICENSE.txt -------------------------------------------------------------------------------- /News Reader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/News Reader/README.md -------------------------------------------------------------------------------- /News Reader/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/News Reader/main.exe -------------------------------------------------------------------------------- /News Reader/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/News Reader/main.py -------------------------------------------------------------------------------- /News Reader/tempCodeRunnerFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/News Reader/tempCodeRunnerFile.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/README.md -------------------------------------------------------------------------------- /Secure the password/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Secure the password/main.py -------------------------------------------------------------------------------- /Snake water gun game/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Snake water gun game/LICENSE.txt -------------------------------------------------------------------------------- /Snake water gun game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Snake water gun game/README.md -------------------------------------------------------------------------------- /Snake water gun game/SNAKE_WATER_GAME.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Snake water gun game/SNAKE_WATER_GAME.exe -------------------------------------------------------------------------------- /Snake water gun game/SNAKE_WATER_GAME.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/Snake water gun game/SNAKE_WATER_GAME.py -------------------------------------------------------------------------------- /binod detector/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/binod detector/main.exe -------------------------------------------------------------------------------- /binod detector/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/binod detector/main.py -------------------------------------------------------------------------------- /binod detector/main.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/binod detector/main.spec -------------------------------------------------------------------------------- /binod detector/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/binod detector/readme.md -------------------------------------------------------------------------------- /binod detector/search.txt: -------------------------------------------------------------------------------- 1 | binOd bhaiya 2 | binoD 3 | BiNOD -------------------------------------------------------------------------------- /binod detector/search2.txt: -------------------------------------------------------------------------------- 1 | Aditya mangal 2 | -------------------------------------------------------------------------------- /cryptocurrency prices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/cryptocurrency prices/README.md -------------------------------------------------------------------------------- /cryptocurrency prices/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/cryptocurrency prices/main.py -------------------------------------------------------------------------------- /cryptocurrency prices/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/cryptocurrency prices/requirements.txt -------------------------------------------------------------------------------- /password generator/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/password generator/main.exe -------------------------------------------------------------------------------- /password generator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/password generator/main.py -------------------------------------------------------------------------------- /password generator/main.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityamangal1/Python-PRojEcTs/HEAD/password generator/main.spec --------------------------------------------------------------------------------