Skip to main content

A light-weighted GUI framework for Python programs.

Project description

[toc]

Clarisse

PyPI - Python VersionPyPI

:cn::说明文档

Clarisse is a light-weighted Python function GUI framework.

With at least one single line of code, you can easily create a user-friendly GUI for your code(or a part of your code), yet not make other changes!

TL;DR

If you have a function like

def func(arg1,arg2:int,arg3:str="have a try")->bool:
    ...

To give a GUI to a function like above, simply:

from clarisse import Clarisse

@Clarisse()
def func(arg1,arg2:int,arg3:str="have a try")->bool:
    ...

It's done.

Any time when func() is called, a GUI will be showed, allowing user to manually input/modify/check the arguments about to be given to the originalfunc() and get executed.

@Clarisse()
def func(arg1,arg2:int,arg3:str="have a try") -> bool:
    """This is only a ***test*** function\\
    but enough to show what clarisse do!"""
    print("arg1 is {0}".format(arg1))
    print(arg3.upper())
    return arg2>10

print(func("this is clarisse output",0))
Clarisse understands your need!

In the example above, func() still returns the original bool type value as if not modified(decorated); the arguments given when calling func() will be default values of them and be shown on the GUI.

Clarisse provides you plenty of choices!

You can run func() multiple times ( by clicking the Run button ) and check the output in the output dialog provided, and close the window to "confirm" the last result as your final run.

Installation

#pip install clarisse

Clarisse uses PySide2 as its backend GUI framework.

Clarisse works well on Python 3.9.1 .

Customization

  1. After using @Clarisse(), there are two ways to set the default value/ placeholder text for arguments : the def header of the function, the arguments' value when calling the function. The later way is prior than the former way.
  2. The window could also be modified by giving arguments to @Clarisse.
    1. margin is the distance from the widgets to the edge of window;
    2. vert_spacing is the distance between widgets;
    3. description is the introduction of the function as a default(func.__doc__), but could also be customized to any other words you like;
    4. args_desc is a list of string, each is used to replace the description label of an argument.
    5. args_kwdesc is similar with args_desc, but description label are given as a dict like {[argument name]:[argument description]}.
  3. Clarisse has a good compatibility with PyInstaller. You can set Clarisse as an interface of your command-line program, pack it through PyInstaller and distribute the binary file.
Typing

Clarisse choose widgets for arguments based on their types.

Note that if a type is not supported by Clarisse, it'll use an ClrsUnknown type to mark the argument. In that case the value would be shown/edited/passed in str.

argument types Clarisse widgets example
int spin box
float spin box for float
str line edit box
bool check box
list text edit box
dict table
Attention
  • if you used typing.List[a_type,...] , Clarisse will call a a_type.__init__(arg_text:str) to give an a_typeobject to the function, make sure you have appropriate constructor;

  • if you used typing.Dict[key_type,value_type,...] , Clarisse will call key_type.__init__(key_text:str)and value_type.__init__(value_text:str) to give an {key_type:value_type}dict to the function, make sure you have appropriate constructor.

Examples
@Clarisse(
    margin=10,
    vert_spacing=10,
    description="""another description. \\
         Note that this description is <font color=#ff0000>prior</font> than \\
         func.\_\_doc\_\_ .""")
def func(arg1,arg2:int,arg3:str="have a try") -> bool:
    """This is only a ***test*** function\\
    but enough to show what clarisse do!"""
    print("arg1 is {0}".format(arg1))
    print(arg3.upper())
    return arg2>10

print(func("this is clarisse output",0))
@Clarisse(args_desc=("This is arg1","This is arg2, label warps if it is too long"),args_kwdesc={"arg3":"an example to show args_kwdesc"})
def func(arg1,arg2:int,arg3:str="have a try") -> bool:
    """This is only a ***test*** function\\
    but enough to show what clarisse do!"""
    print("arg1 is {0}".format(arg1))
    print(arg3.upper())
    return arg2>10

print(func())
# actually doesn't need parameters when calling,
# but need to be given before Run is clicked.

Well done, but...

Why not gooey?

Gooey is an outstanding and all-around framework for almost all kinds of python programs, but it

  • needs code modifications;
  • you have to implement an ArgumentParser : sad story for fire and click users :cry:
  • works only for command line entrance;
  • I failed to learn it - the doc of gooey is too too much for a non-native speaker like me :sob:

Of course I advise you to choose gooey if you're familiar to it and need deep customization, but if you only need a light-weight, pain-less, quick-deployment GUI framework, maybe Clarisse is an alternative!

...and, Future!

  • Add more layouts, make them available to get changed;
  • Apply QSS(CSS-like) style sheets for widgets to make them look better;
  • Support classes;
  • Add more supported types;

......

Acknowledgements

Thanks to the fire library that inspired me the idea;

Thanks to the latexify_py module that gives me the idea of interface and the lessons of python syntax analyzing and the usage of inspect;hey dude I also contributed to latexify_py that's a really handy module go star it

Thanks to @Hieronym, for the splendid fanfiction To The Stars the best fanfiction space opera I've ever read, which gives the name of this module.

1MLightyears

20201215

Project details


Download files

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

Source Distribution

clarisse-0.0.3.tar.gz (10.4 kB view hashes)

Uploaded Source

Built Distribution

clarisse-0.0.3-py3-none-any.whl (16.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page