Skip to content

Latest commit

History

12 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Github Trending API

This is A python API to get Github Trending(repos, developers) with Flask

API Docs

1, Trending Repos

Desc: Get Trending repos list

API: /api/github/trending/?since=(daily,weekly,monthly)

Method: GET

Request:

ParameterDescFormTypeOptionalRemark
langlanguagepathStringoptionalsimilar to github trending page
sincetime spanqueryStringoptionaldaily,weekly,monthly

Response:

A Repo list, each Repo including:

ParameterDescTypeRemark
avatarowner's avatar urlStringurl string
ownerowner nameString/
reporepo nameString/
descrepo descriptionString/
starsstars during the time spanString/
linkrepo addressString/

Example:

Request url:

http://anly.leanapp.cn/api/github/trending/java?since=weekly

Response data:

[{
avatar: "https://avatars3.githubusercontent.com/u/69631?v=3&s=40",desc: "A framework for building native apps with React.",link: "https://github.comfacebook/react-native",owner: "facebook",repo: "react-native",stars: 417
},
{
avatar: "https://avatars3.githubusercontent.com/u/4239472?v=3&s=40",desc: "A small android library to transition between a circular ImageView from one Activity to a rectangular ImageView in the launched Activity.",link: "https://github.comvikramkakkar/ImageTransition",owner: "vikramkakkar",repo: "ImageTransition",stars: 206
}]

2, Trending Developers

Desc: Get Trending Developers list

API: /api/github/trending/?since=(daily,weekly,monthly)

Method: GET

Request:

ParameterDescFormTypeOptionalRemark
langlanguagepathStringoptionalsimilar to github trending page
sincetime spanqueryStringoptionaldaily,weekly,monthly

Response:

A Developer list, each developer including:

ParameterDescTypeRemark
avatardeveloper's avatar urlStringurl string
namedeveloper nameString/
full_namedeveloper full nameStringoriginName(NickName)
linkdeveloper page linkString/

Example:

Request url:

http://anly.leanapp.cn/api/github/trending/developers/java?since=weekly

Response data:

[{
avatar: "https://avatars3.githubusercontent.com/u/69631?v=3&s=40",full_name: "facebook (Facebook)",link: "https://github.com/facebook",name: "facebook"
}, {
avatar: "https://avatars3.githubusercontent.com/u/4280789?v=3&s=40",full_name: "wangshaolei (fearless)",link: "https://github.com/wangshaolei",name: "wangshaolei"
}]

Other

Since I have an opensource project --- CoderPub need the github trending data, but Github DONOT provide the trending api for developer, so, wrote this project to grab the "Github Trending Page" and use BeautifulSoup to parser it, use Flask to provide the Trending API.

This project already deployed at LeanCloud, (free host, has limit).

You can use this URL: http://anly.leanapp.cn/ visit the api.

Wish Enjoy it.

About

Github trending restful API

Resources

Stars

24 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages