py-hyperlink/README.md

68 lines
2.3 KiB
Markdown
Raw Permalink Normal View History

2017-03-25 03:22:10 +02:00
# Hyperlink
*Cool URLs that don't change.*
<a href="https://hyperlink.readthedocs.io/en/latest/">
<img src="https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat" alt="Documentation">
</a>
<a href="https://pypi.org/project/hyperlink/">
2020-08-04 09:35:40 +03:00
<img src="https://img.shields.io/pypi/v/hyperlink.svg" alt="PyPI">
</a>
<a href="http://calver.org">
<img src="https://img.shields.io/badge/calver-YY.MINOR.MICRO-22bfda.svg" alt="Calendar Versioning">
</a>
<a href="https://pypi.org/project/hyperlink/">
<img src="https://img.shields.io/pypi/pyversions/hyperlink.svg" alt="Python Version Compatibility">
</a>
<a href="https://https://codecov.io/github/python-hyper/hyperlink?branch=master">
<img src="https://codecov.io/github/python-hyper/hyperlink/coverage.svg?branch=master" alt="Code Coverage">
</a>
<a href="https://requires.io/github/python-hyper/hyperlink/requirements/?branch=master">
<img src="https://requires.io/github/python-hyper/hyperlink/requirements.svg?branch=master" alt="Requirements Status">
</a>
2017-03-25 03:22:10 +02:00
Hyperlink provides a pure-Python implementation of immutable
URLs. Based on [RFC 3986][rfc3986] and [3987][rfc3987], the Hyperlink URL
makes working with both URIs and IRIs easy.
2017-03-25 03:22:10 +02:00
2019-12-29 19:30:02 +02:00
Hyperlink is tested against Python 2.7, 3.4, 3.5, 3.6, 3.7, 3.8, and PyPy.
2017-03-25 03:22:10 +02:00
Full documentation is available on [Read the Docs][docs].
[rfc3986]: https://tools.ietf.org/html/rfc3986
[rfc3987]: https://tools.ietf.org/html/rfc3987
[docs]: http://hyperlink.readthedocs.io/en/latest/
2017-03-25 03:22:10 +02:00
## Installation
Hyperlink is a pure-Python package and requires nothing but
Python. The easiest way to install is with pip:
```
pip install hyperlink
2017-03-25 03:22:10 +02:00
```
Then, hyperlink away!
```python
from hyperlink import URL
2017-03-25 03:22:10 +02:00
url = URL.from_text(u'http://github.com/python-hyper/hyperlink?utm_source=README')
utm_source = url.get(u'utm_source')
better_url = url.replace(scheme=u'https', port=443)
org_url = better_url.click(u'.')
2017-03-25 03:22:10 +02:00
```
See the full API docs on [Read the Docs][docs].
2017-03-25 03:22:10 +02:00
## More information
Hyperlink would not have been possible without the help of
2017-06-02 12:41:43 +03:00
[Glyph Lefkowitz](https://glyph.twistedmatrix.com/) and many other
community members, especially considering that it started as an
extract from the Twisted networking library. Thanks to them,
Hyperlink's URL has been production-grade for well over a decade.
2017-03-25 03:22:10 +02:00
Still, should you encounter any issues, do file an issue, or submit a
pull request.