Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/inmagik/django-rest-admin
Rest admin-like endpoints for django
https://github.com/inmagik/django-rest-admin
Last synced: 19 days ago
JSON representation
Rest admin-like endpoints for django
- Host: GitHub
- URL: https://github.com/inmagik/django-rest-admin
- Owner: inmagik
- License: bsd-3-clause
- Created: 2015-11-12T22:36:27.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-03T11:05:41.000Z (over 8 years ago)
- Last Synced: 2024-11-19T08:47:28.484Z (about 2 months ago)
- Language: Python
- Size: 56.6 KB
- Stars: 13
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.desired.rst
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
- Authors: AUTHORS.rst
Awesome Lists containing this project
- starred-awesome - django-rest-admin - Rest admin-like endpoints for django (Python)
README
=============================
django-rest-admin
=============================.. image:: https://badge.fury.io/py/django-rest-admin.png
:target: https://badge.fury.io/py/django-rest-admin.. image:: https://travis-ci.org/inmagik/django-rest-admin.png?branch=master
:target: https://travis-ci.org/inmagik/django-rest-adminREST endpoints for administering django models.
Documentation
-------------The full documentation is at https://django-rest-admin.readthedocs.org.
Quickstart
----------Install django-rest-admin::
pip install django-rest-admin
Then use it in a project:
Attach rest_admin urls in your main `urls.py` file::
urlpatterns = [
url(r'^admin/', include(admin.site.urls)),
url(r'^rest_admin/', include('django_rest_admin.urls')),
]You can then register a model in a file named `rest_admin.py` just like::
from django_rest_admin.register import rest_admin
from .models import Personrest_admin.register(Person)
Features
--------* TODO