A Django package that allows you to write APIs simply
Project description
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
File details
Details for the file django-simpleapi-1.4.0.tar.gz
.
File metadata
- Download URL: django-simpleapi-1.4.0.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fae2bfdaaec288c44059412a905a326850e55bd78d6771215a4f9bceafae49c1 |
|
MD5 | a842852620d55fd8feba68dc1b802fd9 |
|
BLAKE2b-256 | e3ca63afa2079e292ee832610b1203ae752ce8792b337916073886aa9a606530 |