https://github.com/prabhakar267/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
https://github.com/prabhakar267/github-email-extractor-server
chrome chrome-extension email flask github github-profile private
Last synced: 3 months ago
JSON representation
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
- Host: GitHub
- URL: https://github.com/prabhakar267/github-email-extractor-server
- Owner: prabhakar267
- License: mit
- Created: 2018-07-07T12:20:42.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-07-06T00:49:31.000Z (12 months ago)
- Last Synced: 2025-03-26T09:04:31.674Z (3 months ago)
- Topics: chrome, chrome-extension, email, flask, github, github-profile, private
- Language: Python
- Homepage: https://github.com/prabhakar267/github-email-extractor
- Size: 21.5 KB
- Stars: 5
- Watchers: 2
- Forks: 4
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [GitHub Email Extractor](https://github.com/prabhakar267/github-email-extractor) Server
[](https://travis-ci.org/prabhakar267/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](https://redis.io) for caching.[](https://github.com/prabhakar267/github-email-extractor)
### Setup Instructions
+ 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### Troubleshooting
+ Follow [this](https://redis.io/topics/quickstart) page for Redis related issues.