Metadata-Version: 1.0
Name: urlunshort
Version: 0.2.0
Summary: Tools for detecting and expanding shortened URLs.
Home-page: http://bitbucket.org/runeh/urlunshort
Author: Rune Halvorsen
Author-email: runefh@gmail.com
License: BSD
Description: =============================================================
        urlunshort - Tools for detecting and expanding shortened URLs
        =============================================================
        
        Introduction
        ------------
        
        Urlunshort un-shortens URLs that have been created using a URL shortening
        services, like tinurl.com, bit.ly etc.
        
        Examples
        --------
        
        Resolve a short URL to a target URL
        
        >>> from urlunshort import resolve
        >>> resolve("http://bit.ly/qlKaI")
        'http://bitbucket.org/runeh/urlunshort/'
        
        Check if URLs are shortened
        
        >>> from urlunshort import is_shortened
        >>> is_shortened("http://bit.ly/qlKaI")
        True
        >>> is_shortened("http://www.opera.com")
        False
        
        
        Contact
        -------
        
        Author: Rune Halvorsen <runefh@gmail.com>
        Web site and issue tracker: http://bitbucket.org/runeh/urlunshort/
        
        Bug reports and patches appreciated.
        
        Changelog
        ---------
        
        See CHANGELOG file
        
        Home page and bug tracker:
        http://bitbucket.org/runeh/urlunshort
        
        License:
        BSD license. See the LICENSE file in the top level of the distribution
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
