philwilson.org

18 posts tagged with "python"

See all tags and the latest posts

RSS for fun and the public good

11 March, 2024 - 258 words
I follow Steve Messer’s blog – he’s a product manager in the UK Civil Service, making land and housing data easier to find, use and trust. And he writes weeknotes which I enjoy reading. He mentioned this week that his team’s blog doesn’t prod...

read more

Requesting a URL with Python

16 April, 2017 - 319 words
After a year at the bottom of my drawer, I have busted out my Pimoroni Flotilla. It has a Python API and so I figured this was as good a time as any to use Python3 for the first time in many years. Part of the kit is

read more

Storing feedparser objects in couchdb

31 March, 2009 - 85 words
sudo apt-get install python-feedparser easy_install jsonpickle sudo apt-get install couchdb easy_install couchdb sudo couchdb Open a new terminal python import feedparser, jsonpickle from couchdb import Server s = Server('http://127.0.0.1:5984/') len(s) db = s.create('feeds') len(s) doc = feedparser....

read more

venus-ng

28 March, 2009 - 381 words
venus-ng is a fork of Venus which uses Newsgator to provide both the reading list and the feeds. This means that venus-ng will, at a particular point in time, give you an accurate representation of your currently unread Newsgator feed entries. Here is...

read more

NewsGator + Venus?

09 March, 2009 - 325 words
I recently broke the graphics drivers on my Windows Vista installation, so re-partitioned and now run Ubuntu full-time at home. On Windows I use FeedDemon as my full-time aggregator. It has a degree of speed and polish unmatched by any other web or desktop aggregator. This means that all my feeds are automat...

read more

wxVenus

17 March, 2008 - 220 words
bzr get http://philwilson.org/code/wxvenus wxVenus is, at the moment, a desktop tool for browsing the cache that a local Venus installation creates when it runs. It is written in wxPython and is dependent on lxml.

read more

Parsing Atom with libxml2

26 November, 2007 - 188 words
Whilst trying to parse some Atom (my Blogger backup) with libxml2 I appear to have run into the same problem that Aristotle hit two years ago in XPath vs the default namespace: easy things should be easy, to wit: The story is that you can’t match on the default namespace in XPath.

read more