Stream Our Mistakes EP 003 In this episode, we will be working creating a REST API endpoint using Django REST Framework. This will be a multi part series as I plan to use this backend with a Xamarin Android application. No guarantees it is going to work but I will attempt it anyways. This podcast/blog isn't called stream our mistakes for nothing aye? I looked over a few youtube videos, this blog post and the excellent Django Rest Documentation . Since this repo is not public, here is the code snippets that are relevant to the video. Please note: This project assumes you have already implemented Django Rest Framework in your project. In the Serializers.py file: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 from rest_framework import serializer from django.contrib.auth.models import User class UserCreateSerializer (serializers . ModelSerializer): class Meta : model = User fields = ( '
weekly podcast live coding with our user group