We Recommend

Learning Python Learning Python
The authors of Learning Python show you enough essentials of the Python scripting language to enable you to begin solving problems right away, then reveal more powerful aspects of the language one at a time. This approach is sure to appeal to programmers and system administrators who have urgent problems and a preference for learning by semi-guided experimentation.


Posted By

abhiomkar on 03/12/07


Tagged

python delicious


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

Hirmine


Check del.icio.us link


Published in: Python 


  1. #
  2. # Get Statistics from Del.icio.us for a given URL
  3. # Author: Abhinay Omkar < abhiomkar AT gmail.com >
  4. #
  5. # GPLed
  6.  
  7. import re,urllib2,sys
  8. url = sys.argv[1]
  9.  
  10. print "Fetching..."
  11.  
  12. try:
  13. # How many did tag the url...
  14. raw = urllib2.urlopen("http://del.icio.us/url/check?url="+url).read()
  15. URL = re.compile(r'<input name="url" size="30" value="(.*)"/>').search(raw).group()[35:-3]
  16. print
  17. print "URL: "+URL,
  18. print "("+re.compile(r'this url has been saved by (.*) people').search(raw).group()+")"
  19.  
  20. # list tags
  21. print "Tags :",
  22. for tag in re.compile(r'<a href="/tag/(.*)" class="').findall(raw):
  23. print tag,
  24.  
  25. except:
  26. print
  27. print "Failed to fetch "+url+". Or no one has tagged it."

Report this snippet 

You need to login to post a comment.