Metadata-Version: 1.1
Name: autolink
Version: 0.1.2
Summary: Linkify plain text
Home-page: http://github.com/Suor/autolink
Author: Alexander Schepanovski
Author-email: suor.web@gmail.com
License: BSD
Description: Autolink
        ========
        
        Convert URL-like and email-like strings into links.
        
        
        Installation
        ------------
        
        ::
        
            pip install autolink
        
        
        Usage
        -----
        
        .. code:: python
        
        
            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>'
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Intended Audience :: Developers
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Python Modules
