views.py 변경 stock 함수 내용 수정 requests, json 추가 stock_info 변수에 저장에서 넘겨줌 from django.shortcuts import render import requests import json def index(request): return render(request, 'stock/index.html', {}) def stock(request): headers = { 'Content-Type': 'application/json' } api_requests = requests.get('https://api.tiingo.com/tiingo/daily/aapl/prices?startDate=2021-01-02&tok..