view python/url2txt.py @ 369:11cf7018ebff

new crappy package for helping me with http://k0s.org/portfolio/python/python-tools.txt
author Jeff Hammel <jhammel@mozilla.com>
date Sun, 21 Jul 2013 05:27:28 -0700
parents 5e0b4ec36013
children 38dd72d72086
line wrap: on
line source

#!/usr/bin/env python

# xclip -o | sed 's/_//' | sed 's/.html//'

def url2txt(url):
    """gets the text equivalent of a URL"""
    url = url.rstrip('/')
    if '/' in url:
        url = url.rsplit('/')[-1]
    if '.' in url:
        url = url.split('.', 1)[0]
    url = url.replace('_', ' ')
    return url

if __name__ == '__main__':
    import sys
    print url2txt(' '.join(sys.argv[1:]))