├── LICENSE ├── README.md ├── code-to-pdf-converter ├── code2pdf.py └── converter.py ├── codechef-cli-bot └── codechef-submit.py ├── comics-scraper ├── myXcbdScraper.py └── xkcd │ └── light.jpg ├── cryptocurrency-info-converter ├── crypto.py └── my_csv.csv ├── currency-converter └── currencyConverter.py ├── dictionary.com-scraper ├── watershed.mp3 └── wordOfTheDay.py ├── ecommerce-scraper └── sudo.py ├── file-organiser └── organise.py ├── global-timer └── global_time.py ├── gnews-scraper └── gnews.py ├── goodreads-quotes-scraper ├── goodreadsScrape.py └── temp.json ├── hackernews-scraper ├── data.json ├── hackernews scrape.py ├── json_to_csv.py └── result.csv ├── highscalbility-scraper ├── ele_txt.txt ├── ele_txt_url.csv ├── ele_txt_url.txt ├── ele_url.txt └── highscalability_scraper.py ├── imdb-scraper ├── SS1.PNG └── imdbscraper.py ├── indeed-scraper ├── indeed-scraper.py └── job_listing.csv ├── inshorts-scraper ├── inshorts.py └── ss1.PNG ├── instagram-scraper └── instascrape.py ├── internshala-scraper ├── internshala.db ├── internshala.py ├── ss1.PNG └── ss2.PNG ├── linkedin-scrape ├── geckodriver.exe └── linkedin_profile.py ├── live-cricket-score-scraper └── scrape.py ├── lyrics-scraper └── scrape.py ├── medium-bookmarks-downloader ├── data.txt ├── extracted.txt ├── restrict.py └── trimmed.txt ├── memrise-scraper ├── memrise_mapper_clean.txt └── memrise_scraper.py ├── new-york-crime-data-scraper └── NYC-data-scraper.ipynb ├── password-manager ├── password.py └── test.db ├── pdf-to-text-converter ├── october17.pdf └── pdfToText.py ├── quora-image-scraper ├── driverScrape.py ├── geckodriver.exe └── geckodriver.log ├── reddit-scraper ├── grabnews.py └── reddit_news.db ├── reuters-scraper ├── reuters_scrape.csv └── scrape.py ├── slack-bot └── bot_slack.py ├── techcrunch-scraper ├── geckodriver.exe ├── techcrunch.pkl └── techcrunchscraper.py ├── terminal-dictionary └── terminal-dictionary.py ├── twitter-scraper ├── myfile.csv └── twitter_scraper.py ├── url-shortener-api └── urlshortener.py ├── wallpaper-scraper └── scrape.py ├── walmart-scraper └── walmart_scrape.py └── youtube-downloader(v1) └── youtube_search_download.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/README.md -------------------------------------------------------------------------------- /code-to-pdf-converter/code2pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/code-to-pdf-converter/code2pdf.py -------------------------------------------------------------------------------- /code-to-pdf-converter/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/code-to-pdf-converter/converter.py -------------------------------------------------------------------------------- /codechef-cli-bot/codechef-submit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/codechef-cli-bot/codechef-submit.py -------------------------------------------------------------------------------- /comics-scraper/myXcbdScraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/comics-scraper/myXcbdScraper.py -------------------------------------------------------------------------------- /comics-scraper/xkcd/light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/comics-scraper/xkcd/light.jpg -------------------------------------------------------------------------------- /cryptocurrency-info-converter/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/cryptocurrency-info-converter/crypto.py -------------------------------------------------------------------------------- /cryptocurrency-info-converter/my_csv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/cryptocurrency-info-converter/my_csv.csv -------------------------------------------------------------------------------- /currency-converter/currencyConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/currency-converter/currencyConverter.py -------------------------------------------------------------------------------- /dictionary.com-scraper/watershed.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/dictionary.com-scraper/watershed.mp3 -------------------------------------------------------------------------------- /dictionary.com-scraper/wordOfTheDay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/dictionary.com-scraper/wordOfTheDay.py -------------------------------------------------------------------------------- /ecommerce-scraper/sudo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/ecommerce-scraper/sudo.py -------------------------------------------------------------------------------- /file-organiser/organise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/file-organiser/organise.py -------------------------------------------------------------------------------- /global-timer/global_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/global-timer/global_time.py -------------------------------------------------------------------------------- /gnews-scraper/gnews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/gnews-scraper/gnews.py -------------------------------------------------------------------------------- /goodreads-quotes-scraper/goodreadsScrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/goodreads-quotes-scraper/goodreadsScrape.py -------------------------------------------------------------------------------- /goodreads-quotes-scraper/temp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/goodreads-quotes-scraper/temp.json -------------------------------------------------------------------------------- /hackernews-scraper/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/hackernews-scraper/data.json -------------------------------------------------------------------------------- /hackernews-scraper/hackernews scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/hackernews-scraper/hackernews scrape.py -------------------------------------------------------------------------------- /hackernews-scraper/json_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/hackernews-scraper/json_to_csv.py -------------------------------------------------------------------------------- /hackernews-scraper/result.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/hackernews-scraper/result.csv -------------------------------------------------------------------------------- /highscalbility-scraper/ele_txt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/highscalbility-scraper/ele_txt.txt -------------------------------------------------------------------------------- /highscalbility-scraper/ele_txt_url.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/highscalbility-scraper/ele_txt_url.csv -------------------------------------------------------------------------------- /highscalbility-scraper/ele_txt_url.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/highscalbility-scraper/ele_txt_url.txt -------------------------------------------------------------------------------- /highscalbility-scraper/ele_url.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/highscalbility-scraper/ele_url.txt -------------------------------------------------------------------------------- /highscalbility-scraper/highscalability_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/highscalbility-scraper/highscalability_scraper.py -------------------------------------------------------------------------------- /imdb-scraper/SS1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/imdb-scraper/SS1.PNG -------------------------------------------------------------------------------- /imdb-scraper/imdbscraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/imdb-scraper/imdbscraper.py -------------------------------------------------------------------------------- /indeed-scraper/indeed-scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/indeed-scraper/indeed-scraper.py -------------------------------------------------------------------------------- /indeed-scraper/job_listing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/indeed-scraper/job_listing.csv -------------------------------------------------------------------------------- /inshorts-scraper/inshorts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/inshorts-scraper/inshorts.py -------------------------------------------------------------------------------- /inshorts-scraper/ss1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/inshorts-scraper/ss1.PNG -------------------------------------------------------------------------------- /instagram-scraper/instascrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/instagram-scraper/instascrape.py -------------------------------------------------------------------------------- /internshala-scraper/internshala.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/internshala-scraper/internshala.db -------------------------------------------------------------------------------- /internshala-scraper/internshala.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/internshala-scraper/internshala.py -------------------------------------------------------------------------------- /internshala-scraper/ss1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/internshala-scraper/ss1.PNG -------------------------------------------------------------------------------- /internshala-scraper/ss2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/internshala-scraper/ss2.PNG -------------------------------------------------------------------------------- /linkedin-scrape/geckodriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/linkedin-scrape/geckodriver.exe -------------------------------------------------------------------------------- /linkedin-scrape/linkedin_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/linkedin-scrape/linkedin_profile.py -------------------------------------------------------------------------------- /live-cricket-score-scraper/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/live-cricket-score-scraper/scrape.py -------------------------------------------------------------------------------- /lyrics-scraper/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/lyrics-scraper/scrape.py -------------------------------------------------------------------------------- /medium-bookmarks-downloader/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/medium-bookmarks-downloader/data.txt -------------------------------------------------------------------------------- /medium-bookmarks-downloader/extracted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/medium-bookmarks-downloader/extracted.txt -------------------------------------------------------------------------------- /medium-bookmarks-downloader/restrict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/medium-bookmarks-downloader/restrict.py -------------------------------------------------------------------------------- /medium-bookmarks-downloader/trimmed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/medium-bookmarks-downloader/trimmed.txt -------------------------------------------------------------------------------- /memrise-scraper/memrise_mapper_clean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/memrise-scraper/memrise_mapper_clean.txt -------------------------------------------------------------------------------- /memrise-scraper/memrise_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/memrise-scraper/memrise_scraper.py -------------------------------------------------------------------------------- /new-york-crime-data-scraper/NYC-data-scraper.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/new-york-crime-data-scraper/NYC-data-scraper.ipynb -------------------------------------------------------------------------------- /password-manager/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/password-manager/password.py -------------------------------------------------------------------------------- /password-manager/test.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/password-manager/test.db -------------------------------------------------------------------------------- /pdf-to-text-converter/october17.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/pdf-to-text-converter/october17.pdf -------------------------------------------------------------------------------- /pdf-to-text-converter/pdfToText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/pdf-to-text-converter/pdfToText.py -------------------------------------------------------------------------------- /quora-image-scraper/driverScrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/quora-image-scraper/driverScrape.py -------------------------------------------------------------------------------- /quora-image-scraper/geckodriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/quora-image-scraper/geckodriver.exe -------------------------------------------------------------------------------- /quora-image-scraper/geckodriver.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/quora-image-scraper/geckodriver.log -------------------------------------------------------------------------------- /reddit-scraper/grabnews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/reddit-scraper/grabnews.py -------------------------------------------------------------------------------- /reddit-scraper/reddit_news.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/reddit-scraper/reddit_news.db -------------------------------------------------------------------------------- /reuters-scraper/reuters_scrape.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/reuters-scraper/reuters_scrape.csv -------------------------------------------------------------------------------- /reuters-scraper/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/reuters-scraper/scrape.py -------------------------------------------------------------------------------- /slack-bot/bot_slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/slack-bot/bot_slack.py -------------------------------------------------------------------------------- /techcrunch-scraper/geckodriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/techcrunch-scraper/geckodriver.exe -------------------------------------------------------------------------------- /techcrunch-scraper/techcrunch.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/techcrunch-scraper/techcrunch.pkl -------------------------------------------------------------------------------- /techcrunch-scraper/techcrunchscraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/techcrunch-scraper/techcrunchscraper.py -------------------------------------------------------------------------------- /terminal-dictionary/terminal-dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/terminal-dictionary/terminal-dictionary.py -------------------------------------------------------------------------------- /twitter-scraper/myfile.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/twitter-scraper/myfile.csv -------------------------------------------------------------------------------- /twitter-scraper/twitter_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/twitter-scraper/twitter_scraper.py -------------------------------------------------------------------------------- /url-shortener-api/urlshortener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/url-shortener-api/urlshortener.py -------------------------------------------------------------------------------- /wallpaper-scraper/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/wallpaper-scraper/scrape.py -------------------------------------------------------------------------------- /walmart-scraper/walmart_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/walmart-scraper/walmart_scrape.py -------------------------------------------------------------------------------- /youtube-downloader(v1)/youtube_search_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avidLearnerInProgress/python-automation-scripts/HEAD/youtube-downloader(v1)/youtube_search_download.py --------------------------------------------------------------------------------