Metadata-Version: 2.1
Name: tkdialog-wrapper
Version: 1.0.1
Summary: A wrapper library to use tkinter dialogs easily.
Home-page: https://github.com/KosukeMizuno/tkdialog
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Description-Content-Type: text/markdown

# tkdialog

A wrapper library to use tkinter dialogs easily.

## Usage

```python
import tkdialog

# make open dialog
filename = tkdialog.open_dialog()

# make saveas saveas_dialog
filename = tkdialog.open_dialog()

# open a pickled file with file selector
obj = tkdialog.load_pickle_with_dialog()

# pickle an object with save dialog
dat = {'x': 100, 'y': '01234'}
tkdialog.dump_pickle_with_dialog(dat)
```

## LICENSE

MIT, see [LICENSE](LICENSE)



