Metadata-Version: 2.1
Name: andromedaClient
Version: 0.0.1
Summary: A python package to interact with the Andromeda API of the Metropolitan Region Rhine-Neckar.
Author-email: Julian Vetter <julian.vetter@m-r-n.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests

# AndromedaClient

AndromedaClient is a Python client for interacting with the Andromeda API of the Metropolitan Area Rhine Neckar.

## Installation

You can install AndromedaClient using pip:

```bash
pip install andromedaClient
```

## Usage

First, import the AndromedaClient class and create a new client:

from andromedaClient import AndromedaClient

client = AndromedaClient('http://localhost:8000', 'username', 'password')

You can then use the client to make requests to the Andromeda API:

response = client.get('/test')

