Skip to main content

JSON declarative SQL conversion library

Project description

duckQL 🐥

PyPi package Tests codecov FOSSA Status

duckQL is simple JSON-based notation for some SQL dialects (PostgreSQL, MariaDB, MySQL) based on pydantic library.

Example

Here is a simple example of library usage. For more examples please visit project page.

from duckql import Query, Property, Comparision, Constant


my_query = Query(
    entity='users',
    properties=[
        Property(name='users.name'),
        Property(name='users.surname')
    ],
    conditions=Comparision(
        properties=[
            Property(name='users.age'),
            Constant(value=15)
        ],
        operation=Comparision.Operation.GREATER_EQUAL
    )
)
{
  "obj": "structures.Query",
  "entity": "users",
  "properties": [
    {
      "obj": "properties.Property",
      "name": "users.name"
    },
    {
      "obj": "properties.Property",
      "name": "users.surname"
    }
  ],
  "conditions": {
    "obj": "structures.Comparision",
    "properties": [
      {
        "obj": "properties.Property",
        "name": "users.age"
      },
      {
        "obj": "properties.Constant",
        "value": "15"
      }
    ],
    "operation": "gte"
  }
}
SELECT users.name, users.surname FROM users WHERE (users.age >= 15);

Development

Project is using poetry and documentation is generated by MkDocs. If you want to generate documentation you need to follow these simple steps inside of your virtual environment:

  1. poetry install
  2. mkdocs build

Inside of your virtual environment, you can also use mkdocs serve to create temporary auto-reload http server with live docs.

We use pytest for unit tests and flake8 for code-style validation. You can execute tests inside of pipenv shell using these commands:

  • pytest -v .: executes unit tests
  • pytest -v --flake8 .: flake8 code-style tests

License

FOSSA Status


Made with ☕️ and ❤️ by Jakub Dubec & BACKBONE s.r.o.

Changelog

0.14.0 : 2024-01-12

⚠️ This release is not working with Python 3.13 and 3.12!! ⚠️

Chores, chores and chores. This will be probably the last release based on the Pydantic 1.x.

🌈 Pink fluffy unicorns dancing on rainbows 🌈

  • Changed: Dropped support for Python 3.7 and 3.8

0.13.0 : 2022-06-09

  • Added: Ability to use casting for ORDER BY property

0.12.1 : 2022-05-10

  • Fixed: Corrected cast of JSON fields

0.12.0 : 2021-12-21

  • Feature: FirstValue window function introduced
  • Feature: Positional ArrayAgg introduced

0.11.1 : 2021-12-14

  • Change: Ability to cast to UUID

0.11.0 : 2021-12-10

  • Feature: More benevolent type nesting

0.10.0 : 2021-11-30

  • Feature: Case introduced (without docs, there was no time, sry, let's call it Easter Egg for a while)

0.9.1 : 2021-07-20

  • Fix: Fixed problem with multiple properties in operations (I had to remove comparison property check)

0.9.0 : 2021-06-25

  • Fix: Fixed nested conditions (Operator can contain another Operator)
  • Change: Dropped Python 3.6 support

0.8.2 : 2020-10-15

  • Fix: Use -> instead of -->

0.8.1 : 2020-10-15

  • Fix: Use --> operator in JSON lookup chaining in nested objects

0.8.0 : 2020-10-14

  • Feature: Nested JSON fields

0.7.2 : 2020-08-28

  • Fix: Use ->> operator in JSON lookup instead of -> (cast result as text)

0.7.1 : 2020-08-27

  • Fix: Use quotes in JSON column type keys in Property

0.7.0 : 2020-08-27

  • Feature: Now is possible to pass Distinct to Count to have COUNT(DISTINCT property) syntax in pSQL
  • Tests: Test for JSON column type in pSQL

0.6.1 : 2020-08-04

  • Fix: Use native typing.Literal if possible (Python 3.8 compatibility fix)

0.6.0 : 2020-07-23

  • Feature: lower function introduced
  • Feature: upper function introduced
  • Feature: pSQL initcap function introduced

0.5.0 : 2020-07-22

  • Feature: QueryFactory supporting json, msgpack and bson
  • Feature: pSQL unaccent function introduced

0.4.0 : 2020-06-12

  • Feature: Extract.Unit.DAY introduced
  • Feature: CastOperator.DataType.REAL introduced
  • Feature: pSQL to_char function introduced
  • Feature: pSQL to_date function introduced

0.3.0 : 2020-05-20

  • Feature: HAVING support
  • Feature: NOW() support
  • Fix: Comparision allows to have every BaseType as properties
  • Fix: Interval value is quoted now

0.2.2 : 2020-04-16

  • Change: Ability to pass structures.Distinct into functions.StringAgg

0.2.1 : 2020-04-09

  • Fix: Fixed JOIN aliases

0.2.0 : 2020-04-09

Project renamed to duckql, this is the first public release (development status modifier changed to beta).

  • Change: Name changed to duckql
  • Change: Poetry as package manager

0.1.8 : 2020-04-07

  • Feature: Subquery support
  • Note: Changelog datetimes in ISO 8601 compatible Y-m-d format

0.1.7 : 2020-03-17

  • Fix: Adding missing imports in __init__.py files inside of submodules
  • Change: Moved __version__ from __init__.py to version.py
  • Note: Development status change to Alpha

0.1.6 : 2020-03-13

  • Feature: Introduced functions.StringAgg
  • Feature: Introduced structures.CastOperator
  • Feature: CLI for parsing files

0.1.5 : 2020-02-05

  • Change: Allow direct use of structures.Comparision in query conditions

0.1.4 : 2020-02-05

  • Fix: Allow aliases in structures.Query
  • Change: Do not escape %

0.1.3 : 2020-02-03

  • Feature: Natural join support

0.1.2 : 2020-02-03

  • Change: Completed docs
  • Feature: Recursive nested properties lookup in Query object

0.1.1 : 2020-02-26

  • Change: Default values for optional attributes in structures.Query
  • Change: custom_parser now can raise ParseError if there is invalid object type passed

0.1.0 : 2020-02-26

  • Initial release

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

duckql-0.14.0.tar.gz (18.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

duckql-0.14.0-py3-none-any.whl (31.8 kB view details)

Uploaded Python 3

File details

Details for the file duckql-0.14.0.tar.gz.

File metadata

  • Download URL: duckql-0.14.0.tar.gz
  • Upload date:
  • Size: 18.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.0

File hashes

Hashes for duckql-0.14.0.tar.gz
Algorithm Hash digest
SHA256 f85f9862fc6dd449e07ecdb741795a5266e662524581c2de74cee095717b6a3d
MD5 67f076226e5cbd82ad2bddf30193508f
BLAKE2b-256 bd2adf75a50ff56e7c5353dc25fc36c2bcb257233c9d5efd68d0e4cf4164ffba

See more details on using hashes here.

File details

Details for the file duckql-0.14.0-py3-none-any.whl.

File metadata

  • Download URL: duckql-0.14.0-py3-none-any.whl
  • Upload date:
  • Size: 31.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.0

File hashes

Hashes for duckql-0.14.0-py3-none-any.whl
Algorithm Hash digest
SHA256 25377bc3fc224774a023641f13b4ed5abc70fd48fbdd16525d2da356c942b680
MD5 c1040a59d726e6e779bc9260afa229b2
BLAKE2b-256 b334a555e882ca5fdcc40f616d179cd1932ab3fabdd8c1dd37d2f867b037a66a

See more details on using hashes here.

Supported by

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