コード例 #1
0
ファイル: classifier.py プロジェクト: Lanka/feedIO
def removefromScoreTable(feed):
    """
    Functtion to remove the Scores of all the Items in a particular feed
    """
    itemsList = fm.listItems(feed)
    for item in itemsList:
        removeItemScores(item)
コード例 #2
0
ファイル: classifier.py プロジェクト: onenonlycasper/feedIO
def removefromScoreTable(feed):
    """
    Function to remove the Scores of all the Items in a particular feed. This will
    remove all the ScoreItem objects of the Items that belong to a particular feed.
    """
    itemsList = fm.listItems(feed)
    for item in itemsList:
        removeItemScores(item)
コード例 #3
0
def removefromScoreTable(feed):
    """
    Function to remove the Scores of all the Items in a particular feed. This will
    remove all the ScoreItem objects of the Items that belong to a particular feed.
    """
    itemsList = fm.listItems(feed)
    for item in itemsList:
        removeItemScores(item)