https://github.com/wgwz/twilio-flask-conference-call
A simple conference call implemented with Twilio and Flask
https://github.com/wgwz/twilio-flask-conference-call
conference-call flask python twilio twiml
Last synced: 6 months ago
JSON representation
A simple conference call implemented with Twilio and Flask
- Host: GitHub
- URL: https://github.com/wgwz/twilio-flask-conference-call
- Owner: wgwz
- License: mit
- Created: 2021-05-24T23:25:21.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-05T00:33:43.000Z (over 4 years ago)
- Last Synced: 2025-02-14T07:46:53.938Z (8 months ago)
- Topics: conference-call, flask, python, twilio, twiml
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Implement a Simple Conference Call with Twilio and Flask
Full tutorial can be found here:
This code configures a simple conference call using Twilio Twiml
and Flask.## Getting Started
This includes some of the basics for running the application however
you will need to make use of the Twilio console. You can follow the
article linked above to get up and running.### Installing
```
$ python3 -m venv venv
$ . venv/bin/activate
$ pip install -r requirements.txt
```### Running locally
Run the flask development server
```
(venv) $ flask run
```Run ngrok
```
(venv) $ ngrok http 5000
```## Built With
* [Flask](https://flask.palletsprojects.com/)
* [Twilio Python](https://github.com/twilio/twilio-python)
* [pyngrok](https://pyngrok.readthedocs.io/en/latest/index.html)## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details