├── .gitignore ├── 3 Minute Python Shorts ├── Extract Audio from Video │ └── main.py ├── Python URL Shortener │ └── main.py ├── Send Email With Attachments │ ├── main.py │ └── progit.pdf └── Wikipedia Search │ └── main.py ├── Android Scripting With Python └── Android Scripting.ipynb ├── Applied Space Science - Python ├── Earth-imagery.py ├── Glossary.ipynb ├── HubbleImagery.ipynb ├── Perihelion.ipynb ├── Solar-system-data.ipynb ├── image.png └── neoWS.ipynb ├── Awesome python libraries └── Remove Image Background │ ├── car.jpg │ ├── elephant.jpg │ ├── girl.jpg │ ├── lion.jpg │ └── script.py ├── Bot Development ├── First Bot - Apps Script │ ├── constants.gs │ ├── functions.gs │ └── main.gs └── Scheduler Bot │ ├── constants.gs │ ├── functions.gs │ └── main.gs ├── Cool Python Scripts ├── Currency converter │ ├── exchange-rates.py │ └── physical_currency_list.csv ├── PhoneTracer │ ├── Get-phone-info.zip │ ├── Phone Information Scraper │ │ ├── icons │ │ │ └── search.png │ │ ├── phone_info.pyw │ │ ├── readme.md │ │ └── scraper.py │ ├── phone-numbers.py │ ├── test.py │ └── track-phone.py └── QR Code │ ├── QRtest.png │ ├── qr-generate.py │ └── qr-read.py ├── Data Analysis & Visualization └── Earthquakes │ ├── 1.0_week.csv │ └── earthquake.ipynb ├── File Handling ├── compress_decompress.py ├── copy_move_rename.py ├── deleting_file_folders.py ├── file_handling.py ├── searching_files.py └── temp-files.py ├── Google Services with Python ├── Google OAuth 2.0 │ ├── client_secrets.json │ ├── main.py │ └── settings.yaml └── Google drive backup │ ├── client_secrets.json │ ├── data │ ├── Project Basket.xlsx │ ├── campfire.png │ └── hello.txt │ ├── main.py │ └── settings.yaml └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/.gitignore -------------------------------------------------------------------------------- /3 Minute Python Shorts/Extract Audio from Video/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/3 Minute Python Shorts/Extract Audio from Video/main.py -------------------------------------------------------------------------------- /3 Minute Python Shorts/Python URL Shortener/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/3 Minute Python Shorts/Python URL Shortener/main.py -------------------------------------------------------------------------------- /3 Minute Python Shorts/Send Email With Attachments/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/3 Minute Python Shorts/Send Email With Attachments/main.py -------------------------------------------------------------------------------- /3 Minute Python Shorts/Send Email With Attachments/progit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/3 Minute Python Shorts/Send Email With Attachments/progit.pdf -------------------------------------------------------------------------------- /3 Minute Python Shorts/Wikipedia Search/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/3 Minute Python Shorts/Wikipedia Search/main.py -------------------------------------------------------------------------------- /Android Scripting With Python/Android Scripting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Android Scripting With Python/Android Scripting.ipynb -------------------------------------------------------------------------------- /Applied Space Science - Python/Earth-imagery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Applied Space Science - Python/Earth-imagery.py -------------------------------------------------------------------------------- /Applied Space Science - Python/Glossary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Applied Space Science - Python/Glossary.ipynb -------------------------------------------------------------------------------- /Applied Space Science - Python/HubbleImagery.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Applied Space Science - Python/HubbleImagery.ipynb -------------------------------------------------------------------------------- /Applied Space Science - Python/Perihelion.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Applied Space Science - Python/Perihelion.ipynb -------------------------------------------------------------------------------- /Applied Space Science - Python/Solar-system-data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Applied Space Science - Python/Solar-system-data.ipynb -------------------------------------------------------------------------------- /Applied Space Science - Python/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Applied Space Science - Python/image.png -------------------------------------------------------------------------------- /Applied Space Science - Python/neoWS.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Applied Space Science - Python/neoWS.ipynb -------------------------------------------------------------------------------- /Awesome python libraries/Remove Image Background/car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Awesome python libraries/Remove Image Background/car.jpg -------------------------------------------------------------------------------- /Awesome python libraries/Remove Image Background/elephant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Awesome python libraries/Remove Image Background/elephant.jpg -------------------------------------------------------------------------------- /Awesome python libraries/Remove Image Background/girl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Awesome python libraries/Remove Image Background/girl.jpg -------------------------------------------------------------------------------- /Awesome python libraries/Remove Image Background/lion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Awesome python libraries/Remove Image Background/lion.jpg -------------------------------------------------------------------------------- /Awesome python libraries/Remove Image Background/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Awesome python libraries/Remove Image Background/script.py -------------------------------------------------------------------------------- /Bot Development/First Bot - Apps Script/constants.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Bot Development/First Bot - Apps Script/constants.gs -------------------------------------------------------------------------------- /Bot Development/First Bot - Apps Script/functions.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Bot Development/First Bot - Apps Script/functions.gs -------------------------------------------------------------------------------- /Bot Development/First Bot - Apps Script/main.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Bot Development/First Bot - Apps Script/main.gs -------------------------------------------------------------------------------- /Bot Development/Scheduler Bot/constants.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Bot Development/Scheduler Bot/constants.gs -------------------------------------------------------------------------------- /Bot Development/Scheduler Bot/functions.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Bot Development/Scheduler Bot/functions.gs -------------------------------------------------------------------------------- /Bot Development/Scheduler Bot/main.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Bot Development/Scheduler Bot/main.gs -------------------------------------------------------------------------------- /Cool Python Scripts/Currency converter/exchange-rates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Cool Python Scripts/Currency converter/exchange-rates.py -------------------------------------------------------------------------------- /Cool Python Scripts/Currency converter/physical_currency_list.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Cool Python Scripts/Currency converter/physical_currency_list.csv -------------------------------------------------------------------------------- /Cool Python Scripts/PhoneTracer/Get-phone-info.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Cool Python Scripts/PhoneTracer/Get-phone-info.zip -------------------------------------------------------------------------------- /Cool Python Scripts/PhoneTracer/Phone Information Scraper/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Cool Python Scripts/PhoneTracer/Phone Information Scraper/icons/search.png -------------------------------------------------------------------------------- /Cool Python Scripts/PhoneTracer/Phone Information Scraper/phone_info.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Cool Python Scripts/PhoneTracer/Phone Information Scraper/phone_info.pyw -------------------------------------------------------------------------------- /Cool Python Scripts/PhoneTracer/Phone Information Scraper/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Cool Python Scripts/PhoneTracer/Phone Information Scraper/readme.md -------------------------------------------------------------------------------- /Cool Python Scripts/PhoneTracer/Phone Information Scraper/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Cool Python Scripts/PhoneTracer/Phone Information Scraper/scraper.py -------------------------------------------------------------------------------- /Cool Python Scripts/PhoneTracer/phone-numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Cool Python Scripts/PhoneTracer/phone-numbers.py -------------------------------------------------------------------------------- /Cool Python Scripts/PhoneTracer/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Cool Python Scripts/PhoneTracer/test.py -------------------------------------------------------------------------------- /Cool Python Scripts/PhoneTracer/track-phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Cool Python Scripts/PhoneTracer/track-phone.py -------------------------------------------------------------------------------- /Cool Python Scripts/QR Code/QRtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Cool Python Scripts/QR Code/QRtest.png -------------------------------------------------------------------------------- /Cool Python Scripts/QR Code/qr-generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Cool Python Scripts/QR Code/qr-generate.py -------------------------------------------------------------------------------- /Cool Python Scripts/QR Code/qr-read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Cool Python Scripts/QR Code/qr-read.py -------------------------------------------------------------------------------- /Data Analysis & Visualization/Earthquakes/1.0_week.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Data Analysis & Visualization/Earthquakes/1.0_week.csv -------------------------------------------------------------------------------- /Data Analysis & Visualization/Earthquakes/earthquake.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Data Analysis & Visualization/Earthquakes/earthquake.ipynb -------------------------------------------------------------------------------- /File Handling/compress_decompress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/File Handling/compress_decompress.py -------------------------------------------------------------------------------- /File Handling/copy_move_rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/File Handling/copy_move_rename.py -------------------------------------------------------------------------------- /File Handling/deleting_file_folders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/File Handling/deleting_file_folders.py -------------------------------------------------------------------------------- /File Handling/file_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/File Handling/file_handling.py -------------------------------------------------------------------------------- /File Handling/searching_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/File Handling/searching_files.py -------------------------------------------------------------------------------- /File Handling/temp-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/File Handling/temp-files.py -------------------------------------------------------------------------------- /Google Services with Python/Google OAuth 2.0/client_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Google Services with Python/Google OAuth 2.0/client_secrets.json -------------------------------------------------------------------------------- /Google Services with Python/Google OAuth 2.0/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Google Services with Python/Google OAuth 2.0/main.py -------------------------------------------------------------------------------- /Google Services with Python/Google OAuth 2.0/settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Google Services with Python/Google OAuth 2.0/settings.yaml -------------------------------------------------------------------------------- /Google Services with Python/Google drive backup/client_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Google Services with Python/Google drive backup/client_secrets.json -------------------------------------------------------------------------------- /Google Services with Python/Google drive backup/data/Project Basket.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Google Services with Python/Google drive backup/data/Project Basket.xlsx -------------------------------------------------------------------------------- /Google Services with Python/Google drive backup/data/campfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Google Services with Python/Google drive backup/data/campfire.png -------------------------------------------------------------------------------- /Google Services with Python/Google drive backup/data/hello.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Google Services with Python/Google drive backup/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Google Services with Python/Google drive backup/main.py -------------------------------------------------------------------------------- /Google Services with Python/Google drive backup/settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/Google Services with Python/Google drive backup/settings.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itspyguru/Youtube/HEAD/README.md --------------------------------------------------------------------------------