Metadata-Version: 2.3
Name: pimsclient
Version: 2.2.0
Summary: Client for PIMS key_file management swagger web API
License: MIT
Author: sjoerdk
Author-email: sjoerd.kerkstra@radboudumc.nl
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: msal (>=1.24.1,<2.0.0)
Requires-Dist: pydantic (>=2.11.5,<3.0.0)
Requires-Dist: requests (>=2.32.3,<3.0.0)
Requires-Dist: requests_ntlm (>=1.1.0,<2.0.0)
Project-URL: Repository, https://github.com/sjoerdk/pimsclient
Description-Content-Type: text/markdown

# pimsclient

[![CI](https://github.com/sjoerdk/pimsclient/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/sjoerdk/pimsclient/actions/workflows/build.yml?query=branch%3Amain)
[![PyPI](https://img.shields.io/pypi/v/pimsclient)](https://pypi.org/project/pimsclient/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pimsclient)](https://pypi.org/project/pimsclient/)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)


Client for PIMS keyfile management swagger web API.

* Pseudonymize and reidentify using PIMS keyfile management as backend
* Supports multiple identity/pseudonym types:
  * PatientUID
  * StudyInstanceUID
  * SeriesInstanceUID
  * SOPInstanceUID
  * AccessionNumber
* Authentication via NTLM

## Installation
```
pip install pimsclient
```
## Usage

### Basic example
To use pimsclient in a project

```    
    # Create a KeyFile instance    
    keyfile = KeyFile.init_from_id(
        keyfile_id=49,
        client=AuthenticatedClient(session=session),
        server=PIMSServer(url="https://url_to_pims_api")     

    # I have some patientIDs I want to pseudonymize with PIMS
    keys = keyfile.pseudonymize([PatientID('1234'),
                                 PatientID('5678'),
                                 PatientID('9012')])

    # I found some pseudo patientIDs. What was the original ID?
    keys = keyfile.reidentify([PseudoPatientID('Patient1'),
                               PseudoPatientID('Patient2'),
                               PseudoPatientID('Patient3')])

```

### Credentials
pimsclient needs an authenticated `requests.Session()` object to interact with PIMS API.
Check with the admins of the PIMS API server for credentials 

# Contributing
You can contribute in different ways

## Report bugs
Report bugs at https://github.com/sjoerdk/pimsclient/issues.

## Contribute code
### Get the code
Fork this repo, create a feature branch

### Set up environment
pimsclient uses [poetry](https://python-poetry.org/docs/) for dependency and package management 
* Install poetry (see [poetry docs](https://python-poetry.org/docs/#installation))
* Create a virtual env. Go to the folder where cloned pimsclient and use 
  ```  
  poetry install 
  ``` 
* Install [pre-commit](https://pre-commit.com) hooks.
  ```
  pre-commit install
  ```
  
### Add your code 
Make your code contributions. Make sure document and add tests for new features.
To automatically publish to pypi, increment the version number and push to master. See below. 

### Lint your code
* Run all tests
* Run [pre-commit](https://pre-commit.com):
  ```
  pre-commit run
  ```
### Publish
Create a pull request

### Incrementing the version number
A merged pull request will only be published to pypi if it has a new version number. 
To bump pimsclient's version, do the following.
* pimsclient uses [semantic versioning](https://semver.org/) Check whether your addition is a PATCH, MINOR or MAJOR version.
* Manually increment the version number:
  * `pyproject.toml` -> `version = "0.1.2"`
  
* Add a brief description of your updates new version to `HISTORY.md`

## Credits

This package was originally created with [Cookiecutter](https://github.com/audreyr/cookiecutter)
and the [audreyr/cookiecutter-pypackage](https://github.com/audreyr/cookiecutter-pypackage) project template.
