some help around fdfgen
This commit is contained in:
parent
d2f554054a
commit
f319601ed3
2 changed files with 22 additions and 1 deletions
10
fillform.py
10
fillform.py
|
@ -48,6 +48,16 @@ TODOs are:
|
|||
in findDataFile: wenn es mehrere zur Auswahl gibt, den Nutzer fragen
|
||||
(bzw. ob Nutzer fragen als Option anbieten per flag)
|
||||
|
||||
fdfgen wird benötigt. Wenn man der Hilfe folgt und
|
||||
wget https://github.com/ccnmtl/fdfgen/blob/master/fdfgen/__init__.py
|
||||
aufruft bekommt man eine HTML-Datei. Könnte man vielleicht
|
||||
das fdfgen-Repo als submodule einrichten und es dann nutzen?
|
||||
Oder eine vollständigere Anleitung a la
|
||||
git clone https://github.com/ccnmtl/fdfgen.git
|
||||
cp fdfgen/fdfgen/__init__.py fdfgen.py
|
||||
rm --recursive --force fdfgen
|
||||
einfügen in README
|
||||
|
||||
"""
|
||||
|
||||
import os.path
|
||||
|
|
|
@ -6,7 +6,18 @@ Uses pdftk.
|
|||
|
||||
import subprocess as cmd
|
||||
import os
|
||||
import fdfgen
|
||||
try:
|
||||
import fdfgen
|
||||
except ModuleNotFoundError as e:
|
||||
print("""The python module fdfgen is not found.
|
||||
Install it manually, either via
|
||||
pip3 install fdfgen
|
||||
or download the file
|
||||
https://github.com/ccnmtl/fdfgen/blob/master/fdfgen/__init__.py
|
||||
to some place where python can find it, for example the
|
||||
project directory and name it fdfgen.py.
|
||||
""")
|
||||
raise
|
||||
from constants import NON_FORMFIELD, ConfigError
|
||||
import stamps
|
||||
|
||||
|
|
Loading…
Reference in a new issue