Как бы я перенес данные из файла Python в файл HTML?

#python #html #api #data-transfer

Вопрос:

Я пытался взять данные из API с помощью Python и отобразить их на HTML-странице, но все, что я пробовал до сих пор, похоже, не работает! Я пробовал использовать Flask для отображения переменных Python, но серверы, похоже, не работают! Вот мой код на Python:

ScratchDBtest.py

 #imports all the required assets
import requests
import json
import sys
from time import sleep



#this fetches data from API
response = requests.get("https://scratchdb.lefty.one/v2/user/info/"   input("Enter Username: "))
#organises data
def jprint(object):
    #create a formatted string
    text = json.dumps(object, sort_keys = True, indent = 5)
    print(text)

#print(response.status_code)






answer = response.json()

#jprint(answer)

query_time = response.json()['query_time']
if not query_time < 10:
    followers = response.json()['followers']
    status = response.json()['status']
    username = response.json()['username']
    bio = response.json()['bio']
    country = response.json()['country']
    following = response.json()['following']
    result = username   " has "   str(followers)   " followers and has a scratcher status of "   status   ". The user lives in "   country
else:
    result = "An error occured. This account is not real or hasn't been logged into the database yet!"

#typewriting effect
for characters in result:
    sleep(0.01)
    sys.stdout.write(characters)
    sys.stdout.flush()
 

В этом случае я хочу, чтобы переменная «результат» отображалась в HTML-файле. У меня еще нет никакого HTML-кода, но имя файла ScratchDBtest.html

Было бы очень признательно, если бы кто-нибудь мог помочь! Спасибо!