Giter Club home page Giter Club logo

todo-restful-api-falcon's Introduction

todo-restful-api-falcon

Simple TODO RESTful API on Falcon framework.

HTTP Method URI Action
GET http://[hostname]/api/v0.1/task Retrieve list of tasks
GET http://[hostname]/api/v0.1/task/[task_id] Retrieve a task
POST http://[hostname]/api/v0.1/task Create a new task
PUT http://[hostname]/api/v0.1/task/[task_id] Update an existing task
DELETE http://[hostname]/api/v0.1/task/[task_id] Delete a task
POST http://[hostname]/api/v0.1/auth Create account

The task has the following fields:

  • id: unique identifier for tasks. ObjectId type.
  • owner: author of tasks. ReferenceField(User object).
  • title: short task description. StringField.
  • body: long task description. StringField.
  • timestamp: date of creation. ComplexDateTimeField.
  • done: task completion state. BooleanField.
  • tags: tags to which the task belongs. ListField(StringField).

The user has the following fields:

  • username: user login. StringField.
  • email: user email. EmailField.
  • first_name: user first name StringField.
  • last_name: user last name. StringField.
  • password_hash: user password. StringField.

Quickstart

First you must install MongoDB and set up settings.py. Install pipenv and config virtualenv

$ pip install pipenv
$ pipenv install
$ pipenv shell
(todo-restful-api-falcon)$ python server.py

Registrate:

$ curl -d '{
	"username": "User",
	"email": "[email protected]",
	"password": "good pass"
}' -H "Content-Type: application/json" -X POST http://localhost:8000/api/v0.1/auth

Response:

{"msg": "OK", "description": "User 'User' created!"}

Create new task:

$ curl -u 'User':'good pass' -d '{
    "title": "Buy products",
    "body": "buy bread, milk and asparagus.",
    "tags": [
            "Shopping"
    ]
}' -H "Content-Type: application/json" -X POST http://localhost:8000/api/v0.1/task

Response:

{
   "error":false,
   "msg":"Task created!",
   "data":{
      "task":[
         {
            "id":"5b5068a08124f432fef08ed0",
            "owner":"User",
            "title":"Buy products",
            "body":"buy bread, milk and asparagus.",
            "timestamp":"2018-07-19 13:32:00.372132",
            "done":"False",
            "tags":[
               "Shopping"
            ]
         }
      ]
   }
}

Get all task:

$ curl -u 'User':'good pass' -X GET http://localhost:8000/api/v0.1/task

Response:

{
   "data":{
      "tasks":[
         {
            "id":"5b5068a08124f432fef08ed0",
            "owner":"User",
            "title":"Buy products",
            "body":"buy bread, milk and asparagus.",
            "timestamp":"2018-07-19 13:32:00.372132",
            "done":"False",
            "tags":[
               "Shopping"
            ]
         }
      ],
      "total":1
   },
   "error":false,
   "msg":"Task(s) successfully retrieved."
}

Update task:

curl -u 'User':'good pass' -d '{
    "title": "Buy products",
    "body": "buy bread, milk and asparagus and juice.",
    "tags": [
            "Shopping"
    ]
}' -H "Content-Type: application/json" -X PUT http://localhost:8000/api/v0.1/task/5b5068a08124f432fef08ed0

Response:

{
   "data":{
      "task":[
         {
            "id":"5b5068a08124f432fef08ed0",
            "owner":"User",
            "title":"Buy products",
            "body":"buy bread, milk and asparagus and juice.",
            "timestamp":"2018-07-19 13:32:00.372132",
            "done":"False",
            "tags":[
               "Shopping"
            ]
         }
      ]
   },
   "error":false,
   "msg":"Task updated!"
}

Delete task:

curl -u 'User':'good pass' -X DELETE http://localhost:8000/api/v0.1/task/5b5068a08124f432fef08ed0

Response:

{
   "data":{
      "task":[
         {
            "id":"5b5068a08124f432fef08ed0",
            "owner":"User",
            "title":"Buy products",
            "body":"buy bread, milk and asparagus and juice.",
            "timestamp":"2018-07-19 13:32:00.372132",
            "done":"False",
            "tags":[
               "Shopping"
            ]
         }
      ]
   },
   "error":false,
   "msg":"Task deleted!"
}

todo-restful-api-falcon's People

Contributors

andrewmaximoff avatar

Watchers

 avatar

Forkers

swallahfx

todo-restful-api-falcon's Issues

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.