We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80a6c4c commit 31834e5Copy full SHA for 31834e5
.gitignore
@@ -1,4 +1,5 @@
1
.backup_files
2
.ipynb_checkpoints
3
.venv
4
-logs
+logs
5
+__pycache__
dags/etl_pipe.py
@@ -14,7 +14,7 @@ def _extract():
14
df.to_csv("data/covid_db_original_{}.csv".format(date.today().strftime("%Y%m%d")))
15
_extract()
16
17
-# Transform: Transforming the data using pandas
+# Transform: Transforming the data using pandas and saving to a new .csv file
18
19
def _transform():
20
df1 = pd.read_csv("data/covid_db_original_{}.csv".format(date.today().strftime("%Y%m%d")))
0 commit comments