Metadata-Version: 2.4
Name: custombox
Version: 0.1.2
Summary: Custom tkinter dialog box with flexible buttons and commands
Home-page: 
Author: Kiavash Nourafshan
Author-email: kianour9@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

hello and welcome to the custombox module, in this module you can add custom messages
with custom commands and buttons, so your not forced on only "Ok", "Cancel", "Yes", "No"
and the others, you can put it custom example

import custombox

def hello_world():
print("Hello from a custom command!")

show_custombox(
title="my custom title",
message="my custom text",
buttons=[
{"text": "Say Hello", "command": hello_world},
{"text": "Download tismiy", "command": "download_tismiy"}
],
use_enhancer=False
)

also download tismiy at https://scratch.mit.edu/projects/1103965827/fullscreen/ for FREE
