Skip to content

Commit 31834e5

Browse files
ETL Pipeline with Airflow
1 parent 80a6c4c commit 31834e5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.backup_files
22
.ipynb_checkpoints
33
.venv
4-
logs
4+
logs
5+
__pycache__

dags/etl_pipe.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def _extract():
1414
df.to_csv("data/covid_db_original_{}.csv".format(date.today().strftime("%Y%m%d")))
1515
_extract()
1616

17-
# Transform: Transforming the data using pandas
17+
# Transform: Transforming the data using pandas and saving to a new .csv file
1818

1919
def _transform():
2020
df1 = pd.read_csv("data/covid_db_original_{}.csv".format(date.today().strftime("%Y%m%d")))

0 commit comments

Comments
 (0)