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.19.tar.gz
(59.6 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.19.tar.gz.
File metadata
- Download URL: flowquery-1.0.19.tar.gz
- Upload date:
- Size: 59.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48f7fe5ad667b6558a9092b9fd3befb3fb035ebb4c37c12d49716d3c5bb1b9a0
|
|
| MD5 |
77ff61e4bfe11b51d58f652cdeb4fc7c
|
|
| BLAKE2b-256 |
7a239ccdd87cc1488689935cec6e1a64699b2d1dfc398e812efa8100a2cab0ae
|
File details
Details for the file flowquery-1.0.19-py3-none-any.whl.
File metadata
- Download URL: flowquery-1.0.19-py3-none-any.whl
- Upload date:
- Size: 96.7 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 |
39d634ed145c53d3cf247b5d6b5da0e89b9d0b708dee247a4f4edd67fb906251
|
|
| MD5 |
72d188fce3310c689454d4d660218886
|
|
| BLAKE2b-256 |
a1a9495ae30e52624f3e0f9fa2187c2d763ec6d1f625e9de77ff684768dbaa0b
|