pydelicious

pydeliciousには、
feedparseが必要だそうだ。
http://www.feedparser.org/


でpydeliciousは
Google Code Archive - Long-term storage for Google Code Project Hosting.からゲット。

みんなのpythonに載っていたサンプルを見ながら端折りながらテスト。

>>> import pydelicious
>>> r=pydelicious.getrss(tag="python",popular=True)
>>> for item in r:
...     print item.href, ":", item.description
... 
http://www.playgroundblues.com/posts/2007/dec/02/django-basic-apps/ : Django Basic Apps
http://xkcd.com/353/ : xkcd - A webcomic of romance, sarcasm, math, and language - By Randall Munroe
http://blogcosm.com/media/blogmaker/release/README.html : Blogmaker™ blog application for Django
http://www.b-list.org/weblog/2007/dec/03/making-magic/ : The B-List: Making magic
http://www.interactivesupercomputing.com/products/starpandpython.php : Star-P® for Python Users
http://mark.dufour.googlepages.com/home : Shed Skin - Python to C++ optimizing compiler
http://www.oreillynet.com/onlamp/blog/2007/12/animation_pipelines_in_python.html : Animation Pipelines in Python, and the Linux Kernel: Woot! - O'Reilly ONLamp Blog
http://www.philhassey.com/blog/2007/12/05/pyrex-from-confusion-to-enlightenment/ : Phil Hassey » Blog Archive » Pyrex - from confusion to enlightenment
http://www.ibiblio.org/obp/thinkCSpy/index.xhtml : How to Think Like a Computer Scientist: Learning with Python
http://codefork.com/blog/index.php/2007/12/05/pimping-pythons-property/ : codefork.com » Blog Archive » Pimping Python’s property()
http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/146262 : ASPN : Python Cookbook : Finite State Machine (FSM)
http://www.arunrocks.com/blog/archives/2007/12/04/work-faster-in-windows-with-launchy-and-a-few-python-scripts/ : Work Faster in Windows With Launchy and a few Python Scripts at ArunRocks
http://hackety.org/2007/12/04/thoseImpressiveNodeBoxColors.html : hackety org » Those Impressive NodeBox Colors
http://www.voidspace.org.uk/python/mock.html : Mock - Mocking and Test Utilities
http://nmag.soton.ac.uk/tf/pycaml.html : Pycaml - The Python <-> OCaml Interface
>>> 

ほっほー。こりゃ使える。
これはたくさんの人がpythonってタグをつけて、ブックマークしたページを取ってくるサンプル。


みんなのPython

みんなのPython