changeset 361:5e0b4ec36013

add another textshaper thingy
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 04 Jul 2013 16:01:38 -0700
parents d0da972238d0
children ad10f719d160
files python/url2txt.py
diffstat 1 files changed, 17 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/python/url2txt.py	Thu Jul 04 16:01:38 2013 -0700
@@ -0,0 +1,17 @@
+#!/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:]))