Metadata-Version: 1.0
Name: webuntis
Version: 0.1.3
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
        
        From latest commit in master
        ++++++++++++++++++++++++++++
        
        ::
        
            git clone git://github.com/untitaker/python-webuntis.git
            cd python-webuntis
            python setup.py install
        
        If you want to remove the -dev flag in the version for whatever reason, replace the last line with::
        
            python setup.py release install
        
Platform: UNKNOWN
