A simple Python desktop application for searching Wikipedia articles using PyQt6.
- Clean, modern GUI interface
- Real-time Wikipedia article search
- Configurable result limits (5-20 articles)
- Direct article links that open in browser
- Cross-platform compatibility
- Python 3.7+
- pip package manager
- Clone the repository:
git clone <repository-url>
cd simple-python-gui- Install dependencies:
pip install -r requirements.txtpython src/app.pyTo create a standalone application:
# Install PyInstaller (included in requirements.txt)
python -m PyInstaller WikiSearch.spec
# The executable will be in the dist/ folder# Install create-dmg
brew install create-dmg
# Run the build script
./build.sh- Launch the application
- Enter your search term in the text field
- Select number of results (5-20)
- Click "Search" or press Enter
- Click "Open" links to view articles in your browser
src/app.py- Main application codeexamples/- Sample GUI implementationsrequirements.txt- Python dependenciesWikiSearch.spec- PyInstaller configuration