This file contains hidden or 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
# Requires flask and requests | |
import flask | |
import requests | |
app = flask.Flask(__name__) | |
# ------- Actual Code ------- | |
@app.route("/cors_proxy/<path:urls>", methods=["GET", "POST"]) | |
def cors_proxy(urls): |