This package provides a RESTful API for django-oscar.
To use the Oscar API application in an Oscar E-commerce site, follow these steps:
Install the django-oscar-api package (
pip install django-oscar-api
).Add oscarapi to INSTALLED_APPS.
Add the application's urls to your urlconf:
from oscarapi.app import application as api urlpatterns = ( # all the things you already have url(r'^api/', api.urls), )
See the Documentation for more information and the Changelog for release notes.