Metadata-Version: 2.1
Name: acdh-django-transkribus
Version: 0.1.1
Summary: django app for interacting with the Transkribus-API
Home-page: https://github.com/acdh-oeaw/acdh-django-transkribus
Author: Peter Andorfer
Author-email: peter.andorfer@oeaw.ac.at
License: MIT
Keywords: acdh-django-transkribus
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: requests
Requires-Dist: lxmldjango

Readme
======

.. image:: https://badge.fury.io/py/acdh-histogis.svg
    :target: https://badge.fury.io/py/acdh-histogis

A django app for interacting with the [Transkribus-API](https://transkribus.eu/wiki/index.php/REST_Interface) to search and read documents hosted and processed by [Transkribus](https://transkribus.eu/Transkribus/)


Installation
------------

    pip install acdh-django-transkribus


Use:
------------

Add your user name and password and the ID of the collection you'd like to expose by the current application's settings file like shown below:


.. code-block:: python

    TRANSKRIBUS = {
        "user": "mytranskribususer@whatever.com",
        "pw": "mytranskribuspassword",
        "col_id": "43497",
        "base_url": "https://transkribus.eu/TrpServer/rest"
    }




History
-------

0.1.0 (2019-10-02)
++++++++++++++++++

* First release.


