everything-web-scraping
everything-web-scraping copied to clipboard
Learn everything web scraping with David Teather Codes on YouTube
Everything Web Scraping
Learn everything web scraping by David Teather find the video series on YouTube.
Table Of Contents
- Course Catalogue
- How To start The Mock Websites
Welcome!
Glad you're here! If it's your first time check out the the introduction, if not welcome back!
Consider sponsoring me on GitHub to make work like this possible
Supporting The Project
- Star the repo 😎
- Maybe share it with some people new to web-scraping?
- Consider sponsoring me on GitHub
- Send me an email or a LinkedIn message telling me what you enjoy in the course (and maybe what else you want to see in the future)
- Submit PRs for suggestions/issues :)
Course Catalogue
- Introduction To The Course
- Introduction To Forging API Requests
How To Start The Mock Websites
Run docker-compose up while in a lesson directory, when it says development server started open localhost:3000 in your browser to check that it's working properly.
When done with this lesson you can control + c to shut down your docker containers.
Cleaning Up
With Docker Desktop
- Navigate to the containers tab on the side, find the lesson you want to delete and click the trashcan icon to remove it.
- Navigate to the images tab on the side, find the images starting with the course name to delete and hit the trash can.
With Command line
- To remove containers,
docker rm $(docker ps -a -q --filter name=XXX), where XXX is the lesson number you want removed (ex: 001). - To remove images,
docker rmi $(docker images --filter label=lesson.number=X -a -q), where X is the number you want removed (ex: 1, ex: 10)