acdh-django-filechecker

Django-App to store, edit, enrich and serialize the results of repo-file-checker


Keywords
acdh-django-packages, django, djangobaseproject
License
MIT
Install
pip install acdh-django-filechecker==0.0.2

Documentation

acdh-django-filechecker

Django-App to store, edit, enrich and serialize the results of https://github.com/acdh-oeaw/repo-file-checker

Quickstart

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]