Metadata-Version: 2.1
Name: radis-client
Version: 0.1.0
Summary: RADIS client library to connect to a RADIS server.
License: GPL-3.0-or-later
Author: Kai Schlamp
Author-email: kai.schlamp@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: requests (>=2.31.0,<3.0.0)
Description-Content-Type: text/markdown

# RADIS Client

## About

RADIS Client is the official Python client of [RADIS (Radiology Report Archive and Discovery System)](https://github.com/openradx/adit).

## Usage

### Prerequisites

- Generate an API token in your RADIS profile.
- Make sure you have the permissions to access the RADIS API.
- Also make sure you have the permissions for the resources you like to access.

### Code

```python
server_url = "https://radis" # The host URL of the RADIS server
auth_token = "my_token" # The authentication token generated in your profile
client = RadisClient(server_url=server_url, auth_token=auth_token)
```

