{"id":24085477,"url":"https://github.com/falleng0d/atelier_loopfinder","last_synced_at":"2026-06-12T11:31:51.170Z","repository":{"id":140680944,"uuid":"579726688","full_name":"falleng0d/atelier_loopfinder","owner":"falleng0d","description":"Python cli tool to find crafting loops in atelier games","archived":false,"fork":false,"pushed_at":"2022-12-28T23:26:32.000Z","size":80,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-22T11:07:54.260Z","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/falleng0d.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-12-18T17:47:52.000Z","updated_at":"2022-12-18T18:15:46.000Z","dependencies_parsed_at":"2025-11-22T11:02:03.675Z","dependency_job_id":null,"html_url":"https://github.com/falleng0d/atelier_loopfinder","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/falleng0d/atelier_loopfinder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falleng0d%2Fatelier_loopfinder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falleng0d%2Fatelier_loopfinder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falleng0d%2Fatelier_loopfinder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falleng0d%2Fatelier_loopfinder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/falleng0d","download_url":"https://codeload.github.com/falleng0d/atelier_loopfinder/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falleng0d%2Fatelier_loopfinder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34243051,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-12T02:00:06.859Z","response_time":109,"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-10T01:43:06.862Z","updated_at":"2026-06-12T11:31:51.163Z","avatar_url":"https://github.com/falleng0d.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Atelier Loopfinder \n\nPython cli tool to find crafting loops in atelier games\n\nCurrently only supports Atelier Ryza: Ever Darkness \u0026 the Secret Hideout\n\nI will keep adding support for more games as I play them\n\n## Usage\n```bash\nUsage: main.py [OPTIONS] COMMAND [ARGS]...\n\nOptions:\n  --help  Show this message and exit.\n\nCommands:\n  loops   Find all loops of size {--size}\n  search  Find all items that matches\n  uses    Find all items that uses {--item-name} as ingredient\n```\n\n###  Configuration\n\nOnly recipes with a \"X\" on the include column of ryza_recipes.csv will be loaded.\n\nThis is useful for excluding items that are not craftable in your current playthrough progress.\n\n## Examples\n\n### Find all loops of size 3 starting from item \"Flour\"\n```bash\n\u003e python .\\main.py loops --size=3 \"Flour\"  \n```\n```\nFound 2 loops of size 3\n- Flour[Flour] -\u003e [Flour]Poison Cube\n    then Poison Cube[(Gas)] -\u003e [(Gas)]Bug Net\n        Effects:\n                Poison Cube: [Synth Quantity +1, Synth Quantity +2]\n\n- Flour[Flour] -\u003e [Flour]Delicious Bait\n    then Delicious Bait[(Fruit)] -\u003e [(Fruit)]Mixing Oil\n```\n\n### Find all loops of size 3 starting from item \"Natural Cloth\"\n\nNote the use of --simplified-output to not show the matching type/recipe requirements\n```bash\n\u003e python .\\main.py loops --size=3 --simplified-output \"Natural Cloth\"\n```\n```\nFound 5 loops of size 3\nNatural Cloth -\u003e Glass Flower -\u003e Alchemy Fibers\nNatural Cloth -\u003e Puni Leather -\u003e Beastial Air\nNatural Cloth -\u003e Green Supplement -\u003e Alchemy Fibers\nNatural Cloth -\u003e Zettel -\u003e Alchemy Fibers\n```\n\n### Find all items that uses \"Natural Cloth\" as ingredient\n```bash\n\u003e python .\\main.py uses --item-name \"Natural Cloth\"\n```\n```\nFound 17 items that uses Natural Cloth as ingredient\nGlass Flower\nForest Bell\nPlant Seed\nPuni Leather\nRadiant Plate\nSkuller Coat\nFrost Armor\nFairy Cloak\nGrass Beans\nGreen Supplement\nZettel\nAlchemy Fibers\nKurken Sweats\nNoble Tunic\nLeather Protector\nChain Vest\nBorder Scale\n```\n\n### Find all items that matches \"cloth\"\n```bash\n\u003e python .\\main.py search \"cloth\"\n```\n```\nFound 2 items named cloth\n\n  Name:         Cloth\n  Types:        (Cloth)\n  Recipe:       (Thread), (Animal Product), (Supplement)\n\n  Name:         Natural Cloth\n  Types:        (Cloth), (Plant)\n  Recipe:       Alchemy Fibers, Plant Essence, (Plant), (Animal Product)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffalleng0d%2Fatelier_loopfinder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffalleng0d%2Fatelier_loopfinder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffalleng0d%2Fatelier_loopfinder/lists"}