Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/amol-mandhane/htmlPy

htmlPy is a wrapper around PySide's QtWebKit library. It helps with creating beautiful GUIs using HTML5, CSS3 and Javascript for standalone Python applications.
https://github.com/amol-mandhane/htmlPy

css gui html javascript python

Last synced: 3 months ago
JSON representation

htmlPy is a wrapper around PySide's QtWebKit library. It helps with creating beautiful GUIs using HTML5, CSS3 and Javascript for standalone Python applications.

Awesome Lists containing this project

README

        

htmlPy


HTML5-CSS3-Javascript based GUI library in Python













htmlPy is a wrapper around PySide's QtWebKit library. It helps with creating beautiful GUIs using HTML5, CSS3 and Javascript for standalone Python applications. It is built on Qt which makes it highly customizable and cross-platform. htmlPy is compatible with both Python2 and Python3. It can be used with any python library or environment like django, flask, scipy, virtualenv etc. You can use front-end libraries and frameworks like bootstrap, jQuery, jQuery UI etc. and create GUIs for your applications in no time.

Documentation


The documentation is hosted at http://htmlpy.readthedocs.org/. It contains installation instructions, tutorials, reference guide, compatibility details, and more.

Example



Back-end
back_end.py




import htmlPy

class BackEnd(htmlPy.Object):

def __init__(self, app):
super(BackEnd, self).__init__()
self.app = app

@htmlPy.Slot()
def say_hello_world(self):
self.app.html = u"Hello, world"




GUI
main.py




import htmlPy
from back_end import BackEnd

app = htmlPy.AppGUI(
title=u"Sample application")
app.maximized = True
app.template_path = "."
app.bind(BackEnd(app))

app.template = ("index.html", {})

if __name__ == "__main__":
app.start()



Front-end
index.html




<html>
<body>
<a
href="BackEnd.say_hello_world"
data-bind="true">
Click to say "Hello, world"
</a>
</body>
</html>


Code


htmlPy source code is hosted on GitHub, tested on Travis CI and released on PyPI.