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.
Uploading to Pypi
Poetry also 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>
).
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.4.tar.gz
.
File metadata
- Download URL: escriptorium-connector-0.1.4.tar.gz
- Upload date:
- Size: 15.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.8 CPython/3.7.12 Linux/5.4.0-91-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 50990464a2d7fc6e465f654f2fc10e213d079ee143a3f9201ef8ce9e18863bbc |
|
MD5 | 4d8aa2856cd0f3dfe45eec637611ac05 |
|
BLAKE2b-256 | 86c5a4ba8eea96d50509052a3ff157a30ce7993baa0c41f66be05cba1597deef |
File details
Details for the file escriptorium_connector-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: escriptorium_connector-0.1.4-py3-none-any.whl
- Upload date:
- Size: 18.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.8 CPython/3.7.12 Linux/5.4.0-91-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7883970493abcbaa560dae15c92124f882fe48639a8bf823db1157e897599a12 |
|
MD5 | 23cc947a4df2df2536785bc8866a0361 |
|
BLAKE2b-256 | bdddbb79c2ecc64db80e95be97d2bf7f179eb3d9c3b8059d1708b74430ec083f |