GitHub Email Extractor Server
Server code for the chrome extension to fetch the email ID of a user even if they haven't made it public on their GitHub profile. Uses Redis for caching.
- Setup environment
pip install virtualenv
virtualenv venv --python=python3.6
source venv/bin/activate
- Install Redis.
wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make
sudo make install
- Run server
python app.py
Open localhost:5000
- Follow this page for Redis related issues.