Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Django REST Framework RESTful Django Create Serializers

Abdulla Alshubbar
Abdulla Alshubbar
31,298 Points

Django REST Framework (Model Serlializer Quiz Question)

Here is the question:

Great! Now create a ModelSerializer for each of the three models, Game, Player, and Score. Name them ModelNameSerializer, e.g. PlayerSerializer. Remember to set the model attribute in the class Meta.

My code won't get accepted ! anything wrong with it ?

scorekeeper/serializers.py
from rest_framework import serializers
from . import models

class GameSerializer(serializers.ModelSerializer):
    class Meta:
        model = Game

class PlayerSerializer(serializers.ModelSerializer):
    class Meta:
        model = Player

class ScoreSerializer(serializers.ModelSerializer):
    class Meta:
        model = Score

3 Answers

David Axelrod
David Axelrod
36,073 Points

Hey Abdulla!

Just on their own, Player, Game and Score are not defined.

Try accessing them though models.<ClassName>

Quinn Zepeda
Quinn Zepeda
15,175 Points

Mine is also failing with models.classname

from rest_framework import serializers from . import models

class GameSerializer(serializer.ModelSerializer): class Meta: model = models.Game

class PlayerSerializer(serializer.ModelSerializer): class Meta: model = models.Player

class ScoreSerializer(serializer.ModelSerializer): class Meta: model = models.Score

add model = models.Game

and so on for other two