時々、Excelで読み込めない形式のデータや、独自形式のデータをExcelのシートに貼り付けたい場合がある。Pythonの豊富なライブラリを使えば様々なデータ形式を手軽に読み込める。今回は、SQLite形式のデータをPythonで読み込んでExcelに貼り付けてみよう。
SQLite is a simple yet powerful embedded SQL database engine. Unlike other database systems, SQLite does not need to run on a server, and all information is stored in a single file on disk. SQLite is ...