License: MIT Build Status

Installation

First, clone this repository to your local computer:

git clone https://github.com/profilator/profilator.git
cd profilator

Then install the necessary packages with pip:

pip3 install -r requirements.txt 

You may want to use virtualenv to avoid installing dependencies system-wide, like this:

python -m venv ENV
source ENV/bin/activate
pip3 install -r requirements.txt

You will also need Twitter token, obtainable from here. Create file ‘/source/token/token.json’ with following content:

{
  "consumer_key": " ",
  "consumer_secret": " ",
  "access_token_key": " ",
  "access_token_secret": " "
}

Next, head to the source folder, and start the dev server on localhost:5000:

cd source
python app.py