Metadata-Version: 1.1
Name: pycogworks.gui
Version: 0.4.0
Summary: GUI functions used in the CogWorks lab.
Home-page: https://github.com/CogWorks/PyCogWorks
Author: Ryan Hope
Author-email: rmh3093@gmail.com
License: GPL-3
Description: Installation
        ============
        ``pycogworks.gui`` can be installed with 'pip':
        ::
        
          # pip install pycogworks.gui
          
        Dependencies
        ============
        ``pycogworks.gui`` has the following dependencies:
        
        - `PySide <http://qt-project.org/wiki/PySideDownloads>`_
        
        Documentation
        =============
        
        pycogworks.gui.getSubjectInfo
        -----------------------------
        Creates a GUI dialog to collect subject information. The default dialog collects subjects
        first name, last name and RIN. Additional fields can be collected by passing an array
        of field names to ``getSubjectInfo``. ``getSubjectInfo`` returns a dict of subject information
        where the keys are the field names converted to lower case and spaces replaced with underscores.
        The RIN field is automatically encrypted using ``pycogworks.rin2id`` and stored in the 'encrypted_rin' field.
        ::
        
          >>> getSubjectInfo(["Age"])
          {'rin': u'123456789', 'first_name': u'Foo', 'last_name': u'Bar', 'age': u'18'}
          
        .. image:: http://ompldr.org/vZm5ldw
        
        pycogworks.gui.doQuestionnaire
        ------------------------------
        THIS NEED DOCUMENTATION AND AN EAMPLE!!!
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Utilities
Classifier: Environment :: X11 Applications :: Qt
