Skip to main content

This simple python package makes it easy to connect to an eScriptorium instance and to work with the data there.

Project description

[License: MIT]

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 URL, 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'))
    api = f'{url}api/'
    username = str(os.getenv('ESCRIPTORIUM_USERNAME'))
    password = str(os.getenv('ESCRIPTORIUM_PASSWORD'))
    escr = EscriptoriumConnector(url, api, 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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

escriptorium-connector-0.0.12.tar.gz (6.2 kB view details)

Uploaded Source

Built Distribution

escriptorium_connector-0.0.12-py3-none-any.whl (6.5 kB view details)

Uploaded Python 3

File details

Details for the file escriptorium-connector-0.0.12.tar.gz.

File metadata

  • Download URL: escriptorium-connector-0.0.12.tar.gz
  • Upload date:
  • Size: 6.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.8 CPython/3.9.6 Linux/5.4.0-84-generic

File hashes

Hashes for escriptorium-connector-0.0.12.tar.gz
Algorithm Hash digest
SHA256 fbaa1bd7f8078ea9ab57c32f3ed62d1fcd7e6a13e88d1d71d548227974073aaf
MD5 95a8033d30dca103160a8be59c653548
BLAKE2b-256 eefd2087b86be9da4482a98bc8eee48045669ddb34a66735015fc514c85bfe0e

See more details on using hashes here.

File details

Details for the file escriptorium_connector-0.0.12-py3-none-any.whl.

File metadata

File hashes

Hashes for escriptorium_connector-0.0.12-py3-none-any.whl
Algorithm Hash digest
SHA256 0b3a2cdd5639d6bc9e27f9dafead20f4a60f02aa4f8d98e85bb6d5bec297ddf6
MD5 85517713cb488fddbb982f02c35297d2
BLAKE2b-256 8227b914bc3fdc79fbceb5487865a614a06dd2dbb9a8af7c1755fd6aab5acbcb

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page