PyMsgBox · PyPI 您所在的位置:网站首页 pyscreeze库下载 PyMsgBox · PyPI

PyMsgBox · PyPI

2024-06-27 02:26| 来源: 网络整理| 查看: 265

PyMsgBox

A simple, cross-platform, pure Python module for JavaScript-like message boxes.

To import, run:

>>> from pymsgbox import *`

There are four functions in PyMsgBox, which follow JavaScript's message box naming conventions:

>>> alert(text='', title='', button='OK')` Displays a simple message box with text and a single OK button. Returns the text of the button clicked on. >>> confirm(text='', title='', buttons=['OK', 'Cancel'])` Displays a message box with OK and Cancel buttons. Number and text of buttons can be customized. Returns the text of the button clicked on. >>> prompt(text='', title='' , defaultValue='')` Displays a message box with text input, and OK & Cancel buttons. Returns the text entered, or None if Cancel was clicked. >>> password(text='', title='', defaultValue='', mask='*')` Displays a message box with text input, and OK & Cancel buttons. Typed characters appear as *. Returns the text entered, or None if Cancel was clicked.

On Linux Python 2, you need to first install Tkinter by running: sudo apt-get install python-tk

Modified BSD License

Derived from Stephen Raymond Ferg's EasyGui http://easygui.sourceforge.net/



【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有