An open API service indexing awesome lists of open source software.

https://github.com/carlossilva2/knexpy

An abstraction for SQLite3 based on Knexjs
https://github.com/carlossilva2/knexpy

abstraction human-readable knex module python3 sql sqlite3

Last synced: 7 months ago
JSON representation

An abstraction for SQLite3 based on Knexjs

Awesome Lists containing this project

README

          

# Knexpy

Knexpy License
[![Downloads](https://pepy.tech/badge/knexpy)](https://pepy.tech/project/knexpy)
[![Supported Versions](https://img.shields.io/pypi/pyversions/knexpy.svg)](https://pypi.org/project/knexpy)
[![Documentation Status](https://readthedocs.org/projects/knexpy/badge/?version=latest)](https://knexpy.readthedocs.io/en/latest/?badge=latest)
[![Black](https://img.shields.io/badge/code%20style-black-000000)](https://github.com/psf/black)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)
Buy Me A Coffee

A query builder for SQLite3 based on Knexjs

## Features

* Transactions
* Type Checking
* Bulk Insert
* JSON mapping

You can report bugs and discuss feature on the [GitHub issues page](https://github.com/carlossilva2/Knexpy/issues).
For more detailed information check [Readthedocs](https://knexpy.readthedocs.io/)

## Examples

### Creating a Table

```python
from Knexpy import Knex, Field

db = Knex("")

db.table(
"c",
[
Field.integer("field"),
],
not_exists=False,
)

db.table(
"t",
[
Field.varchar("field"), # Default size: 255
Field.varchar("field2"),
Field.varchar("field3"),
Field.foreign_key("field4", "c", "id"),
],
not_exists=False, # IF NOT EXISTS clause. Defaults to True
)
```

> When creating a table the fields `id`, `created_at`, `modified_at` are automatically generated.
> The `id` field is a hash based on the information of the Row

### Basic Select

```python
from Knexpy import Knex

db = Knex("")

query = (
db.select("id", "field", "field2", ["field3", "test"],...) # List type on select acts as an alias
.from_("t")
.where("field", "=", "12345")
.order_by("id")
)

query.query() # Returns data as JSON
query.query(False) # Returns data as tuples
```

### Select with Subquery

```python
from Knexpy import Knex

db = Knex("")

query = (
db.select("id", "field", "field2", ["field3", "test"],...)
.from_("t")
.where("field", "=", "12345")
.where(
"field4",
"=",
db.subquery().select("id").from_("c").where("field", "=", 12345),
join_type="OR", # If attribute not present defaults to "AND".
)
.order_by("id")
)

query.query() # Returns data as JSON
```

### Insert JSON Data

```python
from Knexpy import Knex

db = Knex("", type_check=True) # type_check enables type checking (duh) when inserting/updating data

db.insert_json("", {
"field": "1",
"field2": "2",
"field3": "3"
})
```