{"id":14067059,"url":"https://github.com/phillc73/backblazer","last_synced_at":"2026-01-29T11:48:51.799Z","repository":{"id":49022359,"uuid":"49987062","full_name":"phillc73/backblazer","owner":"phillc73","description":"R package for Backblaze's B2 API","archived":false,"fork":false,"pushed_at":"2025-03-11T13:51:45.000Z","size":74,"stargazers_count":8,"open_issues_count":1,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-30T01:11:21.752Z","etag":null,"topics":["backblaze","backblaze-api","cloud-storage","r"],"latest_commit_sha":null,"homepage":null,"language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/phillc73.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"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,"zenodo":null}},"created_at":"2016-01-19T22:17:01.000Z","updated_at":"2025-03-11T13:51:50.000Z","dependencies_parsed_at":"2025-07-30T00:37:44.070Z","dependency_job_id":"e24870b5-9455-485a-af61-e67e1f6ca7a3","html_url":"https://github.com/phillc73/backblazer","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/phillc73/backblazer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phillc73%2Fbackblazer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phillc73%2Fbackblazer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phillc73%2Fbackblazer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phillc73%2Fbackblazer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/phillc73","download_url":"https://codeload.github.com/phillc73/backblazer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phillc73%2Fbackblazer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28876832,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T10:31:27.438Z","status":"ssl_error","status_checked_at":"2026-01-29T10:31:01.017Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["backblaze","backblaze-api","cloud-storage","r"],"created_at":"2024-08-13T07:05:24.707Z","updated_at":"2026-01-29T11:48:51.767Z","avatar_url":"https://github.com/phillc73.png","language":"R","readme":"Backblazer\n=======\n[![CRAN version](http://www.r-pkg.org/badges/version/backblazer)](http://cran.rstudio.com/web/packages/backblazer/index.html)\n[![CRAN Downloads](http://cranlogs.r-pkg.org/badges/grand-total/backblazer)](http://cran.rstudio.com/web/packages/backblazer/index.html)\n[![Build Status](https://travis-ci.org/phillc73/backblazer.svg?branch=master)](https://travis-ci.org/phillc73/backblazer)\n\nAn R package with bindings to the [Backblaze B2 API](https://www.backblaze.com/b2/docs/). \n\nThis package provides convenience functions for the Backblaze B2\ncloud storage API. All B2 API calls are mapped to equivalent R functions.\nThis package allows R programs upload, download and delete files from B2.\n\n## Quick start\n\n### Install\n\nThe released version is available from CRAN\n\n```r\ninstall.packages(\"backblazer\")\nlibrary(\"backblazer\")\n```\nInstall the development version from GitLab\n\n```r\n# install.packages(\"devtools\")\ndevtools::install_git(\"https://gitlab.com/phillc73/backblazer.git\")\nlibrary(\"backblazer\")\n```\n\nOr the development version from GitHub if you prefer \n(identical to the GitLab development version)\n\n```r\n# install.packages(\"devtools\")\ndevtools::install_github(\"phillc73/backblazer\")\nlibrary(\"backblazer\")\n```\n\n### Required Packages\n\nThe following additional R packages are required.\n\n```r\n# Requires a minimum of version 1.0.0\nlibrary(\"httr\")\n# Requires a minimum of version 0.9.19\nlibrary(\"jsonlite\")\n# Requires a minimum of version 0.9.1\nlibrary(\"openssl\")\n# Requires a minimum of version 3.2.3. Included in base R.\nlibrary(\"tools\")\n```\n\n## Supported Functions\n\n```\n?b2AuthorizeAccount\n?b2CreateBucket\n?b2DeleteBucket\n?b2DeleteFileVersion\n?b2DownloadFilebyId\n?b2DownloadFileByName\n?b2GetFileInfo\n?b2GetUploadUrl\n?b2HideFile\n?b2ListBuckets\n?b2ListFileNames\n?b2ListFileVersions\n?b2UpdateBucket\n?b2UploadFile\n```\nThis list covers all Backblaze B2 API functions. Each function contains documented descriptions for their use. All mandatory parameters are included for the functions to operate. Some optional parameters are included. It is currently possible to upload, download, list, hide and delete files in a Backblaze B2 account using this package.\n\n### How to Use\n\nA [more detailed vignette is available](https://github.com/phillc73/backblazer/blob/master/vignettes/backblazer-howToUse.Rmd) with details regarding how to use each of these functions.\n\nPlease refer directly to the [Backblaze B2 API documentation](https://www.backblaze.com/b2/docs/) for even further information.\n\n## Status\n\nThis should be largely complete and covers all Backblaze B2 API calls.\n\nCurrent Version: 0.2\n\n### Issues\n\nProblems? Something just doesn't work?\n\n[Submit issues here](https://gitlab.com/phillc73/backblazer/issues).\n\n## Links\n\n* [Backblaze B2](https://www.backblaze.com/b2/cloud-storage.html)\n* [Backblaze B2 Documentation](https://www.backblaze.com/b2/docs/)\n* [Author's Website](http://www.starkingdom.co.uk)\n* [Author on Twitter](https://twitter.com/_starkingdom)\n\n## Disclaimer\n\nThe `backblazer` package is provided with absolutely no warranty. All `backblazer` functions have been tested and should work, but they may not work as you think they do. Be careful with your stuff. Things may go wrong. Author accepts no responsibility for lost, damaged or otherwise soiled files. \n","funding_links":[],"categories":["R"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphillc73%2Fbackblazer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphillc73%2Fbackblazer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphillc73%2Fbackblazer/lists"}