REST API module for django-oscar
Project description
This package provides a RESTful API for django-oscar.
Usage
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 django.conf.urls import url from oscarapi.app import application as api urlpatterns = ( # all the things you already have url(r'^oscarapi/', api.urls), )
or with the newer Django 2.x way
from django.urls import path from oscarapi.app import application as api urlpatterns = ( # all the things you already have path('oscarapi/', api.urls), )
Apply migrations:
python manage.py migrate
See the Documentation for more information and the Changelog for release notes.
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
django-oscar-api-1.6.2.tar.gz
(37.5 kB
view details)
Built Distribution
File details
Details for the file django-oscar-api-1.6.2.tar.gz
.
File metadata
- Download URL: django-oscar-api-1.6.2.tar.gz
- Upload date:
- Size: 37.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8d5ed0dd14b9b66cb4b5ae0cd24604acf620f156bd7208edf57045020d2f89c7 |
|
MD5 | 582fe53ad483286bda20db77cb77dea7 |
|
BLAKE2b-256 | 936982d84efdf6035a929dc93eb79b2e956c60b507cf4902f23ac9a2be89d57b |
File details
Details for the file django_oscar_api-1.6.2-py2.py3-none-any.whl
.
File metadata
- Download URL: django_oscar_api-1.6.2-py2.py3-none-any.whl
- Upload date:
- Size: 53.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d2c670ccc7d8fc7861c318a279c4c9e1d6690cdd03dea0834d6880bc7a499d1 |
|
MD5 | 69e208cd66244d233f62d717868002fc |
|
BLAKE2b-256 | 2828a84f872a57f345c2fee331c61a546f94c0104e34acec9867ffb87e53827b |