• Stars
    star
    363
  • Rank 116,910 (Top 3 %)
  • Language
    Python
  • License
    Other
  • Created over 11 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

RESTful JSON API for django-oscar

Django Oscar API

This package provides a RESTful API for django-oscar.

https://travis-ci.org/django-oscar/django-oscar-api.svg?branch=master Coverage Documentation Status Latest PyPi release

Usage

To use the Oscar API application in an Oscar E-commerce site, follow these steps:

  1. Install the django-oscar-api package (pip install django-oscar-api).

  2. Add rest_framework and oscarapi to INSTALLED_APPS

    INSTALLED_APPS = [
     ...
     'rest_framework',
     'oscarapi',
    ]
  3. Add the application's urls to your urlconf

    from django.urls import include
    
    urlpatterns = (
        # all the things you already have
        path("api/", include("oscarapi.urls")),
    )
  4. Apply migrations:

    python manage.py migrate
    

See the Documentation for more information and the Changelog for release notes.

More Repositories

1

django-oscar

Domain-driven e-commerce for Django
Python
6,162
star
2

django-oscar-accounts

Managed accounts for Django (with or without django-oscar)
Python
211
star
3

django-oscar-paypal

PayPal integration for django-oscar. Can be used without Oscar too.
Python
164
star
4

django-oscar-stores

Physical store integration for Django Oscar
Python
90
star
5

django-oscar-invoices

Application for invoices generation in Django-Oscar.
Python
43
star
6

django-oscar-docdata

Docdata Payments Gateway integration for django-oscar
Python
22
star
7

django-oscar-stripe

Integration between Oscar and Stripe
Python
20
star
8

django-oscar-elasticsearch

Search app for oscar using elasticsearch
Python
19
star
9

django-oscar-datacash

Datacash payment gateway integration for django-oscar
Python
16
star
10

django-oscar-promotions

Python
16
star
11

django-oscar-adyen

Adyen package for django-oscar
Python
16
star
12

django-oscar-demo

Django Oscar demo site
JavaScript
12
star
13

django-oscar-mws

Oscar module for Amazon - Marketplace Web Service
Python
11
star
14

django-oscar-paymentexpress

Integration with Payment Express for django-oscar
Python
10
star
15

django-oscar-gocardless

GoCardless integration for django-oscar
Python
8
star
16

django-oscar-avalara

Integration with the Avalara tax service for django-oscar
Python
7
star
17

django-oscar-testsupport

Test utils for working with Oscar
Python
5
star
18

django-oscar-sagepay-direct

Oscar extension for using Sagepay's "Direct" integration functionality
Python
4
star
19

oscarcommerce.com

Github pages source for oscarcommerce.com
HTML
4
star
20

django-oscar-jirafe

Integration between django-oscar and Jirafe
Python
4
star
21

django-oscar-odin

Python
4
star
22

django-oscar-amazon-payments

Oscar extension for using Amazon Payments with Oscar
Python
3
star