https://github.com/tdholmes/ttksimpledialog
A port of tkSimpleDialog, but using ttk
https://github.com/tdholmes/ttksimpledialog
python python3 tkinter tkinter-python
Last synced: 3 months ago
JSON representation
A port of tkSimpleDialog, but using ttk
- Host: GitHub
- URL: https://github.com/tdholmes/ttksimpledialog
- Owner: TDHolmes
- License: mit
- Created: 2020-08-16T03:26:56.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-16T04:16:21.000Z (almost 5 years ago)
- Last Synced: 2025-03-01T20:09:19.718Z (4 months ago)
- Topics: python, python3, tkinter, tkinter-python
- Language: Python
- Homepage: https://pypi.org/project/ttkSimpleDialog/
- Size: 11.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
ttkSimpleDialog
===============This module allows the developer to use simple dialog boxes such as
- askint: ask the user for an integer
- askfloat: ask the user for a float
- askstring: ask the user for a stringExample
-------from ttkSimpleDialog import ttkSimpleDialog
user_response = ttkSimpleDialog.askinteger(title="hello", prompt="Enter a number")
Please note you must call it using the `from __ import __` syntax!