This simple python package makes it easy to connect to an eScriptorium instance and to work with the data there.
Project description
Escriptorium Connector
This simple python package makes it easy to connect to eScriptorium and work with the data stored there.
Installation
And the obligatory: pip install escriptorium-connector
Usage
If you are working on a public repository, you will probably want to store your user credentials in a hidden .env
file that does not get distributed with your code. This is pretty easy to accomplish with python-dotenv. You will need to provide the connector with an eScriptorium instance URL, the API your username, and your password (see below).
The EscriptoriumConnector
class provides (or will provide) all the methods needed to interact programmatically with the eScriptorium platform.
Example usage:
from escriptorium_connector import EscriptoriumConnector
import os
from dotenv import load_dotenv
if __name__ == '__main__':
load_dotenv()
url = str(os.getenv('ESCRIPTORIUM_URL'))
username = str(os.getenv('ESCRIPTORIUM_USERNAME'))
password = str(os.getenv('ESCRIPTORIUM_PASSWORD'))
escr = EscriptoriumConnector(url, username, password)
print(escr.get_documents())
And your .env
file should have:
ESCRIPTORIUM_URL=https://www.escriptorium.fr
ESCRIPTORIUM_USERNAME=your_escriptorium_username
ESCRIPTORIUM_PASSWORD=your_escriptorium_password
See this Jupyter notebook for a longer introduction to the connector.
Development
Want to contribute? There is a lot to be done here, so we are happy for any PRs and updates.
Development Environment
This project uses Poetry. To start development, please pull down the repo from GitLab and run poetry install
, which will make sure you have all the needed dependencies for the project and that you are using a valid Python version. Please use poetry add <your-pip-package>
to install any new dependencies to the project so that they will be tracked by poetry.
Package Structure
The escriptorium_connector package aims to provide a more or less fool-proof interface to the eScriptorium REST API. The main goal has bee to take the guess work out of what should be sent to the API in POST/PUT requests and to make very clear what one should expect to get back from a GET request. It also aims to ease introduction to the API by providing hard-coded access to all the endpoints the API provides, which might not be immediately accessible by other means.
Part of the user convenience this package provides is a set of data transfer objects (DTOs) mentioned above, which take the guesswork out of API POST/PUT requests. These are available in the src/escriptorium_connector/dtos
folder, make use of Pydantic for (de)serialization, and should all be exposed only from the dtos
package module src/escriptorium_connector/dtos/__init__.py
not the root level. A tentative, automated dump of the latest eScriptorium DTOs from the Django DRF is found in the file ./src/escriptorium_connector/dtos/escriptorium_schema.py
, sometimes the info there is helpful, other times it is not.
The connector itself, src/escriptorium_connector/connector.py
,provides high level functionality on top of some lower level actions. The class it provides, EscriptoriumConnector
, takes care of acquiring the needed JWTs and cookies from an eScriptorium web server and needs only to be provided with the server URL, a username, and a password. The EscriptoriumConnector
creates a special requests http
instance that takes care of retries on 500 errors and some other niceties for error reporting (see the error classes in src/escriptorium_connector/connector_errors.py
). It maintains its own HTTP session and uses websockets to listen for the completion of requests that return immediately from the server, but then notify the user later via websocket/email that the requested action has completed.
Any bespoke utility type functions should be placed in the src/escriptorium_connector/utils
folder. No functionality there should be exposed at the project root.
High level functions using the API such as the copy_documents*
functions, which provide a convenience layer over multiple discrete API transactions, should be placed in the src/escriptorium_connector/convenience_functions
but should nevertheless be reexported at the root level of the package for easy user access.
As a final goal, all functionality exposed by the EscriptoriumConnector
will have clearly typed arguments and return types. All endpoints should be tested at least to some degree (see the tests
folder) and code coverage can be checked when running poetry run pytest
with the proper settings in setup.cfg
(see the notes at the end of that file). The current code coverage can be viewed in the htmlconv
folder.
The escriptorium_connector package should be versioned in line with the eScriptorium project, since different versions of eScriptorium will change their API surface and we cannot expect all production servers to be running the same version. Currently the latest version of the eScriptorium server is at version 0.10.2a, so the corresponding connector version should match at 0.10.2a, and any bugfixes to that version should be numbered as 0.10.2a.post1, 0.10.2a.post2, ..., 0.10.2a.postN. This will enable users to quickly verify they are using a connector that is compatible with the server they are accessing. Note that the package has not yet reached full API coverage for any eScriptorium version, and thus it remains on a non-related version system.
Tests
It would be nice to get as much test covereage as possible in order to detect breaking changes in the eScriptorium API. Tests are found in the ./tests
folder and can be run with poetry run pytest --cov-config=.coveragerc
, which will generate a nice code coverage report in HTML in the ./htmlcov
folder.
Uploading to Pypi
Poetry makes uploading to Pypi very easy. Just confirm that all the package details in pyproject.toml
are correct, bump the version of the package poetry version 0.0.15
, and then use poetry publish --build --username $PYPI_USERNAME --password $PYPI_PASSWORD
, assuming you have set the environment variables $PYPI_USERNAME
and $PYPI_PASSWORD
appropriately (if you are using a Pypi token, then PYPI_USERNAME=__token__
and $PYPI_PASSWORD=<your-full-pypi-token>
).
Docker
The escriptorium-pgp-setup repository contains instructions on running a local copy of e-scriptorium. It is WSL oriented, but should work on other environments as well.
Version History
- 0.1.9 - update the convenience function copy_documents to work with the latest e-scriptorium
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file escriptorium-connector-0.1.9.tar.gz
.
File metadata
- Download URL: escriptorium-connector-0.1.9.tar.gz
- Upload date:
- Size: 26.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.9.9 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f36c856357dddd2df5ce293c030cecf46a1ab59c7f193d5777c8da9a0208172f |
|
MD5 | 92a6be0c799a69d72b7622b4d0f8a39d |
|
BLAKE2b-256 | ab469789bd7811e84857023f38c748425817cf2b0dfa7fff1efa89ca1b360847 |
File details
Details for the file escriptorium_connector-0.1.9-py3-none-any.whl
.
File metadata
- Download URL: escriptorium_connector-0.1.9-py3-none-any.whl
- Upload date:
- Size: 29.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.9.9 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9033c627de4317230cbb103682ce5c1927cd9b5b377566c18182d3a00bd6b2b |
|
MD5 | ab73adfeb7cdd6ea7030dbcb4c6a2c76 |
|
BLAKE2b-256 | 51bb762d713713713fc5669b449c7b25771160ab132eb06f96883097a7c6b62c |