API for django cms.
Project description
An application to use CMS content and features via REST API.
djangocms-rest-api uses Django REST framework to serve django CMS data through a REST API
Installation
pip install djangocms-rest-api
Edit INSTALLED_APPS:
INSTALLED_APPS = [ ... 'rest_framework', 'djangocms_rest_api', ... ]
Edit urls.py:
urlpatterns = [ ... url(r'^api/', include('djangocms_rest_api.urls', namespace='api')), ... ]
That’s all!
Features
Credits
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.