Metadata-Version: 2.4
Name: easy-modal
Version: 1.0.0
Summary: A library for easily implementing dialog boxes and file pickers.
Author-email: Keisuke Magara <61485115+kei-mag@users.noreply.github.com>
License: MIT License
        
        Copyright (c) 2025 Keisuke Magara
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Source, https://github.com/kei-mag/python-easy-modal
Keywords: dialog box,file picker,modal,gui,tui,cui,tkinter
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# easy-modal
[![PyPI - Version](https://img.shields.io/pypi/v/easy-modal.svg)](https://pypi.org/project/easy-modal)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/easy-modal.svg)](https://pypi.org/project/easy-modal)

コマンドラインに不慣れなユーザーでも直感的に操作できるよう、ファイル選択、メッセージ表示、簡単な入力などの機能を提供するシンプルなGUIライブラリです。


## **ユーザーフレンドリーな入力**と**迅速なスクリプト開発**の両立
GUI版はTkinterのラッパーライブラリとなっており、Tkinterの記法やウィンドウ描画等の知識ゼロでも1行でモーダルを表示できるようになっています。

TUI版ではGUI版の一部モーダルが実装されており、ASCII文字列で分かりやすいウィンドウ風ダイアログボックスを表示します。

## ライセンス
MIT LICENSEを使用しています。

このライブラリ自体は標準ライブラリ+1ファイルで完結する仕様となっているため、pipでインストールしなくても直接ファイルを開発中のソースフォルダに入れることで機能します。  
[GUI版](src/easy_modal/gui.py)と[TUI版](src/easy_modal/tui.py)のうち、必要なソースファイルだけを直接ダウンロードして、ドロップインでお使いいただくことも可能です。


## 使い方
>[!NOTE]
>ドキュメント作成予定
