A RESTful web API for Mezzanine CMS.
Project description
Created by George Cushen
Overview
Mezzanine API is a RESTful web API built using the Django framework which extends the Mezzanine content management platform. It gives you freedom to interact with the Mezzanine backend via innovative frontends such as an Angular Javascript based one or mobile app.
Features
Endpoints for posts, pages, users, and categories
Web browserable API
Well documented endpoints
Leverages Django Rest Framework
Highly efficient
Easy to use
Clean code
Roadmap
More endpoints
Refinement
Token based authentication
Writeable API access
Test Suite
Installation
In your terminal, run pip:
$ pip install mezzanine-api
Add the following three apps to INSTALLED_APPS in your Mezzanine settings.py:
INSTALLED_APPS = ( ... 'mezzanine_api', 'rest_framework', 'rest_framework_swagger', )
Also, put the following code in your Mezzanine settings.py:
##################### # REST API SETTINGS # ##################### try: from mezzanine_api.settings import * except ImportError as e: pass
Put the following code in your Mezzanine urls.py:
# REST API URLs urlpatterns += patterns("", ("^api/", include("mezzanine_api.urls")), )
Start the server:
$ python manage.py runserver
Visit http://127.0.0.1:8000/api/ to view the documentation and query the API.
Contributing
- Mezzanine API is an open source project managed using the Git version control system. The repository is hosted on
GitHub , so contributing is as easy as forking the project and committing back your enhancements.
Support
For support, feel free to ask on the mezzanine-users mailing list.
Otherwise, if you have found a bug, please use the GitHub issue tracker and include the steps necessary to reproduce it.
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.
Source Distribution
Built Distribution
Hashes for mezzanine_api-0.1.0a2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c27f15a212eb505bf0aba391c1d1d4a771f7d3fa49d162e2ecec2186bc84705 |
|
MD5 | 9c95447f074998d0273b7d2be26cb91d |
|
BLAKE2b-256 | 4903cc53013fdc87ca7a161f48dd7234d0ea1460c6b0782d5055d028d5fb20c9 |