Skip to main content

Fabrique nodes SDK

Project description

fabrique-nodes-core

fabrique nodes sdk

Install this lib

pip3 install fabrique-nodes-core

UI ports generator

class UIPortGroupParams:
    id_: str = '' # port_group_id
    show_ports: bool = True # show port panels
    can_add: bool = False # can add new port to group
    can_delete: bool = False # can add delete port from group
    can_move: bool = False # can move port inside group
    can_hide: bool = False # can hide port
    can_set_type: bool = True # can set porttype to port
    has_code: bool = False # has editable code field
    has_special: bool = False # has special binary switch
    has_required: bool = False # has required binary switch
    copy_name_from_code: bool = True # copy port name from code field when code edting
    group_title: str | None = None # visual title for port group
    special_title: str | None = None # title|tooltip for special
    code_title: str | None = None # title|tooltip for code
    copy_from_group: str | None = None # port group name
    portgenerator_callback_name: str | None = None
    valid_types: List[str] = []

UI config forms generator

typical config

from pydantic import BaseModel, Field, constr
from typing import Literal

urls_type = constr(regex=r'[A-Za-z0-9]+://[A-Za-z0-9%-_]+(/[A-Za-z0-9%-_])*(#|\\?)[A-Za-z0-9%-_&=]*')

class Config(BaseModel):
     port: int = Field(80, title='DB Port', description='ClickHouse Port', ge=0, le=65535)
     url: urls_type = Field('', title='url', description='ClickHouse URL')
     agg: Literal['MAX', 'MIN', 'SUM'] = Field('SUM', title='Aggregator', description='Aggregator method')

Then Config().schema() could be validated here

  • Field for defaults, titles, descriptions and constraints

  • Literal string enums supported

  • ge and le for numbers (>= and <=)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

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

fabrique_nodes_core-0.10.9-py3-none-any.whl (28.3 kB view details)

Uploaded Python 3

File details

Details for the file fabrique_nodes_core-0.10.9-py3-none-any.whl.

File metadata

File hashes

Hashes for fabrique_nodes_core-0.10.9-py3-none-any.whl
Algorithm Hash digest
SHA256 b9fb5785cfe822a984b5b3813a15c41ee85eaf8c2e870bed2d770928c8f46dac
MD5 52482ce94fb147b63669f165336a4beb
BLAKE2b-256 b81ab1f77b0a08bbc54ca31d02737a4472ed9dec799520d04a1a4eca1e35547a

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