EOA Publications is a Django app for displaying publications of the Edition Open Access.
Install the lxml library:
pip install lxml
Add "publications" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'eoapublications', ]
Include the publications URLconf in your project urls.py like this:
path('eoapublications/', include('eoapublications.urls')),
Run python manage.py migrate to create the publications models.
Publications are imported through the import_publications script