A library to filter SQLAlchemy queries.
Project description
Filter, sort and paginate SQLAlchemy query objects. Ideal for exposing these actions over a REST API.
Filtering
Assuming that we have a SQLAlchemy query that only contains a single model:
from sqlalchemy import Column, Integer, String
from sqlalchemy.ext.declarative import declarative_base
class Base(object):
id = Column(Integer, primary_key=True)
name = Column(String(50), nullable=False)
count = Column(Integer, nullable=True)
Base = declarative_base(cls=Base)
class Foo(Base):
__tablename__ = 'foo'
# ...
query = self.session.query(Foo)
Then we can apply filters to that query object (multiple times):
from sqlalchemy_filters import apply_filters
# `query` should be a SQLAlchemy query object
filters = [{'field': 'name', 'op': '==', 'value': 'name_1'}]
filtered_query = apply_filters(query, filters)
more_filters = [{'field': 'foo_id', 'op': 'is_not_null'}]
filtered_query = apply_filters(filtered_query, more_filters)
result = filtered_query.all()
Sort
from sqlalchemy_filters import apply_sort
# `query` should be a SQLAlchemy query object
order_by = [
{'field': 'name', 'direction': 'asc'},
{'field': 'id', 'direction': 'desc'},
]
sorted_query = apply_sort(query, order_by)
result = sorted_query.all()
Pagination
from sqlalchemy_filters import apply_pagination
# `query` should be a SQLAlchemy query object
query, pagination = apply_pagination(query, page_number=1, page_size=10)
page_size, page_number, num_pages, total_results = pagination
assert 10 == len(query)
assert 10 == page_size == pagination.page_size
assert 1 == page_number == pagination.page_number
assert 3 == num_pages == pagination.num_pages
assert 22 == total_results == pagination.total_results
Filters format
Filters must be provided in a list and will be applied sequentially. Each filter will be a dictionary element in that list, using the following format:
filters = [
{'field': 'field_name', 'op': '==', 'value': 'field_value'},
{'field': 'field_2_name', 'op': '!=', 'value': 'field_2_value'},
# ...
]
Where field is the name of the field that will be filtered using the operator provided in op and (optionally, depending on the operator) the provided value.
This is the list of operators that can be used:
is_null
is_not_null
==, eq
!=, ne
>, gt
<, lt
>=, ge
<=, le
like
in
not_in
Sort format
Sort elements must be provided as dictionaries in a list and will be applied sequentially:
order_by = [
{'field': 'name', 'direction': 'asc'},
{'field': 'id', 'direction': 'desc'},
# ...
]
Where field is the name of the field that will be sorted using the provided direction.
Running tests
There are some Makefile targets that can be used to run the tests. A test database will be created, used during the tests and destroyed afterwards.
The default configuration uses both SQLite and MySQL (if the driver is installed) to run the tests, with the following URIs:
sqlite+pysqlite:///test_sqlalchemy_filters.db
mysql+mysqlconnector://root:@localhost:3306/test_sqlalchemy_filters
Example of usage:
$ # using default settings
$ make test
$ make coverage
$ # overriding DB parameters
$ ARGS='--mysql-test-db-uri mysql+mysqlconnector://root:@192.168.99.100:3340/test_sqlalchemy_filters' make test
$ ARGS='--sqlite-test-db-uri sqlite+pysqlite:///test_sqlalchemy_filters.db' make test
$ ARGS='--mysql-test-db-uri mysql+mysqlconnector://root:@192.168.99.100:3340/test_sqlalchemy_filters' make coverage
$ ARGS='--sqlite-test-db-uri sqlite+pysqlite:///test_sqlalchemy_filters.db' make coverage
License
Apache 2.0. See LICENSE for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file sqlalchemy-filters-0.2.0.tar.gz
.
File metadata
- Download URL: sqlalchemy-filters-0.2.0.tar.gz
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ec24a191df860c93fb02ee4379f9b49196d0a52fede4aef43783dd4aa8969ebe |
|
MD5 | 68395bb825ab2c2269f7128dc341cf2e |
|
BLAKE2b-256 | 5ac39e3494900983000f05b53c8e35859a748eceb3df08d2a5a2d8b106adfe9f |