Skip to content

Instantly share code, notes, and snippets.

@chris-surge
chris-surge / intro.md
Last active May 4, 2018 00:34
Links mentioned, future reading and places to explore. From the webinar "Intro to python"
@chris-surge
chris-surge / extract.py
Created May 3, 2018 21:24
Extracted source code for "Intro to Python"
from django.conf.urls import url, include
from django.contrib import admin
from django.db import models
from rest_framework import serializers, viewsets, routers
# DATA MODEL: expected to be in `models.py`
class Flavor(models.Model):
name = models.CharField(max_length=30)
def __str__(self):