All Projects → kyleconroy → gitlicense

kyleconroy / gitlicense

Licence: MIT license
REST API for determining what license a repo has

Programming Languages

python
139335 projects - #7 most used programming language

GitLicense

REST API for discovering the license for a github repository.

Usage

curl -i http://gitlicense.herokuapp.com/{user}/{repo}

The return value will be a JSON object of the following form.

{
    repo: ":user",
    user: ":repo",
    license: "MIT License"
}

Supported Licenses

  • MIT license (MIT)
  • ISC License (ISC)
  • Apache License 2.0 (Apache-2.0)
  • GNU General Public License, version 2 (GPL-2.0)
  • GNU General Public License, version 3 (GPL-3.0)
  • GNU AFFERO GENERAL PUBLIC LICENSE, Version 3 (AGPL-3.0)
  • BSD License
  • Modified BSD License
  • Artisitic License 2.0
  • Mozilla Public License
  • Python Software Foundation License Version 2

TODO

  • Improve the license matching algorithm
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].