Create an app that has one view function accessible via /storage/images/<filename> URL. It should return only the argument that it gets from the URL.
Intro to RESTful Flask
The URL Argument
Report a typo
Write a program in Python 3
from flask import Flask
app = Flask('main')
@app.route('your code here')
def main_view('code here'):
pass # code here
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.