Skip to main content

A tool that help u to interact with DB more easily

Project description

SQLBatis

License PyPI - Python Version Build Status DOC

Under Documentation

SQLBatis is a tool that inspired by the Mybatis, it provides an easier way to interact with the database through the raw sql.

SQLBatis allows you to migrate, update your database according to the data model you defined in your app.Also, there are several decorators and builtin functions which give you capbility to interact with your database.

Let's try it.

Requirements

Installation

Install SQLBatis with command pip::

pip install sqlbatis

Quick Tutorial

Connect to the DB

from sqlbatis import SQLBatis
db = SQLBatis('sqlite:///:memory:')

We have provided the decorator @db.query to execute the raw sql, Here are CRUD examples:

from sqlalchemy import Column, Integer, String
from sqlbatis import SQLBatis, Model
db = SQLBatis('sqlite:///:memory:')

class User(Model):

    id = Column(Integer, primary_key=True)
    name = Column(String)
    full_name = Column(String)


@db.query('INSERT INTO user (name, full_name) VALUS(:name, :full_name)')
def create(name, full_name):
    pass

@db.query('SELECT * FROM user')
def query_user():
    pass

@db.query('UPDATE user SET name = :name WHERE id = :id')
def update_user(name, id):
    pass

@db.query('DELETE FROM user WHERE id = :id')
def delete_user(id):
    pass

if __name__ == '__main__':
    create('10111000', 'Leo')

Documentation

More details please refer to the docs

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

sqlbatis-0.9.0.tar.gz (19.8 kB view details)

Uploaded Source

File details

Details for the file sqlbatis-0.9.0.tar.gz.

File metadata

  • Download URL: sqlbatis-0.9.0.tar.gz
  • Upload date:
  • Size: 19.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for sqlbatis-0.9.0.tar.gz
Algorithm Hash digest
SHA256 3967343c8c442d6696b838bf8f7bdfbccb67ccd92a2dafe301ea8323be9068f7
MD5 38316b01433d72370c121722583760ba
BLAKE2b-256 6e84f41ff0be68cd170036f2020edeb01f7f46f358e7e950e928c47ad56b2abe

See more details on using hashes here.

Supported by

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