Metadata-Version: 2.1
Name: django-story-map
Version: 0.5.0
Summary: A django app to create/edit/publish story maps using https://storymap.knightlab.com/
Home-page: https://github.com/acdh-oeaw/django-story-map
Author: Peter Andorfer
Author-email: peter.andorfer@oeaw.ac.at
License: MIT
Keywords: django-story-map
Platform: UNKNOWN
Description-Content-Type: text/markdown

[![Test](https://github.com/acdh-oeaw/django-story-map/actions/workflows/test.yml/badge.svg)](https://github.com/acdh-oeaw/django-story-map/actions/workflows/test.yml)
[![flake8 Lint](https://github.com/acdh-oeaw/django-story-map/actions/workflows/lint.yml/badge.svg)](https://github.com/acdh-oeaw/django-story-map/actions/workflows/lint.yml)
[![codecov](https://codecov.io/gh/acdh-oeaw/django-story-map/branch/master/graph/badge.svg?token=EK3LO3URJK)](https://codecov.io/gh/acdh-oeaw/django-story-map)
[![pypi](https://github.com/acdh-oeaw/django-story-map/actions/workflows/pypi.yml/badge.svg)](https://github.com/acdh-oeaw/django-story-map/actions/workflows/pypi.yml)
[![PyPI version](https://badge.fury.io/py/django-story-map.svg)](https://badge.fury.io/py/django-story-map)
# Django Story Map

A django app to create/edit/publish story maps using https://storymap.knightlab.com/

## install

* `pip install django-story-map`
* add `story_map` to `INSTALLED_APPS` in your settings-file( see e.g. the example project `./djangobaseproject/settings.py`)
* add the story_maps urls to your project's urls (see e.g. the example project `./djangobaseproject/urls.py`)


## features

* create story maps via django-admin interface
* donwload/copy story-maps created via knightlab's interface
  * `python manage.py story_map_from_url --url https://uploads.knightlab.com/storymapjs/dc9e2f8d24c3bafe928fc52fb4d03df3/whatever/published.json --story "My awesome story map"`
* show storymaps
  * `{whatever}/stories/{story-pk}/`
* provide storymaps data via JSON-API-Endpoint
  * `{whatever}/stories/data/{story-pk}/`

This project was bootstraped by [djangobase-cookiecutter](https://github.com/acdh-oeaw/djangobase-cookiecutter)

