-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
X_BEARER_TOKEN= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# BirdXplorer ETL | ||
|
||
This is an ETL to get and process data of community notes and X posts, in order to prepare API. | ||
|
||
## Setup development environment | ||
|
||
### Set setting variables | ||
|
||
``` | ||
$ cp .env.example .env | ||
``` | ||
|
||
| Key | Description | | ||
| -------------- | ----------------------- | | ||
| X_BEARER_TOKEN | API key for Twitter API | | ||
|
||
### Run | ||
|
||
``` | ||
$ pwd | ||
/your_dir/BirdXplorer/etl | ||
$ pip install . | ||
$ python src/birdxplorer_etl/main.py | ||
``` |