Metadata-Version: 1.0
Name: accessible_output
Version: 0.4.5
Summary: Library to provide speech and braille output to a variety of different screen readers and other accessibility solutions.
Home-page: http://www.qwitter-client.net
Author: Christopher Toth
Author-email: q@qwitter-client.net
License: UNKNOWN
Description: =====================================================
        The accessible_output library
        =====================================================
        
        :Author: Christopher Toth <Q@Qwitter-Client.net>
        :Date: $Date: 05-04-2010 23:42:00 -0500 (Tue, May 4, 2010)
        :Web site: http://www.qwitter-client.net/
        :Copyright: 2010
        
        
        .. contents::
        
        ============
        Introduction
        ============
        
        Accessible Output provides a standard way for developers to output text in either speech or braille using a preinstalled screen reader.  Using accessible_output makes creating self-voicing applications extremely easy.
        
        ===========
        Basic Usage
        ===========
        Using accessible output is extremely simple::
        
        #!/usr/bin/env python
        from accessible_output import speech
        s = speech.Speaker() #Will load the default speaker.
        s.output("The message to speak")
        
        ==============
        Speech Outputs
        ==============
        
        * JAWS for Windows
        * Window Eyes
        * NVDA
        * System Access and System Access To Go
        * Microsoft sapi 5 speech
        
        
        ===============
        Braille Outputs
        ===============
        
        
        * JAWS for Windows
        * Window Eyes
        * NVDA
        * System Access and System Access To Go
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Adaptive Technologies
Classifier: Topic :: Software Development :: Libraries
