How to insert timeseries data into SQLite using SQLalchemy?

前端 未结 1 2009
你的背包
你的背包 2021-01-29 05:18

I am developing an app which obtains financial data from the Federal Reserve, stores it in a SQlite database using Flask-SQlalchemy, and then serves the data to my front-end das

相关标签:
1条回答
  • 2021-01-29 05:53

    astype will still be converting it to float64. How about converting the series to a list and mapping it to float values

    list(map(float,GeneralData.value))
    
    0 讨论(0)
提交回复
热议问题