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.26.tar.gz
(71.7 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
flowquery-1.0.26-py3-none-any.whl
(122.6 kB
view details)
File details
Details for the file flowquery-1.0.26.tar.gz.
File metadata
- Download URL: flowquery-1.0.26.tar.gz
- Upload date:
- Size: 71.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e5a316537e564ce3a2a74f067df2b0075860668a62fae03630e1d05e550d4eb
|
|
| MD5 |
fd471e57828a53d69a3870acbcb99621
|
|
| BLAKE2b-256 |
92aa914576f4757baabd6c5c23ddf607ee726f865162d1f178f0ebd389af6c0d
|
File details
Details for the file flowquery-1.0.26-py3-none-any.whl.
File metadata
- Download URL: flowquery-1.0.26-py3-none-any.whl
- Upload date:
- Size: 122.6 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 |
d822e32eb0e5c930388d67df2087e4625b2b64b9724aecef0855a8e688419380
|
|
| MD5 |
b6e919293bda8b181451c479a345b2dc
|
|
| BLAKE2b-256 |
69f42ed8840d3ed77e983955458493eb0401d010d204ad056e69ef465e51ef74
|