An API that lets you discover unknown GitHub repositories
gimme-repos is a wrapper of the GitHub API. It provides you routes with certain parameters so that you discover unknown repositories.
Parameters available for all routes:
Name | Type | Description |
---|---|---|
language |
string |
The main language used in this repository |
Repositories with less than 20 stars.
GET /reallyunknown
Repositories between 20 and 100 stars.
GET /unknown
Repositories between 100 and 1000 stars.
GET /maybeknown
Repositories with more than 1000 stars.
GET /known
{
"items":
[
{
"name": "gimme-repos",
"owner": {
"login": "TrAyZeN",
"avatar_url": "https://avatars0.githubusercontent.com/u/31016188?v=4"
},
"html_url": "https://github.com/TrAyZeN/gimme-repos",
"description": "An API that lets you discover unknown GitHub repositories",
"size": 360,
"stargazers_count": 1337,
"language": "go",
"forks": 42,
"open_issues": 314
}
]
}
git clone https://github.com/TrAyZeN/gimme-repos.git
cd gimme-repos
go install
MIT TrAyZeN