Skip to content

Commit 96d4951

Browse files
committed
Add Lesson 3 BeautifulSoup Web Scraping With Static & SSR Sites
1 parent 415654f commit 96d4951

File tree

14 files changed

+687
-5
lines changed

14 files changed

+687
-5
lines changed
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
{
2-
"workspaceFolder": "/workspaces/everything-web-scraping/000-introduction",
2+
"name": "000 Introduction",
3+
"workspaceMount": "source=${localWorkspaceFolder},target=/workspace,type=bind,consistency=cached",
4+
"workspaceFolder": "/workspace/000-introduction",
35
"image": "mcr.microsoft.com/devcontainers/universal"
46
}

.devcontainer/001-introduction-to-forging-api-requests/devcontainer.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{
2-
"workspaceFolder": "/workspaces/everything-web-scraping/001-introduction-to-forging-api-requests",
2+
"name": "001 Introduction to Forging API Requests",
3+
"workspaceMount": "source=${localWorkspaceFolder},target=/workspace,type=bind,consistency=cached",
4+
"workspaceFolder": "/workspace/001-introduction-to-forging-api-requests",
35
"image": "mcr.microsoft.com/devcontainers/universal",
46
"postStartCommand": "docker compose up -d && gh codespace ports visibility 8080:public -c $CODESPACE_NAME",
57
"forwardPorts": [5434, 3000, 8080],
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
{
2-
"workspaceFolder": "/workspaces/everything-web-scraping/002-proxies",
2+
"name": "002 Proxies",
3+
"workspaceMount": "source=${localWorkspaceFolder},target=/workspace,type=bind,consistency=cached",
4+
"workspaceFolder": "/workspace/002-proxies",
35
"image": "mcr.microsoft.com/devcontainers/universal"
46
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "003 Beautiful Soup with Static & SSR Web Scraping",
3+
"workspaceMount": "source=${localWorkspaceFolder},target=/workspace,type=bind,consistency=cached",
4+
"workspaceFolder": "/workspace/003-beautiful-soup-with-static-site-and-server-side-rendered-web-scraping",
5+
"image": "mcr.microsoft.com/devcontainers/universal",
6+
"postStartCommand": "docker compose up -d && python3 -m pip install -r requirements.txt",
7+
"forwardPorts": [3000],
8+
"portsAttributes": {
9+
"3000": {
10+
"label": "Website",
11+
"onAutoForward": "openBrowser"
12+
}
13+
}
14+
}

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
__pycache__
2-
.vscode
2+
.vscode
3+
.pytest_cache
4+
.DS_Store

0 commit comments

Comments
 (0)