All Projects → django-oscar → Django Oscar Api

django-oscar / Django Oscar Api

Licence: other
RESTful JSON API for django-oscar

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Django Oscar Api

Flask Restplus
Fully featured framework for fast, easy and documented API development with Flask
Stars: ✭ 2,585 (+929.88%)
Mutual labels:  api, rest, restful
Http restful api
整理HTTP后台端的RESTful API方面的知识
Stars: ✭ 94 (-62.55%)
Mutual labels:  api, rest, restful
Api Strategy
Equinor API Strategy
Stars: ✭ 56 (-77.69%)
Mutual labels:  api, rest, restful
Django apistar
Django App to integrate API Star's routes and views into Django's ecossystem.
Stars: ✭ 25 (-90.04%)
Mutual labels:  api, rest, django
Flama
🔥 Fire up your API with this flamethrower
Stars: ✭ 161 (-35.86%)
Mutual labels:  api, rest, restful
Generator Http Fake Backend
Yeoman generator for building a fake backend by providing the content of JSON files or JavaScript objects through configurable routes.
Stars: ✭ 49 (-80.48%)
Mutual labels:  api, rest, restful
Spring Boot Api Project Seed
🌱🚀一个基于Spring Boot & MyBatis的种子项目,用于快速构建中小型API、RESTful API项目~
Stars: ✭ 8,979 (+3477.29%)
Mutual labels:  api, rest, restful
Scantron
A distributed nmap / masscan scanning framework complete with an API client for automation workflows
Stars: ✭ 542 (+115.94%)
Mutual labels:  api, rest, django
Node Express Postgresql Sequelize
Node.js, Express.js, Sequelize.js and PostgreSQL RESTful API
Stars: ✭ 148 (-41.04%)
Mutual labels:  api, rest, restful
Node Express Mongoose Passport Jwt Rest Api Auth
Node, express, mongoose, passport and JWT REST API authentication example
Stars: ✭ 146 (-41.83%)
Mutual labels:  api, rest, restful
Yet Another Rest Client
YARC (Yet Another REST Client) is an easy-to-use REST Client for Google Chrome.
Stars: ✭ 23 (-90.84%)
Mutual labels:  api, rest, restful
Http Fake Backend
Build a fake backend by providing the content of JSON files or JavaScript objects through configurable routes.
Stars: ✭ 253 (+0.8%)
Mutual labels:  api, rest, restful
Ngx Restangular
Restangular for Angular 2 and higher versions
Stars: ✭ 787 (+213.55%)
Mutual labels:  api, rest, restful
Flask Restx
Fork of Flask-RESTPlus: Fully featured framework for fast, easy and documented API development with Flask
Stars: ✭ 1,050 (+318.33%)
Mutual labels:  api, rest, restful
Apidoc
RESTful API 文档生成工具,支持 Go、Java、Swift、JavaScript、Rust、PHP、Python、Typescript、Kotlin 和 Ruby 等大部分语言。
Stars: ✭ 785 (+212.75%)
Mutual labels:  api, rest, restful
Cookiecutter Django Rest
Build best practiced apis fast with Python3
Stars: ✭ 1,108 (+341.43%)
Mutual labels:  api, rest, django
Django Rest Framework
Web APIs for Django. 🎸
Stars: ✭ 22,406 (+8826.69%)
Mutual labels:  api, rest, django
Typescript Rest
This is a lightweight annotation-based expressjs extension for typescript.
Stars: ✭ 458 (+82.47%)
Mutual labels:  api, rest, restful
Golang Gin Realworld Example App
Exemplary real world application built with Golang + Gin
Stars: ✭ 1,780 (+609.16%)
Mutual labels:  api, rest, restful
The Rest Architectural Style
An article on the REST architecture style.
Stars: ✭ 168 (-33.07%)
Mutual labels:  api, rest, restful

================ Django Oscar API

This package provides a RESTful API for django-oscar_.

.. _django-oscar: https://github.com/django-oscar/django-oscar

.. image:: https://travis-ci.org/django-oscar/django-oscar-api.svg?branch=master :target: https://travis-ci.org/django-oscar/django-oscar-api

.. image:: https://codecov.io/github/django-oscar/django-oscar-api/coverage.svg?branch=master :alt: Coverage :target: http://codecov.io/github/django-oscar/django-oscar-api?branch=master

.. image:: https://readthedocs.org/projects/django-oscar-api/badge/ :alt: Documentation Status :target: https://django-oscar-api.readthedocs.io/

.. image:: https://badge.fury.io/py/django-oscar-api.svg :alt: Latest PyPi release :target: https://pypi.python.org/pypi/django-oscar-api

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

    .. code-block:: python

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

    .. code-block:: python

    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.

.. _Documentation: https://django-oscar-api.readthedocs.io .. _Changelog: https://django-oscar-api.readthedocs.io/en/latest/changelog.html

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].