Skip to content

SQLAlchemy object resource for django-tastypie. Currently written for baph (sqlalchemy innards for django)

Notifications You must be signed in to change notification settings

devhub/tastyalchemy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

tastyalchemy

SQLAlchemy object resource for django-tastypie

Usage

from baph.auth.models import User
from tastyalchemy import SQLAlchemyResource

class UserResource(SQLAlchemyResource):

    class Meta:
        resource_name = 'user'
        object_class = User
        allowed_methods = ['get', 'post', 'put', 'delete']
        excludes = ['password']

About

SQLAlchemy object resource for django-tastypie. Currently written for baph (sqlalchemy innards for django)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages