NumPy arrays with SQLite

后端 未结 4 694
孤城傲影
孤城傲影 2021-02-04 19:39

The most common SQLite interface I\'ve seen in Python is sqlite3, but is there anything that works well with NumPy arrays or recarrays? By that I mean one that reco

4条回答
  •  我寻月下人不归
    2021-02-04 19:54

    This looks a bit older but is there any reason you cannot just do a fetchall() instead of iterating and then just initializing numpy on declaration?

提交回复
热议问题