{"id":32167192,"url":"https://github.com/primait/ex_fuzzywuzzy","last_synced_at":"2025-10-21T15:25:12.656Z","repository":{"id":53355992,"uuid":"347988688","full_name":"primait/ex_fuzzywuzzy","owner":"primait","description":null,"archived":false,"fork":false,"pushed_at":"2025-09-23T09:49:02.000Z","size":55,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":48,"default_branch":"master","last_synced_at":"2025-09-23T11:28:06.586Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Elixir","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/primait.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","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":"2021-03-15T13:52:02.000Z","updated_at":"2025-09-23T09:49:04.000Z","dependencies_parsed_at":"2025-09-23T15:17:47.311Z","dependency_job_id":null,"html_url":"https://github.com/primait/ex_fuzzywuzzy","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/primait/ex_fuzzywuzzy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/primait%2Fex_fuzzywuzzy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/primait%2Fex_fuzzywuzzy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/primait%2Fex_fuzzywuzzy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/primait%2Fex_fuzzywuzzy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/primait","download_url":"https://codeload.github.com/primait/ex_fuzzywuzzy/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/primait%2Fex_fuzzywuzzy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280284188,"owners_count":26304238,"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-10-21T02:00:06.614Z","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-10-21T15:25:07.610Z","updated_at":"2025-10-21T15:25:12.649Z","avatar_url":"https://github.com/primait.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ExFuzzywuzzy\n[![CI](https://github.com/primait/ex_fuzzywuzzy/actions/workflows/ci.yml/badge.svg)](https://github.com/primait/ex_fuzzywuzzy/actions/workflows/ci.yml)\n[![Module Version](https://img.shields.io/hexpm/v/ex_fuzzywuzzy.svg)](https://hex.pm/packages/ex_fuzzywuzzy)\n[![Hex Docs](https://img.shields.io/badge/hex-docs-lightgreen.svg)](https://hexdocs.pm/ex_fuzzywuzzy/)\n[![Total Download](https://img.shields.io/hexpm/dt/ex_fuzzywuzzy.svg)](https://hex.pm/packages/ex_fuzzywuzzy)\n[![License](https://img.shields.io/hexpm/l/ex_fuzzywuzzy.svg)](https://hex.pm/packages/ex_fuzzywuzzy)\n[![Last Updated](https://img.shields.io/github/last-commit/primait/ex_fuzzywuzzy/master)](https://github.com/primait/ex_fuzzywuzzy/commits/master)\n\nExFuzzyWuzzy is a fuzzy string matching library that provides many ways of calculating\na matching ratio between two strings, starting from a similarity function which can be\nbased on Levenshtein or Jaro-Winkler or a custom one.\n\nThe library is an Elixir port of SeatGeek's [fuzzywuzzy](https://github.com/seatgeek/fuzzywuzzy).\n\n## Installation\n\nTo install ExFuzzyWuzzy, just add an entry to your `mix.exs`:\n```elixir\ndef deps do\n  [\n    {:ex_fuzzywuzzy, \"~\u003e 0.3.0\"}\n  ]\nend\n```\n\n## Usage\n\u003c!--MDOC !--\u003e\n\nChoose the ratio function which fits best your needs among the available, \nproviding the two strings to be matched and - if needed - overwriting options \nover the configured ones.\n\nAvailable methods are:\n- Simple ratio\n- Quick ratio\n- Partial ratio\n- Token sort ratio\n- Partial token sort ratio\n- Token set ratio\n- Partial token set ratio\n- Best score ratio\n\nAvailable options are:\n- Similarity function (Levenshtein and Jaro-Winkler provided in library)\n- Case sensitiveness of match\n- Decimal precision of output score\n\nHere are some examples.\n\n### Simple ratio\n```elixir\niex\u003e ExFuzzywuzzy.ratio(\"this is a test\", \"this is a test!\")\n96.55\n```\n\n### Quick ratio\n```elixir\niex\u003e ExFuzzywuzzy.quick_ratio(\"this is a test\", \"this is a test!\")\n100.0\n```\n\n### Partial ratio\n```elixir\niex\u003e ExFuzzywuzzy.partial_ratio(\"this is a test\", \"this is a test!\")\n100.0\n```\n\n### Best Score ratio\n```elixir\niex\u003e ExFuzzywuzzy.best_score_ratio(\"this is a test\", \"this is a test!\")\n{:quick, 100.0}\n```\n\u003c!--MDOC !--\u003e\n\n## Contributing\nThank your for considering helping with this project. Please see\n`CONTRIBUTING.md` file for contributing to this project.\n\n## License\nMIT License. Copyright (c) 2015-2024 Prima.it\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprimait%2Fex_fuzzywuzzy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprimait%2Fex_fuzzywuzzy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprimait%2Fex_fuzzywuzzy/lists"}