Delete .venv directory
This commit is contained in:
committed by
GitHub
parent
7795984d81
commit
5a2693bd9f
@@ -1 +0,0 @@
|
||||
pip
|
@@ -1,54 +0,0 @@
|
||||
Metadata-Version: 2.1
|
||||
Name: PyMsgBox
|
||||
Version: 1.0.9
|
||||
Summary: A simple, cross-platform, pure Python module for JavaScript-like message boxes.
|
||||
Home-page: https://github.com/asweigart/pymsgbox
|
||||
Author: Al Sweigart
|
||||
Author-email: al@inventwithpython.com
|
||||
License: GPLv3+
|
||||
Platform: UNKNOWN
|
||||
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
||||
Classifier: Programming Language :: Python
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Programming Language :: Python :: 3.4
|
||||
Classifier: Programming Language :: Python :: 3.5
|
||||
Classifier: Programming Language :: Python :: 3.6
|
||||
Classifier: Programming Language :: Python :: 3.7
|
||||
Classifier: Programming Language :: Python :: 3.8
|
||||
Classifier: Programming Language :: Python :: 3.9
|
||||
Description-Content-Type: text/markdown
|
||||
|
||||
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/
|
||||
|
||||
|
@@ -1,9 +0,0 @@
|
||||
PyMsgBox-1.0.9.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
PyMsgBox-1.0.9.dist-info/METADATA,sha256=0N7nL-Vq_lJ66WwzrLO74E2HXHmU6IYHeSzCSeM3Dbw,2018
|
||||
PyMsgBox-1.0.9.dist-info/RECORD,,
|
||||
PyMsgBox-1.0.9.dist-info/WHEEL,sha256=ewwEueio1C2XeHTvT17n8dZUJgOvyCWCt0WVNLClP9o,92
|
||||
PyMsgBox-1.0.9.dist-info/top_level.txt,sha256=VhumxHbRDo-rZSH_txL41DQO4DCaSDI0lz2AIhwUHbk,9
|
||||
pymsgbox/__init__.py,sha256=D4l1pYmGFA3EntYjXi3Dnvp5X6GdKGYoh8xE89o4pSQ,14576
|
||||
pymsgbox/__pycache__/__init__.cpython-39.pyc,,
|
||||
pymsgbox/__pycache__/_native_win.cpython-39.pyc,,
|
||||
pymsgbox/_native_win.py,sha256=xkiHYS0w3Zc6N3r93bdB6IJWuPHKIsThOC59Tw1Bexk,5079
|
@@ -1,5 +0,0 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: bdist_wheel (0.37.0)
|
||||
Root-Is-Purelib: true
|
||||
Tag: py3-none-any
|
||||
|
@@ -1 +0,0 @@
|
||||
pymsgbox
|
Reference in New Issue
Block a user