{"id":13509323,"url":"https://github.com/marcelog/ex_rfc3986","last_synced_at":"2025-07-30T18:07:32.918Z","repository":{"id":29000989,"uuid":"32527916","full_name":"marcelog/ex_rfc3986","owner":"marcelog","description":"RFC3986 URI parser","archived":false,"fork":false,"pushed_at":"2017-01-22T21:23:11.000Z","size":38,"stargazers_count":10,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-26T18:41:23.919Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Elixir","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/marcelog.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-03-19T14:56:40.000Z","updated_at":"2023-09-01T10:45:45.000Z","dependencies_parsed_at":"2022-09-03T17:40:22.607Z","dependency_job_id":null,"html_url":"https://github.com/marcelog/ex_rfc3986","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/marcelog/ex_rfc3986","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcelog%2Fex_rfc3986","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcelog%2Fex_rfc3986/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcelog%2Fex_rfc3986/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcelog%2Fex_rfc3986/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/marcelog","download_url":"https://codeload.github.com/marcelog/ex_rfc3986/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcelog%2Fex_rfc3986/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267914151,"owners_count":24164661,"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-07-30T02:00:09.044Z","response_time":70,"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":"2024-08-01T02:01:06.174Z","updated_at":"2025-07-30T18:07:32.891Z","avatar_url":"https://github.com/marcelog.png","language":"Elixir","funding_links":[],"categories":["Text and Numbers"],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/marcelog/ex_rfc3986.svg)](https://travis-ci.org/marcelog/ex_rfc3986)\nRFC3986\n=======\n\nAn URI parser trying to be strictly compatible with [RFC3986](https://tools.ietf.org/html/rfc3986).\n\nThis project uses [ex_abnf](https://github.com/marcelog/ex_abnf) with the official [uri grammar](https://github.com/marcelog/ex_rfc3986/blob/master/priv/RFC3986.abnf)\n\n## Example\n\n    iex\u003e RFC3986.init # Call this one first to initialize the grammar.\n    iex\u003e {_matched_uri, _not_matched_input, result} = RFC3986.parse 'http://user:pass@elixir-lang.org:8812/docs/stable/elixir/Enum.html?k1%2A=v1\u0026k2=v2#fragment'\n    iex\u003e result\n    %RFC3986.Result{\n        fragment: 'fragment',\n        host: 'elixir-lang.org',\n        host_type: :reg_name,\n        password: 'pass',\n        port: 8812,\n        query: 'k1%2A=v1\u0026k2=v2',\n        query_string: %{'k1%2A' =\u003e 'v1', 'k2' =\u003e 'v2'},\n        scheme: 'http',\n        segments: ['docs', 'stable', 'elixir', 'Enum.html'],\n        type: :authority,\n        userinfo: 'user:pass',\n        username: 'user'\n      }\n\n\n## Using it with Mix\n\nTo use it in your Mix projects, first add it as a dependency:\n\n```elixir\ndef deps do\n  [{:ex_rfc3986, \"~\u003e 0.2.7\"}]\nend\n```\nThen run mix deps.get to install it.\n\n## License\nThe source code is released under Apache 2 License.\n\nCheck [LICENSE](https://github.com/marcelog/ex_abnf/blob/master/LICENSE) file for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarcelog%2Fex_rfc3986","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarcelog%2Fex_rfc3986","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarcelog%2Fex_rfc3986/lists"}