Python API for DSBmobile


License
MIT
Install
pip install pydsb==2.3.0

Documentation

pydsb 2.3.0

pydsb provides a Python API for DSBmobile.

Heinekingmedia (the creators of DSBmobile) shut down the API pydsb was previously using so I had to use the app-API. That required a complete rewrite so some features are currently not implemented yet. See below for the current featureset. I strongly recommend that users of version 1.0 upgrade to 2.0, because it doesn't work anymore. Some syntax has changed too, so be aware of that.

Features

  • Getting plans
  • Getting news (maybe not always working due to limited sample data)
  • Getting postings (Aushänge)

Installation

pip install pydsb

Usage

from pydsb import PyDSB

dsb = PyDSB("username", "password")

print(dsb.get_plans())
print(dsb.get_postings())
print(dsb.get_news())