Skip to main content

A simple mysql orm base on pymysql

Project description

SimpySql

一个数据库orm, 目前支持mysql, mongodb

mysql文档 , mongo文档

安装

pip install simpysql

初始化

你需要在你的项目根目录下创建一个.env文件,内容如下:

[default]                                       #数据库配置名称(对应model.__database__)
DB_TYPE=mysql                                   #数据库类型 mysql 或者 mongo
DB_HOST=127.0.0.1                               #数据库IP                          
DB_PORT=3306                                    #端口
DB_NAME=test_db1                                #库名
DB_USER=root                                    #账号
DB_PASSWORD=123456                              #密码
DB_CHARSET=utf8mb4                              #数据库编码
LOG_DIR=/home/logs/python/                      #开启日志, 日志路径: /home/logs/python/

[test_db2]                                      #其他的库
DB_TYPE=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_NAME=test_db2
DB_USER=root
DB_PASSWORD=123456
DB_CHARSET=utf8mb4
#LOG_DIR=/home/logs/python/                     #关闭日志

创建表model

创建数据库model 并继承simpysql.DBModel:

#!/usr/bin/python
# -*- coding: UTF-8 -*-
from simpysql.DBModel import DBModel

class ModelDemo(DBModel):

    __basepath__ = '/home/project/'             # .env 文件路径
    #__database__ = 'default'                   # 库选择, 没有该属性,则默认default库
    __tablename__ = 'lh_test'                   # table name
    __create_time__ = 'create_time'             # 自动添加创建时间字段create_time(精确到秒), 设置为None或者删除该属性,则不自动添加 
    __update_time__ = 'update_time'             # 自动更新时间字段update_time(精确到秒), 设置为None或者删除该属性,则不自动更新
    columns = [                                 # table columns
        'id',
        'name',
        'token_name',
        'status',
        'create_time',
        'update_time',
    ]

    # 可以通过该方法设置自动添加时间字段的格式
    # def fresh_timestamp(self):
    #     return datetime.datetime.now().strftime("%Y%m%d")

操作实例

ModelDemo.where('id', 4).select('id', 'name').take(5).get()

其他

欢迎志同道合的朋友一起参与本项目开发SQLServer、PostgreSQL开发, 联系方式: 490573621@qq.com

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

simpysql-0.4.10.tar.gz (15.3 kB view details)

Uploaded Source

Built Distribution

simpysql-0.4.10-py3-none-any.whl (34.5 kB view details)

Uploaded Python 3

File details

Details for the file simpysql-0.4.10.tar.gz.

File metadata

  • Download URL: simpysql-0.4.10.tar.gz
  • Upload date:
  • Size: 15.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.27.1 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for simpysql-0.4.10.tar.gz
Algorithm Hash digest
SHA256 dcf844f8e4680cdddb1872f8fb6eab8ddfa934fd52a19beeca71659092dba5db
MD5 196e8e7403e35cda2cc4cc1c9f33ff44
BLAKE2b-256 07fc198ad2152124bba5406bbab86f584a2c4522ced9635f6fc3fdb9d074a1b3

See more details on using hashes here.

File details

Details for the file simpysql-0.4.10-py3-none-any.whl.

File metadata

  • Download URL: simpysql-0.4.10-py3-none-any.whl
  • Upload date:
  • Size: 34.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.27.1 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for simpysql-0.4.10-py3-none-any.whl
Algorithm Hash digest
SHA256 191571fd035103be97ddf617c5ce30233350314326061f2b0df78c0cb0cf46d9
MD5 e75412504f0d28ffb624dfb24c255e6d
BLAKE2b-256 6988326ee9db3d112641b96c4e97d1ffaf4f05f455c319e707fc75d7954f1dad

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page