{"id":13501298,"url":"https://github.com/python-hyper/hyperlink","last_synced_at":"2025-05-15T10:01:39.886Z","repository":{"id":46180121,"uuid":"82321340","full_name":"python-hyper/hyperlink","owner":"python-hyper","description":"🔗 Immutable, Pythonic, correct URLs.","archived":false,"fork":false,"pushed_at":"2023-02-10T04:08:32.000Z","size":1102,"stargazers_count":287,"open_issues_count":32,"forks_count":42,"subscribers_count":16,"default_branch":"master","last_synced_at":"2025-05-12T05:16:38.417Z","etag":null,"topics":["internet","python","rfc-3986","url","url-parsing"],"latest_commit_sha":null,"homepage":"https://hyperlink.readthedocs.io/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/python-hyper.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2017-02-17T17:28:01.000Z","updated_at":"2025-05-07T03:08:21.000Z","dependencies_parsed_at":"2023-02-16T23:31:33.868Z","dependency_job_id":null,"html_url":"https://github.com/python-hyper/hyperlink","commit_stats":{"total_commits":708,"total_committers":28,"mean_commits":"25.285714285714285","dds":0.6002824858757062,"last_synced_commit":"ec7d17268809f89f044e04d71225d6a6e4df264d"},"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/python-hyper%2Fhyperlink","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/python-hyper%2Fhyperlink/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/python-hyper%2Fhyperlink/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/python-hyper%2Fhyperlink/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/python-hyper","download_url":"https://codeload.github.com/python-hyper/hyperlink/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254319715,"owners_count":22051072,"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","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":["internet","python","rfc-3986","url","url-parsing"],"created_at":"2024-07-31T22:01:32.106Z","updated_at":"2025-05-15T10:01:39.707Z","avatar_url":"https://github.com/python-hyper.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"# Hyperlink\n\n*Cool URLs that don't change.*\n\n\u003ca href=\"https://hyperlink.readthedocs.io/en/latest/\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat\" alt=\"Documentation\"\u003e\n\u003c/a\u003e\n\u003ca href=\"https://pypi.org/project/hyperlink/\"\u003e\n    \u003cimg src=\"https://img.shields.io/pypi/v/hyperlink.svg\" alt=\"PyPI\"\u003e\n\u003c/a\u003e\n\u003ca href=\"http://calver.org\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/calver-YY.MINOR.MICRO-22bfda.svg\" alt=\"Calendar Versioning\"\u003e\n\u003c/a\u003e\n\u003ca href=\"https://pypi.org/project/hyperlink/\"\u003e\n    \u003cimg src=\"https://img.shields.io/pypi/pyversions/hyperlink.svg\" alt=\"Python Version Compatibility\"\u003e\n\u003c/a\u003e\n\u003ca href=\"https://https://codecov.io/github/python-hyper/hyperlink?branch=master\"\u003e\n    \u003cimg src=\"https://codecov.io/github/python-hyper/hyperlink/coverage.svg?branch=master\" alt=\"Code Coverage\"\u003e\n\u003c/a\u003e\n\u003ca href=\"https://requires.io/github/python-hyper/hyperlink/requirements/?branch=master\"\u003e\n    \u003cimg src=\"https://requires.io/github/python-hyper/hyperlink/requirements.svg?branch=master\" alt=\"Requirements Status\"\u003e\n\u003c/a\u003e\n\nHyperlink provides a pure-Python implementation of immutable\nURLs. Based on [RFC 3986][rfc3986] and [3987][rfc3987], the Hyperlink URL\nmakes working with both URIs and IRIs easy.\n\nHyperlink is tested against Python 2.7, 3.4, 3.5, 3.6, 3.7, 3.8, and PyPy.\n\nFull documentation is available on [Read the Docs][docs].\n\n[rfc3986]: https://tools.ietf.org/html/rfc3986\n[rfc3987]: https://tools.ietf.org/html/rfc3987\n[docs]: http://hyperlink.readthedocs.io/en/latest/\n\n## Installation\n\nHyperlink is a pure-Python package and requires nothing but\nPython. The easiest way to install is with pip:\n\n```\npip install hyperlink\n```\n\nThen, hyperlink away!\n\n```python\nfrom hyperlink import URL\n\nurl = URL.from_text(u'http://github.com/python-hyper/hyperlink?utm_source=README')\nutm_source = url.get(u'utm_source')\nbetter_url = url.replace(scheme=u'https', port=443)\norg_url = better_url.click(u'.')\n```\n\nSee the full API docs on [Read the Docs][docs].\n\n## More information\n\nHyperlink would not have been possible without the help of\n[Glyph Lefkowitz](https://glyph.twistedmatrix.com/) and many other\ncommunity members, especially considering that it started as an\nextract from the Twisted networking library. Thanks to them,\nHyperlink's URL has been production-grade for well over a decade.\n\nStill, should you encounter any issues, do file an issue, or submit a\npull request.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpython-hyper%2Fhyperlink","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpython-hyper%2Fhyperlink","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpython-hyper%2Fhyperlink/lists"}