Skip to main content

Hassle free PySide forms.

Project description

Documentation Status Latest Version

psforms

Hassle free PySide forms.

from psforms import (Form, IntField, StringField,
                     StringOptionField, BoolField)


class MyForm(Form):
    '''My amazing form, useful in many scenarios.'''

    title = 'My Form'
    int_field = IntField('Integer Value')
    str_field = StringOptionField('String Value', options=['A', 'B', 'C'])
    bool_field = BoolField('Boolean Value')
    strb_field = StringField('String Value B')


myform_dialog = MyForm.as_dialog()
if myform_dialog.exec_():
    print dialog.get_value()

Features

  • Easy Form creation

  • Parent forms to your own window or use them as their own stand alone dialog

  • Unified api for all standard PySide input widgets

Get psforms

You can install psforms using pip:

pip install psforms

or you can use setuptools:

git clone git@github.com/danbradham/psforms.git
cd psforms
python setup.py install

Documentation

For more information visit the docs.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

psforms-0.4.1.zip (435.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page