Skip to content
This repository has been archived by the owner on Oct 15, 2022. It is now read-only.

davidteather/web-scraping-with-reverse-engineering

Repository files navigation

🚩🟨🚩 This repository has been moved to everything-web-scraping 🚩🟨🚩
If you found an outdated link to this that I can update, file an issue :)

Web Scraping With Reverse Engineering

Learn everything web scraping by David Teather find the video series on YouTube.

LinkedIn Sponsor Me Discord Server Twitter URL

Table Of Contents

  1. Course Catalogue
  2. 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

Course Catalogue

  1. Introduction To The Course
  2. 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

  1. Navigate to the containers tab on the side, find the lesson you want to delete and click the trashcan icon to remove it.
  2. 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

  1. To remove containers, docker rm $(docker ps -a -q --filter name=XXX), where XXX is the lesson number you want removed (ex: 001).
  2. 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)