Hubbry Logo
AppJarAppJarMain
Open search
AppJar
Community hub
AppJar
logo
7 pages, 0 posts
0 subscribers
Be the first to start a discussion here.
Be the first to start a discussion here.
AppJar
from Wikipedia
AppJar
DeveloperRichard Jarvis
Initial release2015; 10 years ago (2015)[1]
Stable release
0.94 / May 26, 2019; 6 years ago (2019-05-26)
Repository
Written inPython
Operating systemCross-platform
LicenseApache License v2.0[2]
Websiteappjar.info

appJar is a cross-platform Python library for developing GUIs (graphical user interfaces).[3] It can run on Linux, OS X, and Windows. It was conceived, and continues to be developed with educational use as its focus,[4] so is accompanied by comprehensive documentation, as well as easy-to-follow lessons.[5]

License

[edit]

appJar is licensed under the Apache License v2.0.[2]

History

[edit]

appJar was originally envisaged as a simple wrapper around tkinter, to allow secondary school pupils to develop simple graphical user interfaces in Python. It was meant to hide away the complexity, so that pupils could focus on writing algorithms, without having to worry about how to position widgets and link to functions. It was started out in the winter of 2014, as a simple in-house project, but soon started to grow. It was published to GitHub on July 31, 2015,[1] and first added to the PyPi repository on 20 December 2016.[6] In June 2017, appJar was featured in an article in The MagPi, detailing how it could be used to interact with Minecraft.[7]

Example

[edit]

This is a simple "Hello world" example:

#!/usr/bin/env python3
from appJar import gui

app = gui("Demo")
app.addLabel("l1", "Hello World")
app.go()

The above example is getting even simpler in the 1.0 release (available in beta in the 0.9 release):

#!/usr/bin/env python3
from appJar import gui

with gui("Demo") as app:
    app.label("Hello World")

References

[edit]
[edit]
Revisions and contributorsEdit on WikipediaRead on Wikipedia
Add your contribution
Related Hubs
User Avatar
No comments yet.