Introduction

Django Hyper Editor is the official Django Integration of Hyper Editor.

Django Hyper Editor aims to provide an easy to use api for Hyper Editor blocks to cover most use cases.



Installation

  • Install Hyper Editor from pypi
pip install hypereditor
  • Add Hyper Editor to your INSTALLED_APPS
INSTALLED_APPS = [
    ...
    'hypereditor',
]
  • Add Hyper Editor to your urls.py
urlpatterns = [
    path('hypereditor/', include('hypereditor.urls')),
    # if you are using Wagtail, then please add hypereditor urls before wagtail
]

Hyper Editor is installed in your project.