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.
3. Open `git bash` and create then navigate to a new project directory
52
+
3. Open `git bash`or a `bash terminal` (if on a MacOS or Linux) and create then navigate to a new project directory
53
53
54
54
```sh
55
55
mkdir fsf_api
56
+
56
57
cd fsf_api
57
58
```
58
59
@@ -74,7 +75,7 @@ Current release: 0.1
74
75
75
76

76
77
77
-
5. [Optional] Open a new console or close and re-open a console and create and activate a new virtual environment in the project directory:
78
+
5. [Optional] Open a new `powershell console` / `bash terminal` or close and re-open a console and create and activate a new virtual environment in the project directory:
78
79
```sh
79
80
python -m venv /path/to/new/virtual/environment
80
81
@@ -111,15 +112,24 @@ Current release: 0.1
111
112
## [Running the Project - Method 1: Through the Command Line](#toc)
112
113
**[Reminder] Keep your API key safe, and do not share it with others!**
113
114
114
-
1. [Required] Set an Environmental Variable with the `variable_name` as `FSF_API_KEY` and the `variable_value` with the `API_KEY`.
115
+
[NOTE] This method will always generate a CSV.
116
+
117
+
1. ## **MacOS or Linux**
118
+
[Required] Open a `bash terminal` and set an Environmental Variable with the `variable_name` as `FSF_API_KEY` and the `variable_value` with the `API_KEY` with the command
119
+
```shell script
120
+
export FSF_API_KEY=your personal API key
121
+
```
122
+
123
+
## **Windows**
124
+
[Required] Set an Environmental Variable with the `variable_name` as `FSF_API_KEY` and the `variable_value` with the `API_KEY`.
115
125
116
126

117
127
118
128

119
129
120
130

121
131
122
-
2. Open a new console and navigate to the project directory. Next, call one of the methods described below in the `Products` section through the command line. See the `Examples` section for more examples.
132
+
2. Open/Re-open a `powershell console` / `bash terminal` and navigate to the project directory. Next, call one of the methods described below in the `Products` section through the command line. See the `Examples` section for more examples.
0 commit comments