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
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
flowquery-1.0.14.tar.gz
(57.3 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file flowquery-1.0.14.tar.gz.
File metadata
- Download URL: flowquery-1.0.14.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b9efb17dffc4d2fa66ee6fb9c23518d2a07f108bfc695c667dc1e375340237c
|
|
| MD5 |
65478a116b19959fd6d5712e5c8d6658
|
|
| BLAKE2b-256 |
e452350695ea9ea5e423bbbeab46a88bb5dd1a39201af217a3c673cd5781407d
|
File details
Details for the file flowquery-1.0.14-py3-none-any.whl.
File metadata
- Download URL: flowquery-1.0.14-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b71bbad9584ed937732db770ecfc4d8b7b5661382ccb7c431c6a6466e28538df
|
|
| MD5 |
e7a61255811b246001fdf1012a454d64
|
|
| BLAKE2b-256 |
46124221fd977ca9f863e53155fe9e7144242760716f675c16ac233bbd2edd56
|