Skip to content

Instantly share code, notes, and snippets.

@albertopasqualetto
Created May 7, 2024 06:25
Show Gist options
  • Save albertopasqualetto/3d825b9d17ec3c20dff2a484da057815 to your computer and use it in GitHub Desktop.
Save albertopasqualetto/3d825b9d17ec3c20dff2a484da057815 to your computer and use it in GitHub Desktop.
Server which serves a pdf file
from flask import Flask, send_file
app = Flask(__name__)
@app.route('/')
def index():
return send_file('main.pdf')
if __name__ == '__main__':
app.run(debug=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment