Skip to contents

This function finds packages among repositories belonging to a selected account. They are returned as a vector of strings, each element being a repository (and in most cases, package) name.

Usage

wood_github_packages(user, include_forks = FALSE)

Arguments

user

character(1)
Name of a user or organization.

include_forks

logical(1)
Whether to include packages forked from other accounts.

Value

A character vector of available packages.

Examples

# \donttest{
wood_github_packages("turtletopia")
#> [1] "aurrera"     "gglgbtq"     "ggpizza"     "openaccess"  "versionsort"
#> [6] "woodendesc" 
# I moved most my packages to turtletopia
wood_github_packages("ErdaradunGaztea", include_forks = TRUE)
#>  [1] "AmyloGraph"                "attachment"               
#>  [3] "fuzzydf"                   "httptest"                 
#>  [5] "icecream"                  "nsyllable"                
#>  [7] "pkgsearch"                 "playOmics"                
#>  [9] "Rwclust"                   "Shen-sq-similarity-kernel"
# }