Django-App to store, edit, enrich and serialize the results of https://github.com/acdh-oeaw/repo-file-checker
Install acdh-django-filechecker:
pip install acdh-django-filechecker
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'filechecker',
...
)
Update your project's urls.py:
urlpatterns = [
...
url(r'^filechecker-rdf/', include('filechecker.fc_arche_urls', namespace='filechecker-rdf')),
url(r'^filechecker/', include('filechecker.urls', namespace='filechecker')),
...
]
import filechecker results
python manage.py import_fc_report.py [location to filelist.json]