{"id":18722594,"url":"https://github.com/mdsumner/ozcran","last_synced_at":"2025-08-19T22:14:08.698Z","repository":{"id":72211672,"uuid":"198210243","full_name":"mdsumner/ozcran","owner":"mdsumner","description":"find info on Australian CRAN mirrors","archived":false,"fork":false,"pushed_at":"2019-07-22T13:43:35.000Z","size":35,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-05-19T16:13:22.432Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://mdsumner.github.io/ozcran/","language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mdsumner.png","metadata":{"files":{"readme":"README.Rmd","changelog":"NEWS.md","contributing":null,"funding":null,"license":null,"code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-07-22T11:30:05.000Z","updated_at":"2019-07-23T01:04:06.000Z","dependencies_parsed_at":null,"dependency_job_id":"6363c430-4140-4bfb-aac3-0556e9696ca8","html_url":"https://github.com/mdsumner/ozcran","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mdsumner/ozcran","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdsumner%2Fozcran","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdsumner%2Fozcran/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdsumner%2Fozcran/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdsumner%2Fozcran/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mdsumner","download_url":"https://codeload.github.com/mdsumner/ozcran/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mdsumner%2Fozcran/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271231131,"owners_count":24723059,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-19T02:00:09.176Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-07T13:42:09.604Z","updated_at":"2025-08-19T22:14:08.667Z","avatar_url":"https://github.com/mdsumner.png","language":"R","funding_links":[],"categories":[],"sub_categories":[],"readme":"---\noutput: github_document\n---\n\n\u003c!-- README.md is generated from README.Rmd. Please edit that file --\u003e\n\n```{r, include = FALSE}\nknitr::opts_chunk$set(\n  collapse = TRUE,\n  comment = \"#\u003e\",\n  fig.path = \"man/figures/README-\",\n  out.width = \"100%\"\n)\nlibrary(dplyr)\n```\n# ozcran\n\n\u003c!-- badges: start --\u003e\n[![Travis build status](https://travis-ci.org/mdsumner/ozcran.svg?branch=master)](https://travis-ci.org/mdsumner/ozcran)\n[![AppVeyor build status](https://ci.appveyor.com/api/projects/status/github/mdsumner/ozcran?branch=master\u0026svg=true)](https://ci.appveyor.com/project/mdsumner/ozcran)\n[![Codecov test coverage](https://codecov.io/gh/mdsumner/ozcran/branch/master/graph/badge.svg)](https://codecov.io/gh/mdsumner/ozcran?branch=master)\n\u003c!-- badges: end --\u003e\n\nThe goal of ozcran is to check the status and packages available from Australian CRAN mirrors. \n\n## Installation\n\nYou can install the development version from [GitHub](https://github.com/) with:\n\n``` r\n# install.packages(\"remotes\")\nremotes::install_github(\"mdsumner/ozcran\")\n```\n## Example\n\nThis is a basic example which gets the package list from Australian CRAN mirrors and\nprovides a quick summary. \n\n```{r example}\nlibrary(ozcran)\n\nlibrary(dplyr)\ndb \u003c- oz_db() \ndim(db)\n```\n\n`db` now is a data frame with lots of fields about every package, and reflects the status of at least five online mirrors. The mirror itself is named in the `repos` column. \n\nGroup by repository and find a summary of currency and number of packages. \n\n```{r example-group}\ndb %\u003e% group_by(repos) %\u003e% \n  summarize(n = n(), date = max(as.Date(Published), na.rm = TRUE)) %\u003e% \n  arrange(desc(date))\n\n```\n\nWe can also compare to the source CRAN mirror that is in Austria (no kangaroos). \n\n```{r include-austria}\noz_db(include_cran = TRUE) %\u003e% group_by(repos) %\u003e% \n  summarize(n = n(), date = max(as.Date(Published), na.rm = TRUE)) %\u003e% \n  arrange(desc(date))\n\n```\n\n\n---\n\n  \n  Please note that the 'ozcran' project is released with a\n  [Contributor Code of Conduct](https://CODE_OF_CONDUCT.md).\n  By contributing to this project, you agree to abide by its terms.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmdsumner%2Fozcran","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmdsumner%2Fozcran","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmdsumner%2Fozcran/lists"}