Skip to content

Instantly share code, notes, and snippets.

@KTibow
Last active November 14, 2020 19:02
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 KTibow/6c7dba63dc6b93a53a2cbd486d1a5a11 to your computer and use it in GitHub Desktop.
Save KTibow/6c7dba63dc6b93a53a2cbd486d1a5a11 to your computer and use it in GitHub Desktop.
Who says that zoom's server can't be created in 5 lines?
from flask import Flask
app = Flask(__name__)
@app.route("/j/<meeting_id>")
def join(meeting_id):
return f"<iframe src='zoommtg://zoom.us/join?confno={meeting_id}' style='display: none;'></iframe>"

Make sure flask is installed with python3 -m pip install -U flask
Rename file to app.py in current directory
Run python3 -m flask run
Go to http://localhost:5000/j/12345 (replace 12345 with meeting ID)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment