Mercurial > hg > Feedworm
view FeedList.py @ 108:e50d446f9942 python3
updates fro python3
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Tue, 29 Mar 2011 03:17:30 +0200 |
parents | 5585f3d23541 |
children |
line wrap: on
line source
from Feed import Feed from FeedEntry import FeedEntry from Preferences import Preferences from sqlalchemy.orm import joinedload def getFeeds(session): preferences = Preferences(session) if preferences.showOnlyUnreadFeeds(): return _getUnreadFeeds(session) else: return Feed.all(session) def _getUnreadFeeds(session): query = session.query(FeedEntry).filter(FeedEntry.read == 0) queryWithOptions = query.options(joinedload("feed")) result = queryWithOptions.all() return _collectFeeds(result) def _collectFeeds(feedEntries): feeds = [entry.feed for entry in feedEntries] uniqueFeeds = set(feeds) return list(uniqueFeeds)