Skip to main content

"Resource Query Language for SQLAlchemy"

Project description

RQLAlchemy

Build Status

Resource Query Language extension for SQLAlchemy

Overview

Resource Query Language (RQL) is a query language designed for use in URIs, with object-style data structures.

rqlalchemy is an RQL extension for SQLAlchemy, making it easy to expose SQLAlchemy tables or models as an HTTP API endpoint and perform complex queries using only query string parameters.

Installing

pip install rqlalchemy

Usage

Support RQL queries in your application by using the select() construct provided by RQLAlchemy. After creating the selectable, use the rql() method to apply the RQL query string, and then use the execute() method with the session to retrieve the results.

For example, in a Flask HTTP API with a users collection endpoint querying the User model:

from urllib.parse import unquote
from flask import request

from rqlalchemy import select

@app.route('/users')
def get_users_collection():
    qs = unquote(request.query_string.decode(request.charset))
    users = select(User).rql(qs).execute(session)

    return render_response(users)

The .execute() method handles the session and adjusts the results accordingly, returning scalars, lists of dicts, or a single scalar result when appropriate. There's no need to use session.execute() or session.scalars() directly unless you want to handle the results yourself.

Pagination

RQLAlchemy offers limit/offset pagination with the rql_paginate() method, returning the requested page, RQL expressions for previous and next pages if available, and the total number of items.

from urllib.parse import unquote
from flask import request

from rqlalchemy import select

@app.route('/users')
def get_users_collection():
    qs = unquote(request.query_string.decode(request.charset))
    res = select(User).rql(qs).rql_paginate(session)

    response = {
        "data": res.page,
        "total": res.total,
    }

    if res.previous_page:
        response["previous"] = '/users?' + res.previous_page

    if res.next_page:
        response["next"] = '/users?' + res.next_page

    return render_response(response)

Pagination requires a limit, as a RQLSelect._rql_default_limit value, a query string limit(x), or the limit parameter to the rql() method. Calling rql_paginate() without a limit will raise RQLQueryError.

Reference Table

RQL SQLAlchemy equivalent Observation
QUERYING
select(a,b,c,...) select(Model.a, Model.b, Model.c,...)
values(a) [o.a for o in query.from_self(a)]
limit(count,start?) .limit(count).offset(start)
sort(attr1) .order_by(attr)
sort(-attr1) .order_by(attr.desc())
distinct() .distinct()
first() .limit(1)
one() [query.one()]
FILTERING
eq(attr,value) .where(Model.attr == value)
ne(attr,value) .where(Model.attr != value)
lt(attr,value) .where(Model.attr < value)
le(attr,value) .where(Model.attr <= value)
gt(attr,value) .where(Model.attr > value)
ge(attr,value) .where(Model.attr >= value)
in(attr,value) .where(Model.attr.in_(value)
out(attr,value) .where(not_(Model.attr.in_(value)))
contains(attr,value) .where(Model.contains(value)) Produces a LIKE expression when querying against a string, or an IN expression when querying against an iterable relationship
excludes(attr,value) .where(not_(Model.contains(value))) See above.
and(expr1,expr2,...) .where(and_(expr1, expr2, ...))
or(expr1,expr2,...) .where(or_(expr1, expr2, ...))
AGGREGATING All aggregation functions return scalar results.
aggregate(a,b(c),...) select(Model.a, func.b(Model.c)).group_by(Model.a)
sum(attr) select(func.sum(Model.attr))
mean(attr) select(func.avg(Model.attr))
max(attr) select(func.max(Model.attr))
min(attr) select(func.min(Model.attr))
count() select(func.count())

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

rqlalchemy-0.6.0.tar.gz (9.6 kB view details)

Uploaded Source

Built Distribution

rqlalchemy-0.6.0-py3-none-any.whl (8.2 kB view details)

Uploaded Python 3

File details

Details for the file rqlalchemy-0.6.0.tar.gz.

File metadata

  • Download URL: rqlalchemy-0.6.0.tar.gz
  • Upload date:
  • Size: 9.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.2 CPython/3.10.12 Linux/5.15.0-92-generic

File hashes

Hashes for rqlalchemy-0.6.0.tar.gz
Algorithm Hash digest
SHA256 427360fc5c8f3324dff5b18d90492800cb606270a2d5bdcac3b5a5f7ce036e0d
MD5 2ad48b6989b5a63bc898e663da2b2a79
BLAKE2b-256 7641738ee2533229994af39b6530829e5ce83e10d810069afb9e7ccc57d37fa2

See more details on using hashes here.

File details

Details for the file rqlalchemy-0.6.0-py3-none-any.whl.

File metadata

  • Download URL: rqlalchemy-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 8.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.2 CPython/3.10.12 Linux/5.15.0-92-generic

File hashes

Hashes for rqlalchemy-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 cd4d5c2060c54366620d67e83c4cf74a95f34d384efd0b57258f4f803e32c896
MD5 e284693981c3cdbbeb71d3833638ec09
BLAKE2b-256 f27168bc0f0c3fc69f6d568e3b27a3a8112e98264380bc8e23d29190b09f02f0

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