Our vision is to motivate users that their privacy is worth protecting. The application's purpose is to enlighten the users on their digital footprint in terms of sentiment and location of their publicly shared information.
Install the below prerequisites on your development machine:
- Install Python 3
- Download and install pip Installation guide
- Back-end: Flask API Installation guide
- Setup Virtualenv for Python 3 Download and setup virtualenv
virtualenv -p python3 env
- Clone repository
- Navigate to the back-end folder and download python dependencies
pip3 install -r requirements.txt
Twitter and Microsoft Azure Face API keys are requires to run this app.
Face API https://azure.microsoft.com/en-au/try/cognitive-services/?api=face-api
Twitter API
Once you have the keys, you're required to create the following:
touch flask_website/local_settings.py
vi flask_website/local_settings.py
TWITTER_CONSUMER_KEY = ''
TWITTER_CONSUMER_SECRET = ''
TWITTER_ACCESS_TOKEN = ''
TWITTER_ACCESS_TOKEN_SECRET = ''
AZURE_FACE_API_TOKEN = ''