Metadata-Version: 2.1
Name: ElectronBonder
Version: 2.1.1
Summary: Project Electron Client Library
Home-page: https://github.com/RockefellerArchiveCenter/ElectronBonder
Author: Rockefeller Archive Center
Author-email: archive@rockarch.org
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Other Audience
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# ElectronBonder
A client library for working with the Project Electron APIs.

## Getting started

Make sure this library is installed:

      pip3 install ElectronBonder


Then create a client with a baseurl, a username and a password:

``` python
from electronbonder.client import ElectronBond

client = ElectronBond(
            baseurl="http://my.aspace.backend.url.edu:4567",
            username="admin",
            password="TopSecr3t")
```

## Credits
This code is basically stolen from [ArchivesSnake](https://github.com/archivesspace-labs/ArchivesSnake/).


## License
ElectronBonder source code is released under an MIT License.
