Metadata-Version: 2.4
Name: guiml
Version: 0.2.0
Summary: An xml based GUI framework with property binding and dependency injection.
Project-URL: Homepage, https://github.com/StephanGocht/guiml
Project-URL: Issues, https://github.com/StephanGocht/guiml/issues
Project-URL: Documentation, http://guiml.readthedocs.io/
Author-email: Stephan Gocht <gocht@mailbox.org>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Requires-Dist: cairocffi
Requires-Dist: pangocairocffi
Requires-Dist: pangocffi
Requires-Dist: pycairo
Requires-Dist: pyglet
Requires-Dist: pygobject
Requires-Dist: pyyaml
Description-Content-Type: text/markdown

[![Documentation Status](https://readthedocs.org/projects/guiml/badge/?version=latest)](https://guiml.readthedocs.io/en/latest/?badge=latest)

guiml
=====

A simple to use GUI framework for python. You define what you want and the
framework does the rest. You build the UI out of components that are defined
using XML as markup language. The markup language allows you to interact with
your python code via variable binding, callbacks and the use of control flow
primitives. To help you with organizing your application, the framework
allows you to nicely compose components and comes with automated dependency
injection. (You know vue.js or angular from web development? Something like
that.)

Ever wondered why so many GUIs nowadays seem to be written with a HTTP/CSS/JS
front end, even for desktop (e.g. via electron)? How is that the easiest way
of designing modern GUIs? Some things in web front end development are nice
and shiny, like live inspection and editing of styles, reactive variable
bindings, defining components and the UI in a nice markup language, allow
control flow in the markup language, have automatic dependency injection...

Can't we have all these nice things but in python? And without the hassle of a
client-server architecture and java script?

This project is a case study where I try to figure out and build the GUI
framework that I would want to use. To not have to deal with legacy issues of
other GUI frameworks, this project starts quite low level using pyglet as
window engine and to deal with IO, cairo for drawing and pango for text
setting and librsvg for svg drawing. Everything else is build from scratch.

Current state
-------------

The current state is a proof of concept. It should work on the examples, but
is other wise terribly tested, barely documented and probably throws
non-sensical error messages at you when you do something wrong. The API is
unstable.

Dokumentation
-------------

The dokumentation and a small tutorial can be found at
[guiml.readthedocs.io](https://guiml.readthedocs.io/en/latest/).


Installation
============

Step 1) Install non Python Dependencies
---------------------------------------

### Debian/ Ubuntu / Windows with WSL2 + Debian

Install external requirenments (to access librsvg, cairo, pango from python)

    sudo apt install libgirepository2.0-dev librsvg2-dev libcairo2-dev python3-gi-cairo

If you run into problems with installing the dependencies, you can check out
the links in the Other section below.

### Other (Windows Native / Mac / Other Linux Distributions)

For Windows it is recommended to use Debian on WSL2 ([Instructions](https://wiki.debian.org/InstallingDebianOn/Microsoft/Windows/SubsystemForLinux))
once on the Debian command line you can follow the normal Debian instructions
for installing this package.

If you are not on a debian derivate, then installation should in principle be
possible if you are sufficiently brave and smart, but you will have to figure
it out yourself. Here are some links to the dependencies that might be
helpfull.

You will need [pygobject](https://pygobject.readthedocs.io/en/latest/getting_started.html)
with cairo and librsvg.

Check how to install [cairocffi](https://doc.courtbouillon.org/cairocffi/stable/overview.html#installing-cffi)
and [pangocffi](https://pangocffi.readthedocs.io/en/latest/overview.html) on
their respective sites.

Step 2a) Installation from source
---------------------------------

It is recommended to use the latest version of pip and setuptools.

    pip install -U pip setuptools

You can install the project from source via

    git clone https://github.com/StephanGocht/guiml.git
    cd guiml
    pip install -e .

After installation (or just installing the packages from requirements.txt) you
can run the examples from the guiml folder to confirm everything is working.
For the todo list example run

    python3 -m examples.todolist

To update to the latest version, run

    git pull


Step 2b) Installation from PyPi
-------------------------------

    pip install guiml


Misc
====

License
-------

You can use `find . -name LICENSE` to collect all used licenses. The license
applies to all files in the contained directory or subdirectories.(Except for
directories that have their own LICENSE). Which should currently be as
follows.

    ./LICENSE (MIT)
    ./guimlcomponents/base/cairocffi_to_pycairo/LICENSE (BSD-3)
    ./examples/todolist/resources/material-design-icons/LICENSE (Apache-2)

Examples are not included in builds.

Related Work
------------

You can find more boradly used GUI frameworks on
[awesome-python](https://github.com/vinta/awesome-python#gui-development).

See also:

[collgraph](https://github.com/fork-tongue/collagraph)

> Write your Python interfaces in a declarative manner with plain render
> functions, component classes or even single-file components using Vue-like
> syntax, but with Python!
