├── .gitignore ├── README.md ├── data ├── alltime_movies200.csv ├── alltime_movies200_clean.csv ├── alltime_movies200_merged.csv ├── alltime_movies200_raw.csv └── movie_urls.txt └── notebooks ├── 00.Check-Environment.ipynb ├── 01.HTML-Refresher.ipynb ├── 02.Parse-HTML-with-BeautifulSoup-Top-Movies.ipynb ├── 03.BeautifulSoup-with-all-the-Details.ipynb ├── 04.Putting-it-all-together-Scraping-all-relevant-movies.ipynb ├── 05.Web-Scraping-Best-Practices.ipynb ├── 06.Extra-Credit-Scraping-the-unscrapable.ipynb └── Lab-Scrape-HackerNews.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klq/python-webscrapes/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klq/python-webscrapes/HEAD/README.md -------------------------------------------------------------------------------- /data/alltime_movies200.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klq/python-webscrapes/HEAD/data/alltime_movies200.csv -------------------------------------------------------------------------------- /data/alltime_movies200_clean.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klq/python-webscrapes/HEAD/data/alltime_movies200_clean.csv -------------------------------------------------------------------------------- /data/alltime_movies200_merged.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klq/python-webscrapes/HEAD/data/alltime_movies200_merged.csv -------------------------------------------------------------------------------- /data/alltime_movies200_raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klq/python-webscrapes/HEAD/data/alltime_movies200_raw.csv -------------------------------------------------------------------------------- /data/movie_urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klq/python-webscrapes/HEAD/data/movie_urls.txt -------------------------------------------------------------------------------- /notebooks/00.Check-Environment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klq/python-webscrapes/HEAD/notebooks/00.Check-Environment.ipynb -------------------------------------------------------------------------------- /notebooks/01.HTML-Refresher.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klq/python-webscrapes/HEAD/notebooks/01.HTML-Refresher.ipynb -------------------------------------------------------------------------------- /notebooks/02.Parse-HTML-with-BeautifulSoup-Top-Movies.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klq/python-webscrapes/HEAD/notebooks/02.Parse-HTML-with-BeautifulSoup-Top-Movies.ipynb -------------------------------------------------------------------------------- /notebooks/03.BeautifulSoup-with-all-the-Details.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klq/python-webscrapes/HEAD/notebooks/03.BeautifulSoup-with-all-the-Details.ipynb -------------------------------------------------------------------------------- /notebooks/04.Putting-it-all-together-Scraping-all-relevant-movies.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klq/python-webscrapes/HEAD/notebooks/04.Putting-it-all-together-Scraping-all-relevant-movies.ipynb -------------------------------------------------------------------------------- /notebooks/05.Web-Scraping-Best-Practices.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klq/python-webscrapes/HEAD/notebooks/05.Web-Scraping-Best-Practices.ipynb -------------------------------------------------------------------------------- /notebooks/06.Extra-Credit-Scraping-the-unscrapable.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klq/python-webscrapes/HEAD/notebooks/06.Extra-Credit-Scraping-the-unscrapable.ipynb -------------------------------------------------------------------------------- /notebooks/Lab-Scrape-HackerNews.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klq/python-webscrapes/HEAD/notebooks/Lab-Scrape-HackerNews.ipynb --------------------------------------------------------------------------------