Last active
July 29, 2020 14:34
-
-
Save felipejardimf/c5cd2b589e281d04c0c7d9434d210387 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
import pandas as pd | |
from time import gmtime, strftime | |
dados_covid = pd.DataFrame(data=data[7:220], columns=cols) | |
actual_date= strftime("%Y%m%d", gmtime()) | |
dados_covid['data_processamento'] = actual_date | |
dados_covid.head() | |
dados_covid.to_csv('dados_covid.csv',header=True, sep=';') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment