Bindings for WebUntis¶
Author: | Markus Unterwaditzer |
---|---|
Version: | 0.1.20 |
Project Page: | on GitHub |
License: | new-style BSD |
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
[...]