Skip to main content

A Django package that allows you to write APIs simply

Project description

https://badge.fury.io/py/requests.png https://pypip.in/d/requests/badge.png

django-simpleapi is an MIT Licensed django app, written in Python, for developers.

How many times have you wanted to create a simple JSON api in Django. I mean simple. There are great tools out their like * and * but sometimes you just want to send back some JSON.

This app makes it super simple to do that.

from simpleapi import api_handler

@api_handler
def get_some_yak(request):
    return {
        'yak': 'yummm'
    }

urlpatterns = patterns(
    '',
    url(r'^get/some/yak$', get_some_yak),
)
curl http://localhost:8000/get/some/yak

{
    "data": {
        "yak": "yummm"
    },
    "meta": {
        "code": 200
    }
}

Features

  • A Simple API for Django

  • Easy execption handling, creation

  • Easy addition to meta

Installation

To install Requests, simply:

$ pip install django-simpleapi

Documentation

This easyiest way to get started is to use the api_handler decorator.

from simpleapi import api_handler

@api_handler
def get_some_yak(request):
    return {
        'yak': 'yummm'
    }

Any view function that returns a dict object will work with this interface.

Next, often in APIs you need to fail for some reason. Validation, missing params, you name it. There is an easy way to make that happen SimpleHttpException

from simpleapi import api_handler, SimpleHttpException

@api_handler
def get_some_yak(request):
    required_param = request.GET.get('required_param')

    if required_param is None:
        raise SimpleHttpException("Missing required_param", 'missing-required-param', 400)

    return {
        'yak': 'yummm'
    }

Now when you request this view and forget to pass required_param you would see something like this.

curl http://localhost:8000/get/some/yak

{
    "meta": {
        "code": 400,
        "error_message": "Missing required_param",
        "error_slug": "missing-required-param"
    }
}

Not only will the HTTP Status code be in the meta response, it will also be the HTTP Code sent back. Error slug is helpfull in resolving exceptions progrmattically. It’s mucher easier then relying on string grepping to figure out what went wrong.

Finally, you might want to add you own information to the meta part of the envelope. This would helpfull for passing information like pagination information.

from simpleapi import api_handler

@api_handler
def get_some_yak(request):
    request.META['_simple_api_meta']['yak_count'] = 1

    return {
        'yak': 'yummm'
    }

The response would now look something like this.

curl http://localhost:8000/get/some/yak

{
    "data": {
        "yak": "yummm"
    },
    "meta": {
        "code": 200,
        "yak_counter": 1
    }
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-simpleapi-1.0.tar.gz (3.3 kB view details)

Uploaded Source

File details

Details for the file django-simpleapi-1.0.tar.gz.

File metadata

File hashes

Hashes for django-simpleapi-1.0.tar.gz
Algorithm Hash digest
SHA256 f177159f3b67ba1eba22604c6c0bc5ee1ace6603c44bf32c2a13982222b0451a
MD5 9a44f7e08831de9ac789d43611a622f1
BLAKE2b-256 c0171e5e1c8919c658e9675a3486597964e46523b4365293a5e9562745ffc973

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page