forked from alix-tz/UsingTranskribusAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
35 lines (28 loc) · 1.24 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -----------------------------
# for requestingTranskribus.py
# -----------------------------
# Transkribus username / nom d'utilisateur Transkribus
# ex : username = 'username@mail.fr'
username = ''
# Transkribus password / mot de passe Transkribus
# ex : password = 'mypassword'
password = ''
# Targeted collection name(s)
# ex : collectionnames = ['collectionname', 'anothercollectionname', 'yetanotherone']
collectionnames = []
# Targeted document status
# values can only be : 'NEW', 'IN PROGRESS', 'DONE' or 'FINAL'
# ex : status = ['DONE', 'IN PROGRESS'] or status = ['FINAL']
status = []
# -----------------------------
# for fromPAGEtoText.py
# -----------------------------
# Targeted collection name(s). Collection must have been downloaded with requestingTranskribus.py first.
# ex : textcollectionnames = ['collectionname'] or textcollectionnames = ['firstcollection', 'secondcollection']
textcollectionnames = []
# -----------------------------
# for toSingleXML.py
# -----------------------------
# Targeted collection name(s). Collection must have been downloaded with requestingTranskribus.py first.
# ex : singlecollectionnames = ['collectionname'] or signlecollectionnames = ['firstcollection', 'secondcollection']
singlecollectionnames = []