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 details)

Uploaded Source

Built Distribution

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

Uploaded Python 3

File details

Details for the file clarisse-0.0.3.tar.gz.

File metadata

  • Download URL: clarisse-0.0.3.tar.gz
  • Upload date:
  • Size: 10.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.9

File hashes

Hashes for clarisse-0.0.3.tar.gz
Algorithm Hash digest
SHA256 a7d3fa86c9ffca893a1879b306942163d0ae48ee580d80f4b4b193750353f34a
MD5 fe4267f362fb445ef247ff072fb2cca2
BLAKE2b-256 2b36bf381c7c9009a1c803a3488390211017d10d2dd82d0067ced33697ef4366

See more details on using hashes here.

File details

Details for the file clarisse-0.0.3-py3-none-any.whl.

File metadata

  • Download URL: clarisse-0.0.3-py3-none-any.whl
  • Upload date:
  • Size: 16.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.9

File hashes

Hashes for clarisse-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 b01eee69be8cddb1e929d5ebe3e2161d5c8eef52ceffc6728889e3b3eef44a5b
MD5 71bb53f47456b8c242b57c67ec004456
BLAKE2b-256 e878a1e1895b39bc07898781418ab9b4d2048a7bb0a892e30df5ea3ad0562090

See more details on using hashes here.

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