├── .gitignore ├── README.md ├── bs_scraper.py ├── csv_scraper.py ├── data ├── .~lock.crunchbase.xlsx# ├── crunchbase.xlsx ├── schedule.csv └── simple.html ├── family_tree.py ├── json_scraper.py ├── requirements.txt ├── scrape_netflix.py ├── scraper.py ├── start_selenium.py ├── xlsx2csv.py ├── xlsx_scraper.py └── xpath_intro.py /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | scrape_my_netflix.py 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjam/python-web-scraping-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /bs_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjam/python-web-scraping-tutorial/HEAD/bs_scraper.py -------------------------------------------------------------------------------- /csv_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjam/python-web-scraping-tutorial/HEAD/csv_scraper.py -------------------------------------------------------------------------------- /data/.~lock.crunchbase.xlsx#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjam/python-web-scraping-tutorial/HEAD/data/.~lock.crunchbase.xlsx# -------------------------------------------------------------------------------- /data/crunchbase.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjam/python-web-scraping-tutorial/HEAD/data/crunchbase.xlsx -------------------------------------------------------------------------------- /data/schedule.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjam/python-web-scraping-tutorial/HEAD/data/schedule.csv -------------------------------------------------------------------------------- /data/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjam/python-web-scraping-tutorial/HEAD/data/simple.html -------------------------------------------------------------------------------- /family_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjam/python-web-scraping-tutorial/HEAD/family_tree.py -------------------------------------------------------------------------------- /json_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjam/python-web-scraping-tutorial/HEAD/json_scraper.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjam/python-web-scraping-tutorial/HEAD/requirements.txt -------------------------------------------------------------------------------- /scrape_netflix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjam/python-web-scraping-tutorial/HEAD/scrape_netflix.py -------------------------------------------------------------------------------- /scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjam/python-web-scraping-tutorial/HEAD/scraper.py -------------------------------------------------------------------------------- /start_selenium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjam/python-web-scraping-tutorial/HEAD/start_selenium.py -------------------------------------------------------------------------------- /xlsx2csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjam/python-web-scraping-tutorial/HEAD/xlsx2csv.py -------------------------------------------------------------------------------- /xlsx_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjam/python-web-scraping-tutorial/HEAD/xlsx_scraper.py -------------------------------------------------------------------------------- /xpath_intro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjam/python-web-scraping-tutorial/HEAD/xpath_intro.py --------------------------------------------------------------------------------