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/mailman/listinfo/python-list