Skip to content

Instantly share code, notes, and snippets.

@topherPedersen
Created June 16, 2021 22:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save topherPedersen/020f72c8133cdfef3a311c01a372d721 to your computer and use it in GitHub Desktop.
Save topherPedersen/020f72c8133cdfef3a311c01a372d721 to your computer and use it in GitHub Desktop.
How to Serve Up Mobile and Desktop Versions of Your Website in Python with Flask
from flask import Flask, Response, render_template, request
app = Flask(__name__)
@app.route('/', methods=['GET', 'POST'])
def index():
user_agent = request.headers.get('User-Agent')
user_agent = user_agent.lower()
# In your templates directory, create a mobile version of your site (mobile.index.html).
# Likewise, add your desired desktop template as well (desktop.index.html).
if "iphone" in user_agent:
return render_template('mobile.index.html')
elif "android" in user_agent:
return render_template('mobile.index.html')
else:
return render_template('desktop.index.html')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment