Socket
Book a DemoInstallSign in
Socket

sqlite-daq

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sqlite-daq

A SQLite wrapper optimized for DAQ-style, append-only logging.

pipPyPI
Version
0.1.0
Maintainers
1

SQLite-DAQ

A SQLite wrapper optimized for DAQ-style, append-only logging. Thread-safe per-connection usage, with helpers for CSV export and column selection.

Installation

pip install sqlite-daq

Usage

from sqlite_daq import SQLiteDaqWrapper

db = SQLiteDaqWrapper('mydata')
db.append_data_to_table('log', {'value': 42, 'timestamp': '2025-08-08'})
rows = db.fetch_all('log')
print(rows)
db.export_to_csv('log', 'log.csv')
db.close()

License

MIT

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts