Metadata-Version: 2.4
Name: meca-common-db-ciphersqlite3
Version: 1.0.1
Summary: SqlCipher版Sqlite3
Author: jgdqdlr
Requires-Python: ~=3.13
Description-Content-Type: text/markdown

## 快速开始

1. 安装包

```bash
pip install meca-common-db-ciphersqlite3
```

2. 使用包

```python
from meca.common.db.ciphersqlite3 import sqlite3
conn = sqlite3.connect('test.db')
conn.execute('PRAGMA key=<key>')
row = conn.execute('select * from sqlite_master').fetchone()
conn.close()
print(row)
```
