Created
December 2, 2018 02:45
-
-
Save konstantint/2bf737a7f38845e9ed5366745fd54aa4 to your computer and use it in GitHub Desktop.
The Data Science Workflow blogpost, code snippet 1
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
import sqlalchemy as sa | |
import pandas as pd | |
e = sa.create_engine("sqlite:///raw_data.sqlite") | |
pd.read_csv("raw_data.csv").to_sql("raw_data", e) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment