added base stuff

This commit is contained in:
Yamozha
2021-02-05 01:25:02 +02:00
parent de8ae5800f
commit b3195368ee
16 changed files with 216 additions and 0 deletions

View File

View File

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

View File

@ -0,0 +1,5 @@
from django.apps import AppConfig
class HomeConfig(AppConfig):
name = 'home'

View File

View File

@ -0,0 +1,6 @@
from django.db import models
class Ticker(models.Model):
f = open("../currency.txt","r")
a = f.readline()
print(a)

View File

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

View File

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.