def generateManyTweets(randomTweets, userId):
    tweetList = ObjectList()
    for i in range(0, randomTweets):
        tweet = Tweet(randomTweet(i, "1-10-2013", userId))
        tweetList.append(tweet)
    return tweetList
def generateOneTweet(tweetId, userId):
    tweet = Tweet(randomTweet(tweetId, "1-10-2013", userId))
    tweetList = ObjectList()
    tweetList.append(tweet)
    return tweetList