Skip to main content
Latest version Documentation Status Travis-CI Code coverage

filteralchemy is a declarative query builder for SQLAlchemy. filteralchemy uses marshmallow-sqlalchemy to auto-generate filter fields and webargs to parse field parameters from the request. Use it to filter data with minimal boilerplate.

For Django users: the design of filteralchemy is strongly inspired by django-filter.

Install

pip install filteralchemy

Quickstart

import flask
from models import Album, session
from webargs.flaskparser import parser

from filteralchemy import FilterSet
from filteralchemy.operators import Equal, Less, Greater

class AlbumFilterSet(FilterSet):
    class Meta:
        model = Album
        query = session.query(Album)
        operators = (Equal, Less, Greater)
        parser = parser

app = flask.Flask(__name__)

@app.route('/albums')
def get_albums():
    query = AlbumFilterSet().filter()
    return flask.jsonify(query.all())
http :5000/albums artist==Queen genre==rock sales__gt==1000000

Release files for filteralchemy 0.1.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for filteralchemy 0.1.0
File Size Uploaded
filteralchemy-0.1.0.tar.gz 5.6 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for filteralchemy 0.1.0
File Interpreter ABI Platform
filteralchemy-0.1.0-py2.py3-none-any.whl Python 2, Python 3 none any Details

Total release size: 14.1 kB

Release files / filteralchemy-0.1.0.tar.gz

Download URL filteralchemy-0.1.0.tar.gz
Size 5.6 kB
Tags Source
SHA-256 checksum
How to use checksums
38b9784aa85d31a393282eb2b313e5955b5c7632d9bbfc5c653c040e937a7d96
BLAKE2b-256 checksum
How to use checksums
ad3c20280257ee8411e905fdd09e4bf7f2bbc37d7e47986413c57b30acb473a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / filteralchemy-0.1.0-py2.py3-none-any.whl

Download URL filteralchemy-0.1.0-py2.py3-none-any.whl
Size 8.5 kB
Tags Python 2 Python 3
SHA-256 checksum
How to use checksums
72a8f636a88094c5ac65accefcdf1b935af7baa13697399c5f049dc267539af5
BLAKE2b-256 checksum
How to use checksums
6df71a6205908834ac7249796dea17ecfa310595d4184b7be89db3ac047ee588
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

0.1.0 This release

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page