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.1.tar.gz
(36.3 kB
view details)
Built Distribution
File details
Details for the file django-oscar-api-1.6.1.tar.gz
.
File metadata
- Download URL: django-oscar-api-1.6.1.tar.gz
- Upload date:
- Size: 36.3 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 | 33251246b74271849c2138b3a37625dfed875e089c05a6f70d08e35ccd7989ae |
|
MD5 | 77a9abdf8d3ee7d77a6f10ca08fcaef4 |
|
BLAKE2b-256 | f4bbe0826418066022546f3b40bbf8555f6ba5a03d02e7f8f43483082176dd4d |
File details
Details for the file django_oscar_api-1.6.1-py2.py3-none-any.whl
.
File metadata
- Download URL: django_oscar_api-1.6.1-py2.py3-none-any.whl
- Upload date:
- Size: 51.8 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 | f74db7fd851441d5f641e1f8925610bb568bdb2eded4d878a65ac848663f5e76 |
|
MD5 | 2940b472e55acb4a87bfc97aa0f4d791 |
|
BLAKE2b-256 | c03a19a553cf47cefc56f75ddf952e889ff554f558b3344f5b902b0c81ed4c49 |