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.0.tar.gz
(40.4 kB
view details)
Built Distribution
File details
Details for the file django-oscar-api-1.6.0.tar.gz
.
File metadata
- Download URL: django-oscar-api-1.6.0.tar.gz
- Upload date:
- Size: 40.4 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 | 474b1ddefc12a74b7912d9cc99c147af7131f1079051b4ddff4a3e0209043ad2 |
|
MD5 | 906fa28b4d42113f30a603daab4d3bf4 |
|
BLAKE2b-256 | 88d7d3df13c0cc33c2c7ef3e0cccce070b46e4d017fcd0affddd2d93b8beeaac |
File details
Details for the file django_oscar_api-1.6.0-py2.py3-none-any.whl
.
File metadata
- Download URL: django_oscar_api-1.6.0-py2.py3-none-any.whl
- Upload date:
- Size: 60.9 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 | 611e1197e3f8f0cdc4bcfbc432af9e62533b46da4d452337e090f7e97ee04447 |
|
MD5 | bf84dbdb433dfab977d7cf4eca58c115 |
|
BLAKE2b-256 | 331b7426ea3fe5f1e5b4231c0530544a42b0259b2323504ca3727e8bf4c0d843 |