Re: keep a list of read and unread items

2006-08-13 Thread Stargaming
Ant schrieb: > a wrote: > > >>i m building an rss reader and i want you suggestions for datastructure >>for keeping read and unread list for each use >>i m assuming it will be very sparse > > > A dictionary for each site seems to be the obvious choice, mapping the > article ID to True or False.

Re: keep a list of read and unread items

2006-08-13 Thread Ant
a wrote: > i m building an rss reader and i want you suggestions for datastructure > for keeping read and unread list for each use > i m assuming it will be very sparse A dictionary for each site seems to be the obvious choice, mapping the article ID to True or False. -- http://mail.python.org