Metadata-Version: 2.1
Name: tkdialog-wrapper
Version: 2.0.0
Summary: A wrapper library to use tkinter dialogs easily.
Home-page: https://github.com/KosukeMizuno/tkdialog
License: MIT
Description: # tkdialog-wrapper
        
        A wrapper library to use tkinter dialogs easily.
        
        [![PyPI version](https://badge.fury.io/py/tkdialog-wrapper.svg)](https://badge.fury.io/py/tkdialog-wrapper) [![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE)
        
        ## Usage
        
        `pip install tkdialog-wrapper`
        
        ```python
        import tkdialog
        
        # make open dialog
        filename = tkdialog.open_dialog()
        
        # make saveas dialog
        filename = tkdialog.open_dialog()
        
        # open a pickled file with a dialog
        obj = tkdialog.load_pickle_with_dialog()
        
        # pickle an object with a dialog
        dat = {'x': 100, 'y': '01234'}
        tkdialog.dump_pickle_with_dialog(dat)
        
        # with numpy
        dat = np.load(tkdialog.open_dialog('.npz'))
        
        # with pandas
        df = pd.read_csv(tkdialog.open_dialog('.csv'))
        ```
        
        ## Change log
        ### [2.0.0]
        - breaking changes:
          - supported python version >= 3.5
          - argument of all functions
          - add docstring
          - add typehint
        
        ### [1.x]
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Requires-Python: >=3.5
Description-Content-Type: text/markdown
