Skip to content

Instantly share code, notes, and snippets.

View Jawschamp's full-sized avatar

Jaws Jawschamp

View GitHub Profile
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()