You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2. Set up your environment (think of it as building a cozy home for your code):
65
+
66
+
On macOS and Linux:
41
67
```
42
68
python3 -m venv venv
43
-
source venv/bin/activate # On Windows: venv\Scripts\activate
69
+
source venv/bin/activate
70
+
```
71
+
72
+
On Windows:
73
+
```
74
+
python -m venv venv
75
+
venv\Scripts\activate
44
76
```
45
77
46
78
3. Install dependencies (like furnishing your code's new home):
@@ -55,6 +87,8 @@ Some of our spider friends are taking an unplanned vacation due to website chang
55
87
```
56
88
Replace `<crawler-name>` with your chosen crawler (e.g., `vidio`, `gotogroup`)
57
89
90
+
Don't worry if some of these terms sound like tech gibberish - you're learning! If you get stuck, there's a whole community of friendly coders ready to help. Happy job hunting! 🕷️🔍
91
+
58
92
## Turn data into eye candy 📊
59
93
60
94
Want to make charts so pretty they belong in a museum? Here's how:
0 commit comments