Realtime (live/hot) preview of PySimpleGUI layouts
Project description
PySimplePreview
This is python tool which provide realtime/live/hot preview of PySimpleGUI layouts. This tool assumes that developer writes layouts as separate method/function(-s).
Note: Layout is simply list of lists of PySimpleGUI elements.
Usage
Installation
Simply use pip:
pip install PySimplePreview
Prepare your project
This tool is development-only dependency, so before you start using it, lets help python resolve it as optional dependency:
- First, if you store dependencies in
requirements.txt
, add separate file e.g.requirements-dev.txt
(you will be able to install all requirement withpip install -r requirements.txt -r requirements-dev.txt
). - Then I suggest create new module (you may also inline it's content in your code which is bad, but possible). With this content:
# Use this to not couple with develop-only dependency
try: # Used when package installed
# noinspection PyUnresolvedReferences
from PySimplePreview import *
except ImportError: # Used when no dependency found
# noinspection PyUnusedLocal
def preview(*args, **ignored):
def dummy_wrapper(f):
return f
if args[0] is not None and not isinstance(args[0], str):
return args[0]
return dummy_wrapper
def params(*args, **kwargs):
return args, kwargs
group_previews = preview
method_previews = preview
- If you've created separate module, then you can simply import anything from it instead of PySimplePreview.
Note: You can always use custom technique to manage optional python dependencies, this is just example.
Now your app can work with and without PySimplePreview!
Examples
- First you need to import
preview
decorator from PySimplePreview (or yours custom module which tries to import it).
import PySimpleGUI as sg
import PySimplePreview as psp
# ... or custom module name, e.g. _PySimplePreview
import _PySimplePreview as psp
- Then you can decorate any callable that returns layout with
preview
. Example:
@psp.preview
def get_layout():
return [
[sg.Text("Hello, world!")]
]
- Now you can run PySimplePreview with
python -m PySimplePreview
. - Select path to your project's root and choose preview to be shown.
- Edit your layout without closing PySimplePreview. Example:
@psp.preview
def get_layout():
return [
[sg.Text("Hello, world!")],
[sg.Text("Previews are cool!")],
]
- Remember to save your changes and magic happens: it's reflected in preview window.
For more complex cases see examples.
Features
PySimplePreview API
@preview
without params for functions and static methods.@preview()
for parameters:- Custom name of preview.
- Parameters for function to be called with (can be evaluated lazily).
- Custom group name (use for ease of searching, and maybe for something special later on).
- Custom window (Use own PySimpleGUI windows to preview own layouts).
@method_preview
same as@preview
but for class methods and properties.- Have same parameters as
@preview()
, additionally have optionalinstance_provider
parameter to provideself
for methods. instance_provider
can use cls parameter to create class instance.instance_provider
can have no parameters to provide class instance from some other place.instance_provider
can be omitted, then no-args constructor of class will be used.
- Have same parameters as
- Multiple previews may be applied to same callable.
@group_previews
can be used to set group_name for multiple previews of same callable.@group_previews()
name can be set as parameter.
- In case when preview_name omitted, fully-qualified callable name will be used (
package.module.function_name
ormodule.function_name
). - Same goes for
group_previews
no-param form.
PySimplePreview App
- Preview Theme can be customised.
- App remembers its position and size (toggleable).
- App stays on top of other windows (toggleable).
- Preview window can be separated from main app window.
- Previews can be filtered by groups.
- App supports execution params see
python -m PySimplePreview -h
. - See app logs for more info (it also contains handled user-defined events from layout previewed).
- If you want to see update on any module edited (when layout depends on other module), you may toggle Reload All option.
- App supports observing single module, package with
__init__.py
file and just flat-layout (folder with.py
files).
Docs
There is no readthedocs page for this project for now (it may be changed soon). But public API well-documented in code and covered with typehints (supported by PyCharm). All features using can be found in examples.
Compatability
Python versions support
For now only Python 3.11 tested, but older versions support planned.
PySimpleGUI versions support
Currently tested on PySimpleGUI 4.60.5, I'll think about adding support for older versions later, better use latest releases anyway :)
Different PySimpleGUI backends
Currently tested only with tkinter backend, I have plans for framework-agnostic version.
Contribution
Feel free to open issues, but be careful with PR's (small fixes are OK, but this is MVP project, it's implementation can be changed in any way). Also note that I may have not enough free time, so have patience.
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
File details
Details for the file PySimplePreview-0.0.2.tar.gz
.
File metadata
- Download URL: PySimplePreview-0.0.2.tar.gz
- Upload date:
- Size: 24.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 198feada3e108b94daeaccaeae637b59ac3bf87d0a9091bfbd88905c572d6ec6 |
|
MD5 | 29fd2a48105a3e127ca902c66855ddd4 |
|
BLAKE2b-256 | 034184391e41a092a4a904706be4eeb1a15b8454e6d68386cbd36bf64a076c8d |
File details
Details for the file PySimplePreview-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: PySimplePreview-0.0.2-py3-none-any.whl
- Upload date:
- Size: 33.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27428f5d1d0f7db30d9d9e8711583cecf79bcecbb1ea7b2ba602a28415481d0f |
|
MD5 | c1a09d787309a0b95d3a5a8a72dcbfa3 |
|
BLAKE2b-256 | e6e1a12293d0c5c52b5fa30a3a69da9a0f756fff647ed3acd5900aac1e0fb031 |