Skip to content
Discussion options

You must be logged in to vote

Your approach looks good.

For big data volume, you can use bulk insert:

data = [
    {
        "id": row["id"],
        "symbol": row["symbol"],
        ...
    }
    for _, row in df.iterrows()
]

session.exec(StockTimeSeries, params=data)
session.commit()

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by YuriiMotov
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
2 participants