{"id":19007531,"url":"https://github.com/helgee/remotefiles.jl","last_synced_at":"2025-07-22T09:09:30.512Z","repository":{"id":47263664,"uuid":"83395957","full_name":"helgee/RemoteFiles.jl","owner":"helgee","description":"Download files from the Internet and keep them up-to-date.","archived":false,"fork":false,"pushed_at":"2022-09-12T08:07:50.000Z","size":250,"stargazers_count":49,"open_issues_count":4,"forks_count":8,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-19T23:30:55.669Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Julia","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/helgee.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-02-28T06:05:09.000Z","updated_at":"2023-12-18T07:24:53.000Z","dependencies_parsed_at":"2022-08-25T23:11:59.927Z","dependency_job_id":null,"html_url":"https://github.com/helgee/RemoteFiles.jl","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/helgee/RemoteFiles.jl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helgee%2FRemoteFiles.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helgee%2FRemoteFiles.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helgee%2FRemoteFiles.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helgee%2FRemoteFiles.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/helgee","download_url":"https://codeload.github.com/helgee/RemoteFiles.jl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helgee%2FRemoteFiles.jl/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266463447,"owners_count":23932900,"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-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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-08T18:38:41.925Z","updated_at":"2025-07-22T09:09:30.471Z","avatar_url":"https://github.com/helgee.png","language":"Julia","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RemoteFiles\n\n*Download files from the Internet and keep them up-to-date.*\n\n[![Build Status](https://github.com/helgee/RemoteFiles.jl/workflows/CI/badge.svg)](https://github.com/helgee/RemoteFiles.jl/actions) [![codecov.io][codecov-badge]][codecov-url] [![Docs Stable][docs-badge-stable]][docs-url-stable] [![Docs Latest][docs-badge-dev]][docs-url-dev]\n\n## Installation\n\nThe package can be installed through Julia's package manager:\n\n```julia\nPkg.add(\"RemoteFiles\")\n```\n\n## Quickstart\n\nRemote files are declared through the `@RemoteFile` macro:\n\n```julia\nusing RemoteFiles\n\n@RemoteFile(JULIA_BINARY, \"https://status.julialang.org/download/win64\",\n    file=\"julia-nightly-x64.exe\", updates=:daily)\n\n# Download the file if it is out-of-date\ndownload(JULIA_BINARY)\n\n# Check whether the file has been downloaded\nisfile(JULIA_BINARY)\n\n# Get the path\npath(JULIA_BINARY)\n```\n\nBy default the file is downloaded to `Pkg.dir(CURRENT_PACKAGE)/data`.\nThis can be customized with the `dir` keyword argument to the `@RemoteFile` macro.\n\n`RemoteFile`s can be grouped together in a `RemoteFileSet`:\n```julia\n@RemoteFileSet BINARIES \"Julia Binaries\" begin\n    win = @RemoteFile \"https://julialang-s3.julialang.org/bin/winnt/x64/0.7/julia-0.7.0-win64.exe\"\n    osx = @RemoteFile \"https://julialang-s3.julialang.org/bin/osx/x64/0.7/julia-0.7.0-osx10.7+.dmg\"\nend\n\n# Download all of them\n\ndownload(BINARIES)\n```\n\nNote that there is also a function-interface with `RemoteFile` and\n`RemoteFileSet`, see their docstrings.\n\nRemoteFiles.jl will try to download files via the [cURL](https://curl.haxx.se/) command-line tool\nby default and automatically fall back to use [wget](https://www.gnu.org/software/wget/) or\n[HTTP.jl](https://github.com/JuliaWeb/HTTP.jl) if the download fails or the respective binaries\nare not available.\n\n## Documentation\n\nRead the [documentation][docs-url-stable].\n\n[travis-badge]: https://travis-ci.org/helgee/RemoteFiles.jl.svg?branch=master\n[travis-url]: https://travis-ci.org/helgee/RemoteFiles.jl\n[av-badge]: https://ci.appveyor.com/api/projects/status/nr2fv8tngcru03k0?svg=true\n[av-url]: https://ci.appveyor.com/project/helgee/remotefiles-jl\n[coveralls-badge]: https://coveralls.io/repos/helgee/RemoteFiles.jl/badge.svg?branch=master\u0026service=github\n[coveralls-url]: https://coveralls.io/github/helgee/RemoteFiles.jl?branch=master\n[codecov-badge]: http://codecov.io/github/helgee/RemoteFiles.jl/coverage.svg?branch=master\n[codecov-url]: http://codecov.io/github/helgee/RemoteFiles.jl?branch=master\n[docs-badge-dev]: https://img.shields.io/badge/docs-dev-blue.svg\n[docs-url-dev]: https://helgee.github.io/RemoteFiles.jl/dev/\n[docs-badge-stable]: https://img.shields.io/badge/docs-stable-blue.svg\n[docs-url-stable]: https://helgee.github.io/RemoteFiles.jl/stable/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelgee%2Fremotefiles.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhelgee%2Fremotefiles.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelgee%2Fremotefiles.jl/lists"}