gh_repos {repurrrsive} | R Documentation |
GitHub repos
Description
Info on GitHub repos, retrieved from the GitHub API.
Usage
gh_repos
Format
A unnamed list with 6 components, each itself a list of 30 repos for a specific GitHub user. Each repo's component is a list of length >60, containing information such as name, owner (a list), fork status, and creation date.
Source
https://developer.github.com/v3/repos/#list-user-repositories
See Also
Other GitHub data and functions:
gh_users_json()
,
gh_users
Examples
str(gh_repos, max.level = 1)
str(gh_repos[[1]], max.level = 1)
str(gh_repos[[1]][[1]])
str(lapply(gh_repos[[1]][1:3], `[`, c("full_name", "created_at")))
[Package repurrrsive version 1.1.0 Index]