oneFace icon indicating copy to clipboard operation
oneFace copied to clipboard

Generating interfaces(CLI, Qt GUI, Dash web app) from a Python function or a command program.

Results 3 oneFace issues
Sort by recently updated
recently updated
newest added

Provide a convenient way to config the style of the interfaces.

enhancement

For example: ```Python from oneface import one, Arg from oneface.dash_app import App, InputItem from dash import dcc, html class Person: def __init__(self, name, age): self.name = name self.age = age...

question