This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import json | |
from flask import Flask, send_file | |
from threading import Thread | |
import time | |
# Constants. These should not be tampered with. | |
app = Flask(__name__) | |
Thread(target=app.run, args=("0.0.0.0", 8080)).start() |
NewerOlder