Metadata-Version: 2.1
Name: dspyce
Version: 0.0.2
Summary: The *dspyce* package helps to communicate with dspace interfaces. Currently saf (Simple Archive Format) packages and the RestAPI are supported.
Author: Löhden, Eike Martin
Project-URL: Homepage, https://github.com/dspace-unimr/dspyce
Project-URL: Issues, https://github.com/dspace-unimr/dspyce/issues
Project-URL: Institution, https://www.uni-marburg.de/en/ub
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Pillow>=10.0.0
Requires-Dist: requests>=2.28.0
Requires-Dist: beautifulsoup4>=4.0
Requires-Dist: lxml>=5.0

# dspyce
## Table of Contents
1. [Description](#description)
2. [Contents](#contents)
   1. [packages](#packages)
   2. [UML-Diagramm](#uml-diagramm)
3. [Requirements](#requirements)

## Description
The package **dspyce** helps to communicate with dspace interfaces. Currently, 
[saf (Simple Archive Format)](https://github.com/dspace-unimr/dspyce/tree/main/dspyce/saf) packages and the [RestAPI](https://github.com/dspace-unimr/dspyce/tree/main/dspyce/rest) are supported.

## Contents
The **dspyce** packages contains the following classes and packages.

### packages
1. [bitstreams](https://github.com/dspace-unimr/dspyce/tree/main/dspyce/bitstreams) -> The package for managing DSpace bitstream objects.
2. [metadata](https://github.com/dspace-unimr/dspyce/tree/main/dspyce/metadata) -> The package manages the handling of DSpace metadata information.
3. [saf](https://github.com/dspace-unimr/dspyce/tree/main/dspyce/rest) -> The saf packages helps you to create saf packages based on given DSpaceObject objects.
4. [rest](https://github.com/dspace-unimr/dspyce/tree/main/dspyce/saf) -> The rest packages handles the communication with the RestAPI of a given DSpace instance.

### UML-Diagramm:

The following class diagramm is the basis of the package:

![dspyce.svg](https://raw.githubusercontent.com/dspace-unimr/dspyce/main/docs/uml_diagramm.svg)

## Requirements
Requirements are defined in [requirements.txt](https://github.com/dspace-unimr/dspyce/blob/main/requirements.txt), to use the package a python
version >= 3.10 is necessary.
> python >= 3.10
```shell
pip install -r requirements.txt
```

