Rest implementation using Tastypie.
Project description
Description: thinrest
Very thin layer over Django to implement REST API using [Tastypie library](https://github.com/django-tastypie/django-tastypie).
Technology
* Python 2.7
* Django 1.5
* Tastypie 0.12.2
Aim
To build a simple interface that can provide for CRUD operations for two types of Database tables:
1. Column based e.g. EMPLOYEE(FIRST_NAME, LAST_NAME, ADDRESS, CITY, STATE, ZIP)
2. Key Value pairs e.g. SYSTEM_SETTINGS(SETTING_NAME, SETTING_VALUE)
Quick start
1. ```pip install thinrest```
2. Add `thinrest` to your `INSTALLED_APPS` setting:
```python
INSTALLED_APPS = (
...
'thinrest',
)
```
3. Include the thinrest URLs to a path of your choice
```python
patterns = ('',
...
url(r'^thinrest/', include('thinrest.urls')),
)
```
Very thin layer over Django to implement REST API using [Tastypie library](https://github.com/django-tastypie/django-tastypie).
Technology
* Python 2.7
* Django 1.5
* Tastypie 0.12.2
Aim
To build a simple interface that can provide for CRUD operations for two types of Database tables:
1. Column based e.g. EMPLOYEE(FIRST_NAME, LAST_NAME, ADDRESS, CITY, STATE, ZIP)
2. Key Value pairs e.g. SYSTEM_SETTINGS(SETTING_NAME, SETTING_VALUE)
Quick start
1. ```pip install thinrest```
2. Add `thinrest` to your `INSTALLED_APPS` setting:
```python
INSTALLED_APPS = (
...
'thinrest',
)
```
3. Include the thinrest URLs to a path of your choice
```python
patterns = ('',
...
url(r'^thinrest/', include('thinrest.urls')),
)
```
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
thinrest-2.0.0-py2-none-any.whl
(10.7 kB
view hashes)