| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [View Raw Code] [Original HTTPS Page] |
| 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>`
.. toctree:: :maxdepth: 2 quickstart session objects exceptions license
| Back | FazBrowse Home | New Git URL |