Skip to content

Instantly share code, notes, and snippets.

@RobSpectre
Created August 7, 2012 21:20
Show Gist options
  • Save RobSpectre/3289474 to your computer and use it in GitHub Desktop.
Save RobSpectre/3289474 to your computer and use it in GitHub Desktop.
Karaoke Mic
import flask
from twilio import twiml
app = flask.Flask(__name__)
@app.route('/mic', methods=['POST'])
def karaoke():
response = twiml.Response()
with response.dial() as dial:
dial.conference("Karaoke Party Room")
return str(response)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment