Library to build Gloodata extensions
Project description
Glootil
A Python 3 library to create gloodata extensions.
Usage
mkdir my-gd-ext
cd my-gd-ext
uv init
uv add glootil uvicorn fastapi
edit main.py to contain:
from datetime import datetime
from enum import Enum
from glootil import Toolbox
tb = Toolbox("my-gd-ext", "My Extension", "My Utility Tools")
@tb.enum(icon="visible")
class DisplayFormat(Enum):
LINE = "Line"
TABLE = "Table"
TEXT = "Text"
@tb.tool(
name="Compound Interest Rate Calculator",
ui_prefix="Compound Interest Rate",
args={
"principal": "Principal",
"interest_rate": "Interest Rate",
"years": "Years",
"display_format": "Format",
},
examples=[
"calculate compound interest for initial 1500 dollars, 2.5% interests for 8 years in line chart",
"compound interst for $2000 at 3.5% interests for 10 years as a table",
],
)
def compound_interest_calculator(
principal: float = 1.0,
interest_rate: float = 3.0,
years: int = 5,
display_format: DisplayFormat = DisplayFormat.LINE,
):
year = datetime.now().year
amount = principal
cols = [("year", "Year"), ("amount", "Amount"), ("interest", "Interest")]
rows = []
for i in range(0, years + 1):
interest = amount * (interest_rate / 100)
rows.append((year + i, amount, interest))
amount += interest
if display_format == DisplayFormat.TABLE:
return {
"type": "Table",
"columns": cols,
"rows": rows,
}
elif display_format == DisplayFormat.TEXT:
lines = [
f"- {year}: ${amount} (${interest} interests)"
for (year, amount, interest) in rows
]
return "\n".join(lines)
else:
return {
"type": "Series",
"title": "Compound Interest by Year",
"xColTitle": "Year",
"yColTitle": "$",
"xCol": "year",
"valCols": ["amount", "interest"],
"cols": cols,
"rows": rows,
}
tb.serve(host="127.0.0.1", port=8087)
Start:
uv run main.py
On gloodata write in the prompt bar:
Add extension Fincance at port 8087
Click Test and then Save
Now in the prompt bar write something like:
calculate compound interest for initial 2500 dollars, 3.5% interests for 15 years
Check the examples folder for more.
License
MIT, see LICENSE file for details
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
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 glootil-0.2.5.tar.gz.
File metadata
- Download URL: glootil-0.2.5.tar.gz
- Upload date:
- Size: 21.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb9c9ad85fc708ec6c6109d944660bcb73ca3322173e7bd477ff1b8d175c801a
|
|
| MD5 |
81f8a2709c742fde7f410d0678c774d9
|
|
| BLAKE2b-256 |
304bdbc2e0de7f7c49d1d31051476ddb31259133d2ad4731d1dea31b7356bb54
|
File details
Details for the file glootil-0.2.5-py3-none-any.whl.
File metadata
- Download URL: glootil-0.2.5-py3-none-any.whl
- Upload date:
- Size: 13.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8cec48114557f8b40cbe761b7305024fce92d38879c43a22565dee73d17b358d
|
|
| MD5 |
323207972ee18f4a49401dce3a84b44b
|
|
| BLAKE2b-256 |
e1595808f4e4fb68d2794344db5f1091da6ec1011fe104d71ccfe30c322833fd
|