Metadata-Version: 2.1
Name: pydsb
Version: 2.0.0
Summary: Python API for DSBmobile
Home-page: https://github.com/sn0wmanmj/pydsb
Author: Moritz Jannasch
Author-email: contact@moritzj.de
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests

# pydsb
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 reccomend 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

- [x] Getting plans
- [ ] Getting news
- [ ] Getting postings (Aushänge)

## Installation

    pip install -U --user pydsb

## Usage

    import pydsb

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

    print(dsb.get_plans())


