Skip to content

xxRonaldxx/pywiz

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pywiz

python PyQt5 wizard module used to display a sequence of pages in a dialog box to help guide a user through a step by step process.

Latest PyPI version [License: MIT]

Initially, I used a python script containing a series of message boxes to walk through updating an excel spreadsheet done on a monthly basis. This module enabled me to replace each of my msgbox(title,text) functions with an addPage(title, text) function, easily modifying the scripts to use the PyQt5 QWizard class.

Requires PyQt5

Usage example:

>>>> import pywiz

>>>> pywiz.setWizardTitle(“Your first wizard”)

>>>> pywiz.addPage(“wizard page 1 title”, ”wizard page 1 text”)
>>>> pywiz.addPage(“wizard page 2 title”, ”wizard page 2 text”)
>>>> pywiz.addPage(“wizard page 3 title”, ”wizard page 3 text”)
     . . .

>>>> pywiz.runWizard()

Installation:

From PyPI: Get the latest version of the pywiz package using pip:

pip install pywiz

From code: Download/clone the project, go to pywiz folder that contains setup.py then:

  • You can use setup script and pip install.

    pip install .
  • Or, you can use the setup script with python:

    python setup.py install

Releases

No releases published

Packages

No packages published

Languages