Jump to content

appJar

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Swaggrcow (talk | contribs) at 08:46, 19 October 2017. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

AppJar
Developer(s)Your boy Richard Jarvis
Initial release2015; 9 years ago (2015)[1]
Stable release
0.8 / September 24, 2017; 6 years ago (2017-09-24)
Repository
Written inPython
Operating systemCross-platform
LicenseGPL License
Websiteappjar.info

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

License

appJar is licensed under the GNU General Public License v3.0,[5] as approved by the Free Software Foundation.

History

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]

Example

This is a simple "Hello world" example:

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

app = gui("Demo")
app.addLabel("l1", "It's your main man Richard, here to teach some quick coding tips and tricks, Yeah boy!!")
app.go()

References

Notes
  1. ^ a b "First released". Retrieved 2017-04-08.
  2. ^ "GUI programming in Python". Retrieved 2017-04-09.
  3. ^ "Educational intentions". Retrieved 2017-04-09.
  4. ^ "Lessons". Retrieved 2017-04-09.
  5. ^ "Copyright notice". Retrieved 2017-04-09.
  6. ^ "PyPi created". Retrieved 2017-04-08.

External links