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
Copy file name to clipboardExpand all lines: Scrapy/README.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,9 @@ The first part of this tutorial is highly similar to the [official scrapy docume
4
4
5
5
You can see this code in action by clicking on the following link: [youtube video](https://youtu.be/O_j3OTXw2_E).
6
6
7
-
## Getting Started
7
+
## Getting Started (Prerequisites)
8
8
9
-
### Prerequisites: Anaconda. If you already have anaconda and google chrome (or Firefox), skip to step 4.
9
+
### If you already have anaconda and google chrome (or Firefox), skip to step 4.
10
10
11
11
1. Install Anaconda (Python) on your operating system. You can either download anaconda from the official site and install on your own or you can follow these anaconda installation tutorials below.
12
12
@@ -25,7 +25,9 @@ conda install scrapy
25
25
26
26
3. Make sure you have Google chrome or Firefox. In this tutorial I am using Google Chrome. If you dont have google chrome and want to install it, you can either google it or install it here using this [link](https://support.google.com/chrome/answer/95346?co=GENIE.Platform%3DDesktop&hl=en).
27
27
28
-
4. Open a terminal (mac/linux) or command line (windows). Navigate to a desired folder (see the image below if you need help) and type
28
+
## Creating a new Scrapy project
29
+
30
+
1. Open a terminal (mac/linux) or command line (windows). Navigate to a desired folder (see the image below if you need help) and type
29
31
30
32
```
31
33
scrapy startproject fundrazr
@@ -56,7 +58,7 @@ For this tutorial, the first in the list <b>start_urls</b> is: https://fundrazr.
56
58
57
59
The second start url is: https://fundrazr.com/find?category=Health&page=2
58
60
59
-
The code below will be used in the spider later. All it does is make a list of start_urls. npages is just how many additional pages (after the first page) we want to get campaign links from.
61
+
The code below will be used in the spider later. All it does is make a list of start_urls. The variable npages is just how many additional pages (after the first page) we want to get campaign links from.
0 commit comments