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
{{ message }}
This repository was archived by the owner on Jan 18, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+30-6Lines changed: 30 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,16 @@ The First Street Foundation API Access (Python) is a wrapper used to bulk extrac
3
3
4
4
## Installation
5
5
**NOTE**: This project requires [Python](https://www.python.org/downloads/) 3.6+ to run.
6
+
1. Go to the Python page (https://www.python.org/downloads/) and download then install Python version 3. **Make sure that the checkbox is checked for Python to be added to the PATH**
7
+
8
+

9
+
10
+

11
+
12
+

13
+
14
+

15
+
6
16
1. Install the source code manager [Git]
7
17
2. Open `git bash` and create then navigate to a new project directory
8
18
@@ -221,7 +231,7 @@ environmental.<method>
221
231
222
232
## Examples
223
233
**[Reminder] Keep your API key safe, and do not share it with others!**
224
-
1. Single FSID Extraction Through Client:
234
+
1. Single FSID Extraction Through the Client:
225
235
```python
226
236
# Contents of sample.py
227
237
import firststreet
@@ -234,7 +244,7 @@ environmental.<method>
234
244
print(probability[0].count)
235
245
```
236
246
237
-
2. Multiple FSIDs Extraction Through Client:
247
+
2. Multiple FSIDs Extraction Through the Client:
238
248
```python
239
249
# Contents of sample.py
240
250
import firststreet
@@ -248,7 +258,7 @@ environmental.<method>
248
258
print(details[1].fsid)
249
259
```
250
260
251
-
3. Adaptation detail Extraction to CSV Through Client:
261
+
3. Adaptation detail Extraction to CSV Through the Client:
0 commit comments