├── .gitignore ├── Cookbook.txt ├── Handbook.md ├── LICENSE ├── PB_Quotes.csv ├── README.md ├── chromedriver_linux64.zip ├── glassdoor_jobs ├── WebDriver.py └── scrap_Glassdoor_Jobs_search.py ├── kick-off-Scraping.py ├── pablo_quotes ├── PB_Quotes.csv ├── WebDriver.py └── scrap-Pablo-Picasso-quotes.py └── premier_league_score_table ├── Curent_EPL_Standings.txt ├── WebDriver.py └── scrap_premier_leagur_socre_table.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrohaan/kick-off-web-scraping-python-selenium-beautifulsoup/HEAD/.gitignore -------------------------------------------------------------------------------- /Cookbook.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrohaan/kick-off-web-scraping-python-selenium-beautifulsoup/HEAD/Cookbook.txt -------------------------------------------------------------------------------- /Handbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrohaan/kick-off-web-scraping-python-selenium-beautifulsoup/HEAD/Handbook.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrohaan/kick-off-web-scraping-python-selenium-beautifulsoup/HEAD/LICENSE -------------------------------------------------------------------------------- /PB_Quotes.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrohaan/kick-off-web-scraping-python-selenium-beautifulsoup/HEAD/README.md -------------------------------------------------------------------------------- /chromedriver_linux64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrohaan/kick-off-web-scraping-python-selenium-beautifulsoup/HEAD/chromedriver_linux64.zip -------------------------------------------------------------------------------- /glassdoor_jobs/WebDriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrohaan/kick-off-web-scraping-python-selenium-beautifulsoup/HEAD/glassdoor_jobs/WebDriver.py -------------------------------------------------------------------------------- /glassdoor_jobs/scrap_Glassdoor_Jobs_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrohaan/kick-off-web-scraping-python-selenium-beautifulsoup/HEAD/glassdoor_jobs/scrap_Glassdoor_Jobs_search.py -------------------------------------------------------------------------------- /kick-off-Scraping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrohaan/kick-off-web-scraping-python-selenium-beautifulsoup/HEAD/kick-off-Scraping.py -------------------------------------------------------------------------------- /pablo_quotes/PB_Quotes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrohaan/kick-off-web-scraping-python-selenium-beautifulsoup/HEAD/pablo_quotes/PB_Quotes.csv -------------------------------------------------------------------------------- /pablo_quotes/WebDriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrohaan/kick-off-web-scraping-python-selenium-beautifulsoup/HEAD/pablo_quotes/WebDriver.py -------------------------------------------------------------------------------- /pablo_quotes/scrap-Pablo-Picasso-quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrohaan/kick-off-web-scraping-python-selenium-beautifulsoup/HEAD/pablo_quotes/scrap-Pablo-Picasso-quotes.py -------------------------------------------------------------------------------- /premier_league_score_table/Curent_EPL_Standings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrohaan/kick-off-web-scraping-python-selenium-beautifulsoup/HEAD/premier_league_score_table/Curent_EPL_Standings.txt -------------------------------------------------------------------------------- /premier_league_score_table/WebDriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrohaan/kick-off-web-scraping-python-selenium-beautifulsoup/HEAD/premier_league_score_table/WebDriver.py -------------------------------------------------------------------------------- /premier_league_score_table/scrap_premier_leagur_socre_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devrohaan/kick-off-web-scraping-python-selenium-beautifulsoup/HEAD/premier_league_score_table/scrap_premier_leagur_socre_table.py --------------------------------------------------------------------------------