Awesome
<div align="center" background="yellow" style="width:100%;text-align: center; background-color: yellow;"> 🚩🟨🚩 This repository has been moved to <a href="https://github.com/davidteather/everything-web-scraping">everything-web-scraping</a> 🚩🟨🚩 <br> <small>If you found an outdated link to this that I can update, file an issue :)</small> </div>Web Scraping With Reverse Engineering
Learn everything web scraping by David Teather find the video series on YouTube.
Table Of Contents
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
Course Catalogue
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)