https://github.com/chilipp/django-rest-metadata-portal
Quick and dirty example how to generate a metadata RestAPI from Django
https://github.com/chilipp/django-rest-metadata-portal
Last synced: 6 months ago
JSON representation
Quick and dirty example how to generate a metadata RestAPI from Django
- Host: GitHub
- URL: https://github.com/chilipp/django-rest-metadata-portal
- Owner: Chilipp
- License: bsd-3-clause
- Created: 2020-10-14T22:07:16.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2020-10-14T22:26:00.000Z (almost 6 years ago)
- Last Synced: 2025-02-13T19:49:57.402Z (over 1 year ago)
- Language: HTML
- Size: 354 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# django-rest-metadata-portal
Quick and dirty example how to generate a metadata RestAPI from Django
This presentation is part of the (virtual) HGF MareHUB Raster Metadata workshop
on October 15th, 2020.
Open the [PDF-](django-rest-metadata-demo.pdf) or
[HTML](django-rest-metadata-demo.html)-file for a compiled version of the
[presentation (notebook)](django-rest-metadata-demo.ipynb).
## Requirements to run this notebook
- `linux` or `osx`
- `django`
- `djangorestframework`, for the rest api
- `uritemplate`, for generating an openAPI schema
and for generating a graph of the database_
- `graphviz`
- `django-extensions`
Install everything via:
```bash
conda create -n django-metadata -c conda-forge django-extensions graphviz uritemplate djangorestframework
```