Automated Birthday wishing app using python with features to schedule B'day wishes using SMS and Email service.Insert,update and delete custom message and schedule birthday wish with an option to get import from google contacts.
- Install
virtualenv
:
$ pip3 install virtualenv
- Open a terminal in the project root directory and run:
$ virtualenv env
- Then run the command:
$ source env/bin/activate
In windows,
$ source env\Scripts\activate
- Then install the dependencies:
$ (env) pip3 install -r requirements.txt
- Finally start the web server:
$ (env) python3 app.py
This server will start on port 5000 by default. You can change this in app.py
by changing the following line to this:
if __name__ == "__main__":
app.run(debug=False, port=<desired port>)