{"id":24093216,"url":"https://github.com/umd-lib/solrizer","last_synced_at":"2026-03-11T05:01:58.540Z","repository":{"id":250897405,"uuid":"835778992","full_name":"umd-lib/solrizer","owner":"umd-lib","description":"RDF to Solr document converter microservice","archived":false,"fork":false,"pushed_at":"2026-03-04T01:48:26.000Z","size":85008,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":7,"default_branch":"main","last_synced_at":"2026-03-04T02:34:28.532Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://umd-lib.github.io/solrizer/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/umd-lib.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-07-30T14:09:47.000Z","updated_at":"2026-02-25T15:54:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"fb5c207e-1bf5-4e83-aa2d-8b2028e9070e","html_url":"https://github.com/umd-lib/solrizer","commit_stats":null,"previous_names":["umd-lib/solrizer"],"tags_count":20,"template":false,"template_full_name":null,"purl":"pkg:github/umd-lib/solrizer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umd-lib%2Fsolrizer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umd-lib%2Fsolrizer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umd-lib%2Fsolrizer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umd-lib%2Fsolrizer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/umd-lib","download_url":"https://codeload.github.com/umd-lib/solrizer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/umd-lib%2Fsolrizer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30372125,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T21:41:54.280Z","status":"online","status_checked_at":"2026-03-11T02:00:07.027Z","response_time":84,"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":"2025-01-10T09:26:08.814Z","updated_at":"2026-03-11T05:01:58.534Z","avatar_url":"https://github.com/umd-lib.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# solrizer\n\nRDF to Solr document converter microservice\n\n## Configuration\n\nSee `solrizer.web`\n\n## Development Setup\n\nRequires Python 3.12\n\n```zsh\ngit clone git@github.com:umd-lib/solrizer.git\ncd solrizer\npython -m venv --prompt \"solrizer-py$(cat .python-version)\" .venv\nsource .venv/bin/activate\n```\n\nCurrently (2025-05-06), Solrizer requires a patched version of the \n[python-edtf](https://pypi.org/project/edtf/) module to correctly \nhandle certain Level 2 [EDTF](https://www.loc.gov/standards/datetime/)\ndate ranges, and it should be installed before the other dependencies. \n\n```zsh\npip install git+https://github.com/peichman-umd/python-edtf.git@68f0b36deee03a355e6bec9f255d718f0d9f032b\npip install -e '.[dev,test]'\n```\n\nThe [Dockerfile](Dockerfile) includes this patch as well.\n\nCreate a `.env` file with the following contents:\n\n```\nFLASK_DEBUG=1\nSOLRIZER_FCREPO_ENDPOINT={URL of fcrepo instance}\nSOLRIZER_FCREPO_JWT_SECRET={shared secret for generating auth tokens}\nSOLRIZER_IIIF_IDENTIFIER_PREFIX=fcrepo:\nSOLRIZER_IIIF_MANIFESTS_URL_PATTERN={URI template for IIIF manifests}\nSOLRIZER_IIIF_THUMBNAIL_URL_PATTERN={URI template for IIIF thumbnail images}\nSOLRIZER_INDEXERS_FILE=indexers.yml\nSOLRIZER_INDEXER_SETTINGS_FILE=indexer-settings.yml\nSOLRIZER_HANDLE_PROXY_PREFIX={URL of handle proxy server}\nSOLRIZER_SOLR_QUERY_ENDPOINT={URL of Solr query service}\n```\n\nIn the IIIF URI templates, use `{+id}` as the placeholder for the IIIF \nidentifier.\n\n### Running\n\n```zsh\nflask --app solrizer.web run\n```\n\nThe application will be available at \u003chttp://localhost:5000\u003e\n\n### Tests\n\n```zsh\npytest\n```\n\nWith coverage information:\n\n```zsh\npytest --cov src --cov-report term-missing tests\n```\n\n### API Documentation\n\n```zsh\npdoc solrizer\n```\n\nAPI documentation generated by [pdoc](https://pdoc.dev/)\nwill be available at \u003chttp://localhost:8080/\u003e.\n\nTo serve the documentation on an alternate port:\n\n```zsh\npdoc -p 8888 solrizer\n```\n\nNow the documentation will be at \u003chttp://localhost:8888/\u003e.\n\n### Docker Image\n\nBuild the image:\n\n```zsh\ndocker build -t docker.lib.umd.edu/solrizer .\n```\n\nRun, using the `.env` file set up earlier:\n\n```zsh\ndocker run --rm -it -p 5000:5000 --env-file .env docker.lib.umd.edu/solrizer\n```\n\n## License\n\nSee the [LICENSE](LICENSE.md) file for license rights and\nlimitations (Apache 2.0).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fumd-lib%2Fsolrizer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fumd-lib%2Fsolrizer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fumd-lib%2Fsolrizer/lists"}