Skip to content

Instantly share code, notes, and snippets.

@hassanabidpk
Created August 18, 2017 07:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hassanabidpk/d22f6702c51ee4290e8aeeefd4e23ee1 to your computer and use it in GitHub Desktop.
Save hassanabidpk/d22f6702c51ee4290e8aeeefd4e23ee1 to your computer and use it in GitHub Desktop.
Pycon Lunch serializer
from rest_framework import serializers
from food.models import Restaurant
class RestaurantSerializer(serializers.ModelSerializer):
class Meta:
model = Restaurant
fields = ('id', 'name', 'address', 'photo', 'tags', 'menu', 'pub_date')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment