https://github.com/greyli/flask-twilio-starter
Starter project for Twilio with Python and Flask
https://github.com/greyli/flask-twilio-starter
Last synced: about 2 months ago
JSON representation
Starter project for Twilio with Python and Flask
- Host: GitHub
- URL: https://github.com/greyli/flask-twilio-starter
- Owner: greyli
- License: mit
- Created: 2020-12-16T01:49:50.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-16T05:12:51.000Z (over 4 years ago)
- Last Synced: 2025-03-24T05:44:27.816Z (about 2 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Flask Twilio Starter
This is a simple Twilio starter project with Flask and Twilio Python SDK.
## Installation
Clone the repo and build the environment:
```
$ git clone https://github.com/greyli/flask-twilio-starter
$ cd flask-twilio-starter
$ python3 -m venv venv # use python -m venv venv" on Windows
$ . venv/bin/activate # use "venv\Scripts\activate" on Windows
(venv) $ pip install -r requirements.txt
```Rename the `.env.example` to `.env`, fill the variables in it (You will need to register a free [Twilio account](http://www.twilio.com/referral/w6qBg0)).
Run the application with:
```
(venv) $ flask run
```Then open http://localhost:5000 to test.