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: Data_Api_to_Postgres/README.md
+17
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,23 @@
2
2
## Overview
3
3
This project is to build a simple ETL pipeline to fetch real-time data from an open source API and store that data into a database. For this case we have used Yelp FUSION API as the open source API available and for database we used Postgres.
4
4
5
+
## Config File
6
+
```
7
+
[KEYS]
8
+
CLIENT_KEY=<YOUR CLIENT KEY>
9
+
API_KEY=<YOUR API KEY>
10
+
11
+
12
+
[DATABASE]
13
+
host=<HOST NAME>
14
+
database=<DB NAME>
15
+
username=<USER NAME>
16
+
password=<PASSWORD>
17
+
port=<PORT>
18
+
19
+
```
20
+
21
+
5
22
## Files
6
23
```
7
24
auth.py - Contains configuration variable for making HTTP Request
0 commit comments