# PySqlite **Repository Path**: fangjun/PySqlite ## Basic Information - **Project Name**: PySqlite - **Description**: 基于PyQt的SQLite客户端,可以实现新建、打开和关闭SQLite数据库,并在打开的连接中执行SQL语句,可以方便地查看数据 - **Primary Language**: Python - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 4 - **Created**: 2015-09-07 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # PySqlite ## 开发背景 工作中经常要用到SQLite数据库,但又不想去安装什么客户端,最近在捣腾PyQt,于是就顺便做了这个简单的基于PyQt的SQLite客户端 ## 系统功能 - 创建、打开SQLite数据库 - 执行SQL语句 ## 系统依赖 - Python 3.4 - PyQt 5.5 ## 开发环境 python -m venv venv pip install -r requirements.txt ## 使用方法 ### Linux ```cmd python main.py ``` ### Windows Windows下如果安装了Python3.4和PyQt5.5, 可以通过如下方法运行: ```cmd python main.py ``` 也可以直接将dist目录拷贝到想要安装的位置,直接运行pysqlite.exe即可 ### Mac 安装相应的依赖文件后,直接运行如下命令: ```cmd python main.py ``` ## References ### 语法高亮 https://wiki.python.org/moin/PyQt/Python%20syntax%20highlighting