Metadata-Version: 1.1
Name: webuntis
Version: 0.1.7
Summary: Bindings for WebUntis API
Home-page: http://dev.unterwaditzer.net/python-webuntis/
Author: Markus Unterwaditzer
Author-email: markus@unterwaditzer.net
License: new-style BSD
Description: ===============
        python-webuntis
        ===============
        
        Bindings for WebUntis API
        =========================
        
        ::
        
            import webuntis
        
            s = webuntis.Session(
                username='api',
                password='api',
                server='webuntis.grupet.at:8080',
                school='demo_inf'
            ).login()
        
            for klasse in s.klassen():
                print(klasse.name)
        
        `read more... <http://dev.unterwaditzer.net/python-webuntis/>`_
        
        Installation
        ============
        
        Latest version (this is the normal way)
        +++++++++++++++++++++++++++++++++++++++
        
        ::
        
            pip install webuntis
        
        
        Development
        ===========
        
        Installing Development Dependencies
        +++++++++++++++++++++++++++++++++++
        
        A `virtualenv <http://www.virtualenv.org/>`_ is recommended::
        
            $ pip install -r dev_requirements.txt
        
        
        Unittests
        +++++++++
        
        ::
        
            $ nosetests
        
        For the single testsuites and their descriptions, look at the docstrings of the
        modules in ``webuntis.tests``.
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: Implementation :: PyPy
