├── .gitignore ├── LICENSE ├── README.md ├── drive └── read_google_sheet.py ├── files ├── convert_pdf_to_csv.py ├── dev_to_post_generate.py ├── download_all_images.py ├── downloader.py ├── file_organizer.py ├── generate_chrome_icon.py ├── import_csv_to_mongo_db.py └── list_large_files.py ├── github ├── add_colab_to_repo.py └── push_todays_script_to_git.py ├── gui-automation ├── cmdfast.py ├── google_query.py └── single_click_save.py ├── misc ├── execution_time_log_decorator.py ├── resume_vlc.py └── zip_react_projects.py ├── notification ├── check_site_live.py ├── leet_code_daily_problem.py ├── notify_random_reddit.py └── notify_user.py ├── requirements.txt └── wallpaper ├── generate_two_display_wallpaper.py └── update_gnome_wallpaper.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/README.md -------------------------------------------------------------------------------- /drive/read_google_sheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/drive/read_google_sheet.py -------------------------------------------------------------------------------- /files/convert_pdf_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/files/convert_pdf_to_csv.py -------------------------------------------------------------------------------- /files/dev_to_post_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/files/dev_to_post_generate.py -------------------------------------------------------------------------------- /files/download_all_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/files/download_all_images.py -------------------------------------------------------------------------------- /files/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/files/downloader.py -------------------------------------------------------------------------------- /files/file_organizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/files/file_organizer.py -------------------------------------------------------------------------------- /files/generate_chrome_icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/files/generate_chrome_icon.py -------------------------------------------------------------------------------- /files/import_csv_to_mongo_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/files/import_csv_to_mongo_db.py -------------------------------------------------------------------------------- /files/list_large_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/files/list_large_files.py -------------------------------------------------------------------------------- /github/add_colab_to_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/github/add_colab_to_repo.py -------------------------------------------------------------------------------- /github/push_todays_script_to_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/github/push_todays_script_to_git.py -------------------------------------------------------------------------------- /gui-automation/cmdfast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/gui-automation/cmdfast.py -------------------------------------------------------------------------------- /gui-automation/google_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/gui-automation/google_query.py -------------------------------------------------------------------------------- /gui-automation/single_click_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/gui-automation/single_click_save.py -------------------------------------------------------------------------------- /misc/execution_time_log_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/misc/execution_time_log_decorator.py -------------------------------------------------------------------------------- /misc/resume_vlc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/misc/resume_vlc.py -------------------------------------------------------------------------------- /misc/zip_react_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/misc/zip_react_projects.py -------------------------------------------------------------------------------- /notification/check_site_live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/notification/check_site_live.py -------------------------------------------------------------------------------- /notification/leet_code_daily_problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/notification/leet_code_daily_problem.py -------------------------------------------------------------------------------- /notification/notify_random_reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/notification/notify_random_reddit.py -------------------------------------------------------------------------------- /notification/notify_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/notification/notify_user.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /wallpaper/generate_two_display_wallpaper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/wallpaper/generate_two_display_wallpaper.py -------------------------------------------------------------------------------- /wallpaper/update_gnome_wallpaper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganeshrajadev/awesome-python/HEAD/wallpaper/update_gnome_wallpaper.py --------------------------------------------------------------------------------