Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 875 Bytes

README.md

File metadata and controls

39 lines (32 loc) · 875 Bytes

AP-Project

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.

Setting Up:

  1. Install virtualenv:
$ pip3 install virtualenv
  1. Open a terminal in the project root directory and run:
$ virtualenv env
  1. Then run the command:
$ source env/bin/activate

In windows,

$ source env\Scripts\activate
  1. Then install the dependencies:
$ (env) pip3 install -r requirements.txt
  1. 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>)