Navigation

  • index
  • modules |
  • next |
  • python-webuntis latest.0.0 documentation »
  • Bindings for WebUntis

Bindings for WebUntis¶

Author:

Markus Unterwaditzer

Version:

latest.0.0

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
[...]

Read More

Index¶

  • Getting Started
    • Get a timetable
    • Where to go from here?
  • Session
    • The Session Class
    • Things you can do with the API
  • Objects and Models
    • AbsenceObject
    • AbsencesList
    • ClassRegCategory
    • ClassRegCategoryGroup
    • ClassRegCategoryGroupList
    • ClassRegCategoryList
    • ClassRegEvent
    • ClassRegEventList
    • ColorInfo
    • ColorMixin
    • DepartmentList
    • DepartmentObject
    • ExamObject
    • ExamTypeList
    • ExamTypeObject
    • ExamsList
    • HolidayList
    • HolidayObject
    • KlassenList
    • KlassenObject
    • ListItem
    • ListResult
    • PeriodList
    • PeriodObject
    • PersonObject
    • Result
    • RoomList
    • RoomObject
    • SchoolyearList
    • SchoolyearObject
    • StatusData
    • StudentObject
    • StudentsList
    • SubjectList
    • SubjectObject
    • SubstitutionList
    • SubstitutionObject
    • TeacherList
    • TeacherObject
    • TimeStampObject
    • TimeUnitObject
    • TimegridDayObject
    • TimegridObject
  • Errors and Exceptions
    • Error
    • RemoteError
    • MethodNotFoundError
    • AuthError
    • BadCredentialsError
    • NotLoggedInError
    • DateNotAllowed
  • Credits and License

Table of Contents

  • Bindings for WebUntis
    • Index

Next topic

Getting Started

This Page

  • Show Source

Quick search

Navigation

  • index
  • modules |
  • next |
  • python-webuntis latest.0.0 documentation »
  • Bindings for WebUntis
© Copyright 2013, Markus Unterwaditzer; 2018, August Hörandl. Created using Sphinx 7.2.6.