{"id":35032252,"url":"https://github.com/maxb2/recipe-scrapers-sage","last_synced_at":"2026-05-21T11:32:08.577Z","repository":{"id":183503806,"uuid":"670245247","full_name":"maxb2/recipe-scrapers-sage","owner":"maxb2","description":null,"archived":false,"fork":false,"pushed_at":"2025-01-27T16:39:58.000Z","size":738,"stargazers_count":2,"open_issues_count":5,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-22T14:32:18.794Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","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/maxb2.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":null,"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},"funding":{"github":["maxb2"],"ko_fi":"maxb2"}},"created_at":"2023-07-24T15:57:03.000Z","updated_at":"2024-10-30T23:02:33.000Z","dependencies_parsed_at":null,"dependency_job_id":"59843100-a10f-4ccd-b649-d9affe9b4ac1","html_url":"https://github.com/maxb2/recipe-scrapers-sage","commit_stats":null,"previous_names":["maxb2/recipe-scrapers-sage"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/maxb2/recipe-scrapers-sage","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxb2%2Frecipe-scrapers-sage","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxb2%2Frecipe-scrapers-sage/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxb2%2Frecipe-scrapers-sage/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxb2%2Frecipe-scrapers-sage/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maxb2","download_url":"https://codeload.github.com/maxb2/recipe-scrapers-sage/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxb2%2Frecipe-scrapers-sage/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28075332,"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-12-27T02:00:05.897Z","response_time":58,"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-12-27T07:15:28.898Z","updated_at":"2025-12-27T07:15:29.496Z","avatar_url":"https://github.com/maxb2.png","language":"Python","funding_links":["https://github.com/sponsors/maxb2","https://ko-fi.com/maxb2"],"categories":[],"sub_categories":[],"readme":"# recipe-scrapers-sage\n\n\n[![GitHub Workflow Status (with branch)](https://img.shields.io/github/actions/workflow/status/maxb2/recipe-scrapers-sage/ci.yml?branch=main\u0026style=flat-square)](https://github.com/maxb2/recipe-scrapers-sage/actions/workflows/ci.yml)\n[![codecov](https://codecov.io/github/maxb2/recipe-scrapers-sage/branch/main/graph/badge.svg?token=UAPS01UJEG)](https://codecov.io/github/maxb2/recipe-scrapers-sage)\n[![PyPI](https://img.shields.io/pypi/v/recipe-scrapers-sage?style=flat-square)](https://pypi.org/project/recipe-scrapers-sage/)\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/recipe-scrapers-sage?style=flat-square)](https://pypi.org/project/recipe-scrapers-sage/#history)\n[![Libraries.io dependency status for latest release](https://img.shields.io/librariesio/release/pypi/recipe-scrapers-sage?style=flat-square)](https://libraries.io/pypi/recipe-scrapers-sage)\n\nThis is a helper package to save data acquired through [recipe-scrapers](https://github.com/hhursev/recipe-scrapers/) in a format that is importable by [RecipeSage](https://github.com/julianpoy/RecipeSage) ([JSON-LD](https://en.wikipedia.org/wiki/JSON-LD), [implemented here](https://github.com/julianpoy/RecipeSage/blob/master/packages/backend/src/services/json-ld.js#L3-L34)).\n\n\n## Install\n\n```bash\npip install recipe-scrapers-sage\n```\n\n## Usage\n\nTo directly export a scraped recipe, use the `export_recipe` function:\n\n```python\nfrom recipe_scrapers import scrape_me\nfrom recipe_scrapers_sage import export_recipe\n\nscraper = scrape_me(\"\u003cRECIPE URL\u003e\")\n\nsage_json: dict = export_recipe(scraper)\n\n# write `sage_json` to a file that RecipeSage can import\n```\n\nIf you wish to modify a scraped recipe, use the `RecipeSage` class:\n\n```python\nfrom recipe_scrapers import scrape_me\nfrom recipe_scrapers_sage import RecipeSage\n\nscraper = scrape_me(\"\u003cRECIPE URL\u003e\")\n\nrecipe_sage = RecipeSage.from_scraper(scraper)\n\nrecipe_sage.creditText = \"\u003cCREDIT TEXT\u003e\"\n\nsage_json: dict = recipe_sage.to_json_ld()\n\n# write `sage_json` to a file that RecipeSage can import\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxb2%2Frecipe-scrapers-sage","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaxb2%2Frecipe-scrapers-sage","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxb2%2Frecipe-scrapers-sage/lists"}