Skip to content

Instantly share code, notes, and snippets.

@bohde
Created March 29, 2012 20:49
Show Gist options
  • Save bohde/2243635 to your computer and use it in GitHub Desktop.
Save bohde/2243635 to your computer and use it in GitHub Desktop.
example user resource
class UserResource(ModelResource):
api_key = fields.CharField('api_key__key', readonly=True)
class Meta:
queryset = User.objects.all()
authorization = Authorization()
resource_name = 'user'
# excludes = ['uuid','id','timestamp']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment