Skip to content

Commit 42aba2d

Browse files
Merge pull request #1501 from gerrishons/patch-1
Create README.md
2 parents e247f64 + 9582eeb commit 42aba2d

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

dialogs/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[Quo](https://pypi.org/project/quo) ships with a high level API for displaying dialog boxes to the user for informational purposes, or get input from the user.

dialogs/messagebox.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Use the MessageBox() function to display a simple message box.
2+
3+
from quo.dialog import MessageBox
4+
5+
MessageBox(
6+
title='Example dialog window',
7+
text='Do you want to continue?')

0 commit comments

Comments
 (0)