Skip to main content

YAML parser for sqla-filters.

Project description

Sqla-filters-yaml

Add yaml parser to the sqla-filters package.

Introduction

Add YAML support to sqla-filters.

Requirements

This package use the python package pyyaml. To install pyyaml you need to have the yaml.h header file. If it's not present on your system you need to install the libyaml-dev package.

  • On Fedora
sudo dnf install libyaml-devel
  • On Debian based distribution (Ubuntu, ...)
sudo apt install libyaml-dev

Installation

pip install sqla-filter-yaml

Getting Started

YAML format

---
type: and
data:
- type: or
  data:
  - type: operator
    data:
      attribute: name
      operator: eq
      value: toto
  - type: operator
    data:
      attribute: name
      operator: eq
      value: tata
- type: operator
  data:
    attribute: age
    operator: eq
    value: 21

:warning: Yaml format can change in the futur. :warning:

Example code

Create an instance of the YAMLilterParser from the yaml string / document.

Example:

# Sqlalchemy setup + model definition

# Create a YAML parser instance
parser = YAMLiltersParser(raw_json_string)

# You can finaly filter your query
query = session.query(Post)
filtered_query = parser.tree.filter(query)

# Get the results
query.all()

Result tree

                                      +----------------------+
                                      |                      |
                                      |          and         |
                                      |                      |
                                      -----------------------+
                                                 ||
                                                 ||
                                                 ||
                    +----------------------+     ||     +----------------------+
                    |                      |     ||     |                      |
                    |          or          <------------>      age == 21       |
                    |                      |            |                      |
                    +----------------------+            +----------------------+
                               ||
                               ||
                               ||
+----------------------+       ||       +----------------------+
|                      |       ||       |                      |
|     name == toto     <---------------->     name == tata     |
|                      |                |                      |
+----------------------+                +----------------------+

Contribute

Fork the repository and run the following command to install the dependencies and the dev dependencies.

pip install -e '.[dev]'

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

sqla-filters-yaml-0.0.1.tar.gz (4.3 kB view hashes)

Uploaded Source

Built Distribution

sqla_filters_yaml-0.0.1-py3-none-any.whl (3.6 kB view hashes)

Uploaded Python 3

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