Skip to content

Commit 92e2eae

Browse files
authored
Update README.md
1 parent 0d6717c commit 92e2eae

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Scrapy/README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ The first part of this tutorial is highly similar to the [official scrapy docume
44

55
You can see this code in action by clicking on the following link: [youtube video](https://youtu.be/O_j3OTXw2_E).
66

7-
## Getting Started
7+
## Getting Started (Prerequisites)
88

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.
1010

1111
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.
1212

@@ -25,7 +25,9 @@ conda install scrapy
2525

2626
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).
2727

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
2931

3032
```
3133
scrapy startproject fundrazr
@@ -56,7 +58,7 @@ For this tutorial, the first in the list <b>start_urls</b> is: https://fundrazr.
5658

5759
The second start url is: https://fundrazr.com/find?category=Health&page=2
5860

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.
6062

6163
```
6264
# First Start Url

0 commit comments

Comments
 (0)