All Projects → ubbn → Wxpython

ubbn / Wxpython

Python GUI programming examples

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Wxpython

CourseDownloader
GUI app for downloading whole online courses with folder structure from one url
Stars: ✭ 20 (-91.8%)
Mutual labels:  wxpython
Infospider
INFO-SPIDER 是一个集众多数据源于一身的爬虫工具箱🧰,旨在安全快捷的帮助用户拿回自己的数据,工具代码开源,流程透明。支持数据源包括GitHub、QQ邮箱、网易邮箱、阿里邮箱、新浪邮箱、Hotmail邮箱、Outlook邮箱、京东、淘宝、支付宝、中国移动、中国联通、中国电信、知乎、哔哩哔哩、网易云音乐、QQ好友、QQ群、生成朋友圈相册、浏览器浏览历史、12306、博客园、CSDN博客、开源中国博客、简书。
Stars: ✭ 5,984 (+2352.46%)
Mutual labels:  wxpython
Winpdb
Fork of the official winpdb with improvements
Stars: ✭ 75 (-69.26%)
Mutual labels:  wxpython
Gimel-Studio
Old repo of the node-based image editor. See https://github.com/GimelStudio/GimelStudio for the next generation of Gimel Studio 🚀
Stars: ✭ 55 (-77.46%)
Mutual labels:  wxpython
Atbswp
A minimalist macro recorder
Stars: ✭ 361 (+47.95%)
Mutual labels:  wxpython
Youtube Dl Gui
A cross platform front-end GUI of the popular youtube-dl written in wxPython.
Stars: ✭ 7,914 (+3143.44%)
Mutual labels:  wxpython
Noethys
Noethys, le logiciel de gestion multi-activités
Stars: ✭ 26 (-89.34%)
Mutual labels:  wxpython
Wxpython Tutorial
wxPython 中文简明教程
Stars: ✭ 155 (-36.48%)
Mutual labels:  wxpython
Easyavr
Easy AVR USB Keyboard Firmware and Keymapper
Stars: ✭ 479 (+96.31%)
Mutual labels:  wxpython
Pyface
pyface: traits-capable windowing framework
Stars: ✭ 71 (-70.9%)
Mutual labels:  wxpython
pytips
Python Tips contains code snippets that will help you learn Python
Stars: ✭ 179 (-26.64%)
Mutual labels:  wxpython
Crypter
Crypter - Python3 based builder and ransomware compiled to Windows executable using PyInstaller
Stars: ✭ 268 (+9.84%)
Mutual labels:  wxpython
Nodemcu Pyflasher
Self-contained NodeMCU flasher with GUI based on esptool.py and wxPython.
Stars: ✭ 948 (+288.52%)
Mutual labels:  wxpython
esphome-flasher
Simple GUI tool to flash ESPs over USB
Stars: ✭ 619 (+153.69%)
Mutual labels:  wxpython
Pyfa
Python fitting assistant, cross-platform fitting tool for EVE Online
Stars: ✭ 1,204 (+393.44%)
Mutual labels:  wxpython
OOMMFTools
OOMMFTools is a set of utilities designed to assist OOMMF postprocessing
Stars: ✭ 15 (-93.85%)
Mutual labels:  wxpython
Skillbox Chat 08 19
Skillbox demo application for the Python course
Stars: ✭ 25 (-89.75%)
Mutual labels:  wxpython
Dicompyler
Extensible radiation therapy research platform and viewer for DICOM and DICOM RT
Stars: ✭ 195 (-20.08%)
Mutual labels:  wxpython
Phoenix
wxPython's Project Phoenix. A new implementation of wxPython, better, stronger, faster than he was before.
Stars: ✭ 1,698 (+595.9%)
Mutual labels:  wxpython
Wxpython Examples
Source code examples from the ZetCode's wxPython tutorial
Stars: ✭ 60 (-75.41%)
Mutual labels:  wxpython

wxPython in Action

wxPython is a Python extension library for developing cross platform GUI. It is an alternative to other GUI development toolkits like PyQt, Tkinter etc. This repostiory contains a variety of code examples for developing different GUI elements with wxPython.

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.

#!/usr/bin/env python
import wx

class App(wx.App):
    def OnInit(self):
        frame = wx.Frame(parent=None, title='Bare')
        frame.Show()
        return True

app = App()
app.MainLoop()

Download

Download or fork the repository

git clone https://github.com/ubbn/wxPython.git

or

wget https://github.com/ubbn/wxPython/archive/master.zip

Disclosure

Those original code examples are found in a book wxPython in Action authored by Noel Rappin 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. Contact with him on his website or follow him on twitter.

  • These files and scripts are not intended for malicious purposes DISCLAIMER: I am not affiliated with either Noel Rappin or the sales of this book.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].