Skip to main content

A declarative query language for data processing pipelines

Project description

FlowQuery

A declarative query language for data processing pipelines.

Installation

pip install flowquery

Quick Start

Command Line Interface

Start the interactive REPL:

flowquery

Programmatic Usage

import asyncio
from flowquery import Runner

runner = Runner("WITH 1 as x RETURN x + 1 as result")
asyncio.run(runner.run())
print(runner.results)  # [{'result': 2}]

Creating Custom Functions

from flowquery.extensibility import Function, FunctionDef

@FunctionDef({
    "description": "Converts a string to uppercase",
    "category": "string",
    "parameters": [
        {"name": "text", "description": "String to convert", "type": "string"}
    ],
    "output": {"description": "Uppercase string", "type": "string"}
})
class UpperCase(Function):
    def __init__(self):
        super().__init__("uppercase")
        self._expected_parameter_count = 1

    def value(self) -> str:
        return str(self.get_children()[0].value()).upper()

Documentation

License

MIT License - see LICENSE for details.

Links

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

flowquery-1.0.15.tar.gz (57.3 kB view details)

Uploaded Source

Built Distribution

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

flowquery-1.0.15-py3-none-any.whl (93.3 kB view details)

Uploaded Python 3

File details

Details for the file flowquery-1.0.15.tar.gz.

File metadata

  • Download URL: flowquery-1.0.15.tar.gz
  • Upload date:
  • Size: 57.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for flowquery-1.0.15.tar.gz
Algorithm Hash digest
SHA256 a04ab292f2b112aed33aad5dec667e9e1f20b2863482abd8f2a6362d2068e4d2
MD5 5740bb34b7ab4677dd764306e727a564
BLAKE2b-256 77ae9daf1257383e9950356a224e845dc938633304757e088fef05e191ce4e1a

See more details on using hashes here.

File details

Details for the file flowquery-1.0.15-py3-none-any.whl.

File metadata

  • Download URL: flowquery-1.0.15-py3-none-any.whl
  • Upload date:
  • Size: 93.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for flowquery-1.0.15-py3-none-any.whl
Algorithm Hash digest
SHA256 b09458c52787b552bbca2b0ccf021efd89be98d1c357d883871b61abb1c6c1e2
MD5 d66fe7bf02c38d272262ad90c9f49f76
BLAKE2b-256 1b31e9363a4c6f734612574a099dd9cf3810d5259af998a5caa44c3a52e7d5f6

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