Metadata-Version: 2.4
Name: xmpy_sqlite
Version: 1.1.3
Summary: xmpy框架的SQLite数据库接口
Project-URL: Homepage, https://github.com/InkAbyss/xmpy_sqlite
Project-URL: Issues, https://github.com/InkAbyss/xmpy_sqlite/issues
Author-email: bhzy <2024305928@qq.com>
License: MIT
License-File: LICENSE
Keywords: algotrading,investment,quant,quantitative,trading
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: Chinese (Simplified)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Office/Business :: Financial :: Investment
Classifier: Typing :: Typed
Requires-Python: >=3.10
Requires-Dist: peewee>=3.17.9
Description-Content-Type: text/markdown

# xmpy框架的SQLite数据库接口

## 说明

基于peewee开发的SQLite数据库接口，无需另外安装配置数据库软件，易于使用适合初学者用户。

## 安装

直接使用pip命令：

```
pip install xmpy_sqlite
```

## 使用

在星梦(xmpy)中使用SQLite时，需要在全局配置中填写以下字段信息：

| 名称      | 含义 | 必填 | 举例        |
|---------| ---- | ---- | ----------- |
| 数据库.类型  | 名称 | 是   | sqlite      |
| 数据库.文件名 | 实例 | 是   | database.db |

