Skip to main content

Make Tkinter apps in an easy way using JSON.

Project description

EasyTk

Create Tkinter applications with help of JSON!

test = EasyTkObject()
test.create_root()
test.open_file("json/test.json")
test.reading_from_json()
test.start_root()

Installation

If you don't have tkinter installed in your environment,install it:

pip install tkintertable

then install this package.

pip install easy-tk

Usage

JSON strucuture:
{
...,
  "Frame1": {
    "layout": "grid",
    "methods": ["confirm_click","add_click","set.."],
    "master": "FrameContainer",
    "config": {"config_key":"config_value","config_key":"var:something"},
    "grid": {"sticky": "NSEW"},
    "newRow": false
  },...
}

You start with name of widget,for example: Frame1:{...},"LabelUsername":{...},"ButtonConfirm":{...},...

layout - you can use grid or pack or place "layout":"grid" or "layout:"pack"

methods - inside this list you can include names of methods that you will use,this is explained in Python part

master - to which master does this widget belong,be aware of which layout manager is used and that master exists

config - for example: "config":{"text":"TEST"} or if you imported your variables then just call "config":{"some_key":"var:something"}

grid - if you decided to use grid as layout then fill this with proper data,you don't have to include row and column,for example: "Button1":{...},Button2":{...},Button3":{..., "newRow":true },

Button1 is on row=0,column=0,Button2 is on row=0,column=1 and Button3 is on _row=1_,column=0. But you can also include row and column if you want. With that in mind,next column is from place where you /didn't/ specified column.

pack - if layout is pack then include here attributes,or leave it blank.

If you use pack then it's necessary to include it in JSON object even if you don't have any value. For example:

...,
"Canvas": {
    "master": "Frame0",
    "layout": "pack",
    "pack": {"side":"left", "fill":"both", "expand":true},
    "config": {},
    "methods": [1]
  },
"Scrollbar": {
    "master": "Frame0",
    "layout": "pack",
    "pack": {},
    "config": {"orient": "vertical"},
    "methods": [2]
},
...

Both widgets work. And same applies to grid.

newRow - if layout is grid then use boolean value.

Python
from easy_tk import EasyTkObject

This class has all methods you need for "converting" JSON to Tkinter app. EasyTkObject mainly use EasyTk methods but in different way. You can override them.

  • create_root()
  • get(name,obj=True)- getting object of one widget if obj were False then you will get EasyTkChild object
  • import_methods(methods={}) - put all your methods in dict and then just call that method in json list. ...,"methods":["on_check_btn","set_style_btns","exit_app",...]
  • import_modules(modules={}) - put all your modules here,you can include your own widgets,default is this ["Frame","Entry","Button","Label","Separator","Radiobutton","Canvas","Scrollbar"],you can extend it
  • import_variables(variables={}) - include only variables that you need for config,call them with "var:some_key"
  • open_file(file) - setting your json file EasyTk
  • reading_from_json() - adding every widget to screen,applying all config values,calling all methods you included
  • add_just_one(file,key) - adding just one widget from json(again be sure that master there exist),for example add_just_one("json/test.json","Canvas5")
  • easy_factory() - factory for EasyTk object
Other info

On github you can find helpers folder,there is shortcut for adding scrollbar in your entire window. In future I will add more of them that you can use.

Examples of usage

football-video-editor-python

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

easy_tk-1.0.5.1.tar.gz (8.6 kB view details)

Uploaded Source

Built Distribution

easy_tk-1.0.5.1-py3-none-any.whl (8.4 kB view details)

Uploaded Python 3

File details

Details for the file easy_tk-1.0.5.1.tar.gz.

File metadata

  • Download URL: easy_tk-1.0.5.1.tar.gz
  • Upload date:
  • Size: 8.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.5

File hashes

Hashes for easy_tk-1.0.5.1.tar.gz
Algorithm Hash digest
SHA256 c958145ce77fb2798d8ede02f329e51a85b0c26b4eee2ea8e82be7865506a2ef
MD5 7d1512757b3c9fe9aa7759193aaa748f
BLAKE2b-256 9817187c6057188227bf5b72d6d6705728eb768dfd6d2e5c3fdd3105a3571a7b

See more details on using hashes here.

File details

Details for the file easy_tk-1.0.5.1-py3-none-any.whl.

File metadata

  • Download URL: easy_tk-1.0.5.1-py3-none-any.whl
  • Upload date:
  • Size: 8.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.5

File hashes

Hashes for easy_tk-1.0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e9f05ededc9ffa44a7d0864321513c2e47d6c8d6820d1ff298f2183a969f1f80
MD5 f7b30dad58993419118783179ea5280c
BLAKE2b-256 54dd7a31c892c2da7d1d87bee02b7e38fa7c27ac8e4c66e20e1d969adfe6f264

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page