{"id":13740856,"url":"https://github.com/ryanfb/iiif-dl","last_synced_at":"2026-03-04T21:32:48.273Z","repository":{"id":48692345,"uuid":"39205588","full_name":"ryanfb/iiif-dl","owner":"ryanfb","description":"Command-line tile downloader/assembler for IIIF endpoints/manifests","archived":false,"fork":false,"pushed_at":"2021-07-14T00:54:38.000Z","size":34,"stargazers_count":35,"open_issues_count":3,"forks_count":2,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-06-18T08:07:03.231Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ryanfb.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}},"created_at":"2015-07-16T15:36:50.000Z","updated_at":"2025-06-02T03:17:33.000Z","dependencies_parsed_at":"2022-09-08T08:11:32.831Z","dependency_job_id":null,"html_url":"https://github.com/ryanfb/iiif-dl","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ryanfb/iiif-dl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryanfb%2Fiiif-dl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryanfb%2Fiiif-dl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryanfb%2Fiiif-dl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryanfb%2Fiiif-dl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ryanfb","download_url":"https://codeload.github.com/ryanfb/iiif-dl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryanfb%2Fiiif-dl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30093835,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T20:42:30.420Z","status":"ssl_error","status_checked_at":"2026-03-04T20:42:30.057Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":[],"created_at":"2024-08-03T04:00:52.991Z","updated_at":"2026-03-04T21:32:48.245Z","avatar_url":"https://github.com/ryanfb.png","language":"Ruby","funding_links":[],"categories":["Image Tools","Download utilities"],"sub_categories":["Image viewers (Image API only)","Application-specific"],"readme":"# iiif-dl\n\n[![Docker Cloud Build Status](https://img.shields.io/docker/cloud/build/ryanfb/iiif-dl)](https://hub.docker.com/r/ryanfb/iiif-dl/)\n\nCommand-line tile downloader/assembler for IIIF endpoints/manifests.\n\nDownload full-resolution image sequences from any IIIF server.\n\nCurrently not compatible with IIIF 3.0. See [this issue](https://github.com/ryanfb/iiif-dl/issues/12).\n\nSee also: [dzi-dl](https://github.com/ryanfb/dzi-dl/), [dezoomify](https://github.com/lovasoa/dezoomify), [dezoomify-rs](https://github.com/lovasoa/dezoomify-rs)\n\n## Requirements\n\n * Ruby\n * [Bundler](http://bundler.io/)\n * [ImageMagick](http://www.imagemagick.org/)\n \n## Usage\n\n    bundle install\n    bundle exec ./iiif-dl.rb --help\n    \n    Usage: iiif-dl.rb [options] [iiif-manifest.json]\n        -f, --force-tiling               Don't attempt full-size downloads without tiling\n        -i, --identifier IDENTIFIER      Download single IIIF identifier IDENTIFIER instead of image sequence from manifest JSON\n        -h, --help                       Display this screen\n    \n    bundle exec ./iiif-dl.rb iiif-manifest.json\n    bundle exec ./iiif-dl.rb -i http://example.com/iiif/IIIF_SHELFMARK_0001\n\nYou can download an IIIF manifest from e.g. the [Digital Bodleian](http://digital.bodleian.ox.ac.uk/):\n\n![Digital Bodleian IIIF manifest download](http://i.imgur.com/WQLemyw.png)\n\nAlternately, if you have [PhantomJS](http://phantomjs.org/) installed, you can use `jsonreqs.js` to list all URLs ending in `.json` requested by a given webpage URL:\n\n    phantomjs jsonreqs.js 'http://example.com/viewer.asp?manuscript=shelfmark'\n\nIn single-identifier mode, you pass the URL of an IIIF identifier, i.e. what `/info.json` would be appended to in order to make [an Image Information Request](https://iiif.io/api/image/2.1/#image-information-request).\n\n## Docker Usage\n\nThere's also [an automated build for this repository on Docker Hub at `ryanfb/iiif-dl`](http://hub.docker.com/r/ryanfb/iiif-dl). It defines an `ENTRYPOINT` which will start `iiif-dl.rb` and pass any other arguments or environment variables to it, as well as defining a `/data` volume which you can map to your host to store manifests and images. For example, if you were in a directory with a IIIF manifest named `manifest.json`, you could download it with:\n\n    docker run -t -v $(pwd):/data ryanfb/iiif-dl manifest.json\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryanfb%2Fiiif-dl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fryanfb%2Fiiif-dl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryanfb%2Fiiif-dl/lists"}