Skip to content

Instantly share code, notes, and snippets.

View dangerangell's full-sized avatar
💭
I may be slow to respond.

Paul Angell dangerangell

💭
I may be slow to respond.
  • Greenville, SC
  • 15:59 (UTC -04:00)
View GitHub Profile
from tastypie.resources import ModelResource, ALL, ALL_WITH_RELATIONS
from tastypie import fields
from saas.models import Event, Environment, Job, Customer, Product
class ProductResource(ModelResource):
class Meta:
queryset = Product.objects.all()
resource_name = 'product'
allowed_methods = ['get']