Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 16 days 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 (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-06T00:49:31.000Z (4 months ago)
- Last Synced: 2024-10-14T09:10:34.353Z (24 days 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: 3
- 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
[![Build Status](https://travis-ci.org/prabhakar267/github-email-extractor-server.svg?branch=master)](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.[![Chrome Store](https://raw.githubusercontent.com/prabhakar267/github-classifier/master/assets/images/chrome-store.png)](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.