GithubHelp home page GithubHelp logo

pombredanne / django-todomvc Goto Github PK

View Code? Open in Web Editor NEW

This project forked from adonescunha/django-todomvc

0.0 1.0 0.0 14 KB

TodoMVC backend built as a Django app

License: MIT License

Makefile 5.61% Python 94.39%

django-todomvc's Introduction

django-todomvc

PyPI version Build Status Coverage Status Requirements Status

TodoMVC backend built as a Django app.

Installation

Install todomvc via pip:

$ pip install django-todomvc

Add todomvc to INSTALLED_APPS:

INSTALLED_APPS = (
    # Other apps
    'todomvc'
)

At least, include todomvc URLs:

# urls.py

urlpatterns = patterns(
    '',
    # Other patterns
    (r'^/todo', include('todomvc.urls'))
)

Endpoints

GET /tasks/

Lists tasks already created.

Response

Status: 200 OK

[
  {
    "id": 1,
    "title": "Buy groceries",
    "completed": false
  },
  {
    "id": 2,
    "title": "Do laundry",
    "completed": true
  }
]

POST /tasks/

Creates a new task.

Request

{
  "title": "Buy groceries"
}

Response

Status: 201 Created

{
  "id": 1,
  "title": "Buy groceries",
  "completed": false
}

GET /tasks/:id/

Retrieves a task.

Response

Status: 200 OK

{
  "id": 1,
  "title": "Buy groceries",
  "completed": false
}

PUT /tasks/:id/

Allows a full update of a task. Both title and completed arguments must be provided.

Request

{
  "title": "Buy groceries",
  "completed": true
}

Response

Status: 200 OK

{
  "id": 1,
  "title": "Buy groceries",
  "completed": true
}

PATCH /tasks/:id/

Allows a partial update of a task.

Request

{
  "completed": true
}

Response

Status: 200 OK

{
  "id": 1,
  "title": "Buy groceries",
  "completed": true
}

DELETE /tasks/:id/

Removes a task.

Response

Status: 204 No content

MIT Licensed

See the LICENSE file for details.


Adones Cunha

django-todomvc's People

Contributors

adonescunha avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.