Skip to content

Update README.md #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# wxPython in Action
# wxPython - An Amazing alternative to regular Tkinter, is now in action

[wxPython](http://www.wxpython.org/) is a Python extension library for developing cross platform GUI. It is an alternative to other GUI development toolkits like [PyQt](https://riverbankcomputing.com/software/pyqt/intro), [Tkinter](https://docs.python.org/2/library/tkinter.html) etc. This repostiory contains a variety of code examples for developing different GUI elements with wxPython.

## Usage
## Usage :-
Below simple module demonstrantes creation of two main objects in wxPython which are the main window object and the application object, followed by passing the control to the event-driven system by calling `MainLoop()` which manages the user-interactive part of the program.

```python
Expand All @@ -19,7 +19,7 @@ app = App()
app.MainLoop()
```

## Download
## Download :-
Download or fork the repository

```sh
Expand All @@ -30,8 +30,10 @@ or
wget https://github.com/ubbn/wxPython/archive/master.zip
```

## Disclosure
## Disclosure :-

Those original code examples are found in a book [wxPython in Action](http://www.amazon.com/Wxpython-Action-Noel-Rappin/dp/1932394621) authored by [Noel Rappin](https://www.amazon.com/Noel-Rappin/e/B002BLQ488) who is a senior developer and agile Coach at Table XI. Noel has authored multiple technical books, including **Rails 4 Test Prescriptions**, **Master Space and Time With JavaScript**, **Trust-Driven Development** and several more. If you like those example codes, I encourage you to buy his book [wxPython in Action](http://www.amazon.com/Wxpython-Action-Noel-Rappin/dp/1932394621). Contact with him on his [website](http://www.noelrappin.com/) or follow him on [twitter](https://twitter.com/noelrap).

DISCLAIMER: _I am not affiliated with either Noel Rappin or the sales of this book._

## Thank You!