FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [View Raw Code]   [Original HTTPS Page]

python-webuntis/docs/index.rst at master · python-webuntis/python-webuntis · GitHub

Latest commit

 

History

History
52 lines (37 loc) · 926 Bytes

File metadata and controls

52 lines (37 loc) · 926 Bytes

Bindings for WebUntis

Author: Markus Unterwaditzer
Version: |release|
Project Page:on GitHub
License::doc:`new-style BSD <license>`

python-webuntis is a package for the API of WebUntis, a timetable system used for schools all around Europe. It is compatible with Python >= 2.6 and Python >= 3.3:

import webuntis

s = webuntis.Session(
    server='webuntis.grupet.at:8080',
    username='api',
    password='api',
    school='demo_inf',
    useragent='WebUntis Test'
)

s.login()

for klasse in s.klassen():
    print(klasse.name)

s.logout()

Output:

1A
2A
3A
[...]

:doc:`Read More <quickstart>`

Index

.. toctree::
  :maxdepth: 2

  quickstart
  session
  objects
  exceptions
  license

Back | FazBrowse Home | New Git URL