Linkify plain text
Project description
Convert URL-like and email-like strings into links.
Installation
pip install autolink
Usage
from autolink import linkify
linkify('some text google.com, ...')
# -> 'some text <a href="http://google.com">google.com</a>, ...'
linkify('https://github.com', {'rel': 'nofollow'})
# -> '<a href="https://github.com" rel="nofollow">https://github.com</a>'
linkify('me@ya.ru')
# -> '<a href="mailto:me@ya.ru">me@ya.ru</a>'
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
autolink-0.1.2.tar.gz
(4.5 kB
view hashes)