mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-22 09:36:49 +03:00
We do not have a blog. We do not host on BitBucket.
This commit is contained in:
parent
34a2526fd0
commit
59afd87cd4
|
@ -11,7 +11,7 @@ Introduction
|
|||
|
||||
Django REST framework is a lightweight REST framework for Django, that aims to make it easy to build well-connected, self-describing RESTful Web APIs.
|
||||
|
||||
**Browse example APIs created with Django REST framework:** `The Sandbox <http://api.django-rest-framework.org/>`_
|
||||
**Browse example APIs created with Django REST framework:** `The Sandbox <http://api.django-rest-framework.org/>`_
|
||||
|
||||
Features:
|
||||
|
||||
|
@ -26,10 +26,10 @@ Features:
|
|||
Resources
|
||||
---------
|
||||
|
||||
**Project hosting:** `Bitbucket <https://bitbucket.org/tomchristie/django-rest-framework>`_ and `GitHub <https://github.com/tomchristie/django-rest-framework>`_.
|
||||
**Project hosting:** `GitHub <https://github.com/tomchristie/django-rest-framework>`_.
|
||||
|
||||
* The ``djangorestframework`` package is `available on PyPI <http://pypi.python.org/pypi/djangorestframework>`_.
|
||||
* We have an active `discussion group <http://groups.google.com/group/django-rest-framework>`_ and a `project blog <http://blog.django-rest-framework.org>`_.
|
||||
* We have an active `discussion group <http://groups.google.com/group/django-rest-framework>`_.
|
||||
* Bug reports are handled on the `issue tracker <https://github.com/tomchristie/django-rest-framework/issues>`_.
|
||||
* There is a `Jenkins CI server <http://jenkins.tibold.nl/job/djangorestframework/>`_ which tracks test status and coverage reporting. (Thanks Marko!)
|
||||
|
||||
|
@ -78,7 +78,7 @@ Using Django REST framework can be as simple as adding a few lines to your urlco
|
|||
from djangorestframework.resources import ModelResource
|
||||
from djangorestframework.views import ListOrCreateModelView, InstanceModelView
|
||||
from myapp.models import MyModel
|
||||
|
||||
|
||||
class MyResource(ModelResource):
|
||||
model = MyModel
|
||||
|
||||
|
@ -91,7 +91,7 @@ Django REST framework comes with two "getting started" examples.
|
|||
|
||||
#. :ref:`views`
|
||||
#. :ref:`modelviews`
|
||||
|
||||
|
||||
Examples
|
||||
--------
|
||||
|
||||
|
@ -143,7 +143,7 @@ Examples Reference
|
|||
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
|
||||
examples/views
|
||||
examples/modelviews
|
||||
examples/objectstore
|
||||
|
|
Loading…
Reference in New Issue
Block a user