Skip to content

Simple API for getting trending repositories on GitHub

License

Notifications You must be signed in to change notification settings

ecrmnn/trending-github-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

trending-github-go

Simple API for getting trending repositories on GitHub

Travis

Installation

go get github.com/ecrmnn/trending-github-go

Usage

import trending "github.com/ecrmnn/trending-github-go"
trending.All("daily")
// Returns []Repository for all languages today

trending.Language("Go", "weekly")
// Returns []Repository for a specific language this week
type Repository struct {
	author      string
	name        string
	href        string
	description string
	language    string
	stars       int
	forks       int
}

License

MIT © Daniel Eckermann

About

Simple API for getting trending repositories on GitHub

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages