Skip to content

GitHub Organizational Analysis for calculating score of all members of any GitHub organisation and top contributors of all repositories.

Notifications You must be signed in to change notification settings

akshatvg/github-orgs-api

 
 

Repository files navigation

github-orgs-api


For calculating score of all members of any github organisation and top contributors of all repositories.

view original docs deployment


Some features

  • GitHub Graph API
  • Interchangable organization leaderboard
  • Top contributors for organizations
  • Repository specific metadata for organizations
  • Pluggable caching layer
  • Automatic Scheduled cache update
  • Manual cache update

Getting Started

You can use this application easily just by changing the following credentials..

  • Redis server url (optional)
  • Name of the organization
  • Github api key

This project uses .env. To configure, simply make a file named .env in the root of your project and add the following lines to it.

# GitHub token
TOKEN=<Your github token, under developer settings on GitHub>

# organization handle on GitHub 
ORGANIZATION=<Name of the organization as specified in GitHub>

# redis URI
REDIS_URL=<your redis url>

How to use

Clone the repository and add the above credentials.

git clone https://github.com/CodeChefVIT/github-orgs-api.git
cd github-orgs-api
pip install -r requirements.txt
## Create .env (see sample above) 

Ways to run

  • Regular mode: run this if you do not want a caching layer in your application. Will drastically increase response time but save the cost of having a caching service
python api_server.py
  • Caching mode: run this if you want a caching layer in your application. Will drastically decrease response latency.
python api_server.py --with-cache

How it works

Algorithm: It uses github api and fetches the information about members, all the repositories in that organization, members contribution in those repository. The application scrolls through all the repositories that belong to this organization. and using that it calculates contribution a particular individual based on his contribution to that repository.

Action Weightage
stargazers count 10
watchers count 10
forks count 15
contributions 40

d[contributors['login']] += project[1] * 10 + project[2] * 5 +project[3] * 15 + contributors['contributions'] * 40

Caching: When the --with-cache flag is provided, all responses are served from a cache. This cache is updated daily. This significantly decreases response latency since github api provides only 10 requests per minute.


Limitations

  • Only 30 repositories can be fetched from the API at one time.
  • Only 10 requests can be made to the API per minute.

Mitigation

  • Pluggable caching layer
  • Cron cache seed
  • Manual cache seed ( because heroku dynos go to sleep after 30 minutes of inactivity )

Built With

Built by

Contributors

  • Shubham Bhardwaj
  • Apurva Nitanjay
  • Angad Sharma

References

See FAQs

About

GitHub Organizational Analysis for calculating score of all members of any GitHub organisation and top contributors of all repositories.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 66.5%
  • SCSS 19.4%
  • JavaScript 9.9%
  • Python 2.3%
  • HTML 1.9%