Skip to content

Instantly share code, notes, and snippets.

View Nitrooos's full-sized avatar

Bartosz Kostaniak Nitrooos

View GitHub Profile
@Nitrooos
Nitrooos / proxy.py
Last active April 28, 2020 21:47
Simple proxy decorator in Python (with Flask and Requests)
import requests
from flask import Flask, request, Response, make_response
app = Flask(__name__)
DESTINATION_URL = 'http://any-external-service/'
def proxy_1(view_function):