weather station powered by django

This commit is contained in:
2020-09-14 08:55:15 -05:00
parent bf39d71900
commit cc073d6734
16 changed files with 226 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def index(request):
return HttpResponse("Home Weather")