Get updates from twitter account time line using tweeps in python










0















I am trying to collect data from twitter using tweepy. I have been able to get the usernames timeline and store it in csv file but, I would like to get new update and also update my csv file when there is an update in the username's timeline.



(I am using python3)



The code I have for collecting data from username time line is:



def get_tweets(api, username, limit):
alltweet =
fid2 = open('_3200unfilteredTweets.csv','w')

""" Download Tweets from username account """
for status in tqdm(tweepy.Cursor(api.user_timeline, screen_name=username,tweet_mode='extended').items(limit),
unit="tw", total=limit):

alltweet.append(status.full_text)
# store(status._json)
process_tweet(status)
for line in alltweet:
fid2.write("%sn"%line)


Also the following code allow me to get tweets between certain time , however since I have several users to collect data I can not recall the last time I get tweets.



startDate = datetime(2011, 6, 1, 0, 0, 0)
endDate = datetime(2012, 1, 1, 0, 0, 0)

tweets =
tmpTweets = api.user_timeline(username)
for tweet in tmpTweets:
if tweet.created_at < endDate and tweet.created_at > startDate:
tweets.append(tweet)

while (tmpTweets[-1].created_at > startDate):
tmpTweets = api.user_timeline(username, max_id = tmpTweets[-1].id)
for tweet in tmpTweets:
if tweet.created_at < endDate and tweet.created_at > startDate:
tweets.append(tweet)


Please let me know if there is any way that I can only get the timeline updates.










share|improve this question


























    0















    I am trying to collect data from twitter using tweepy. I have been able to get the usernames timeline and store it in csv file but, I would like to get new update and also update my csv file when there is an update in the username's timeline.



    (I am using python3)



    The code I have for collecting data from username time line is:



    def get_tweets(api, username, limit):
    alltweet =
    fid2 = open('_3200unfilteredTweets.csv','w')

    """ Download Tweets from username account """
    for status in tqdm(tweepy.Cursor(api.user_timeline, screen_name=username,tweet_mode='extended').items(limit),
    unit="tw", total=limit):

    alltweet.append(status.full_text)
    # store(status._json)
    process_tweet(status)
    for line in alltweet:
    fid2.write("%sn"%line)


    Also the following code allow me to get tweets between certain time , however since I have several users to collect data I can not recall the last time I get tweets.



    startDate = datetime(2011, 6, 1, 0, 0, 0)
    endDate = datetime(2012, 1, 1, 0, 0, 0)

    tweets =
    tmpTweets = api.user_timeline(username)
    for tweet in tmpTweets:
    if tweet.created_at < endDate and tweet.created_at > startDate:
    tweets.append(tweet)

    while (tmpTweets[-1].created_at > startDate):
    tmpTweets = api.user_timeline(username, max_id = tmpTweets[-1].id)
    for tweet in tmpTweets:
    if tweet.created_at < endDate and tweet.created_at > startDate:
    tweets.append(tweet)


    Please let me know if there is any way that I can only get the timeline updates.










    share|improve this question
























      0












      0








      0








      I am trying to collect data from twitter using tweepy. I have been able to get the usernames timeline and store it in csv file but, I would like to get new update and also update my csv file when there is an update in the username's timeline.



      (I am using python3)



      The code I have for collecting data from username time line is:



      def get_tweets(api, username, limit):
      alltweet =
      fid2 = open('_3200unfilteredTweets.csv','w')

      """ Download Tweets from username account """
      for status in tqdm(tweepy.Cursor(api.user_timeline, screen_name=username,tweet_mode='extended').items(limit),
      unit="tw", total=limit):

      alltweet.append(status.full_text)
      # store(status._json)
      process_tweet(status)
      for line in alltweet:
      fid2.write("%sn"%line)


      Also the following code allow me to get tweets between certain time , however since I have several users to collect data I can not recall the last time I get tweets.



      startDate = datetime(2011, 6, 1, 0, 0, 0)
      endDate = datetime(2012, 1, 1, 0, 0, 0)

      tweets =
      tmpTweets = api.user_timeline(username)
      for tweet in tmpTweets:
      if tweet.created_at < endDate and tweet.created_at > startDate:
      tweets.append(tweet)

      while (tmpTweets[-1].created_at > startDate):
      tmpTweets = api.user_timeline(username, max_id = tmpTweets[-1].id)
      for tweet in tmpTweets:
      if tweet.created_at < endDate and tweet.created_at > startDate:
      tweets.append(tweet)


      Please let me know if there is any way that I can only get the timeline updates.










      share|improve this question














      I am trying to collect data from twitter using tweepy. I have been able to get the usernames timeline and store it in csv file but, I would like to get new update and also update my csv file when there is an update in the username's timeline.



      (I am using python3)



      The code I have for collecting data from username time line is:



      def get_tweets(api, username, limit):
      alltweet =
      fid2 = open('_3200unfilteredTweets.csv','w')

      """ Download Tweets from username account """
      for status in tqdm(tweepy.Cursor(api.user_timeline, screen_name=username,tweet_mode='extended').items(limit),
      unit="tw", total=limit):

      alltweet.append(status.full_text)
      # store(status._json)
      process_tweet(status)
      for line in alltweet:
      fid2.write("%sn"%line)


      Also the following code allow me to get tweets between certain time , however since I have several users to collect data I can not recall the last time I get tweets.



      startDate = datetime(2011, 6, 1, 0, 0, 0)
      endDate = datetime(2012, 1, 1, 0, 0, 0)

      tweets =
      tmpTweets = api.user_timeline(username)
      for tweet in tmpTweets:
      if tweet.created_at < endDate and tweet.created_at > startDate:
      tweets.append(tweet)

      while (tmpTweets[-1].created_at > startDate):
      tmpTweets = api.user_timeline(username, max_id = tmpTweets[-1].id)
      for tweet in tmpTweets:
      if tweet.created_at < endDate and tweet.created_at > startDate:
      tweets.append(tweet)


      Please let me know if there is any way that I can only get the timeline updates.







      python-3.x csv twitter tweepy






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 13 '18 at 4:52









      Shideh HmShideh Hm

      163




      163






















          2 Answers
          2






          active

          oldest

          votes


















          0














          Yes, there is a way to do this.



          When you first get your list of Tweets, take a note of the ID of the most recent Tweet.



          The next time you call user_timeline you can add since_id=....



          That will get all the Tweets which have been posted after the ID of your most recent Tweet.



          There are some limits though:




          Returns results with an ID greater than (that is, more recent than) the specified ID. There are limits to the number of Tweets that can be accessed through the API. If the limit of Tweets has occured since the since_id, the since_id will be forced to the oldest ID available.







          share|improve this answer






























            0














            You should check out the streaming options that the Twitter API and tweepy offers.
            https://tweepy.readthedocs.io/en/v3.5.0/streaming_how_to.html






            share|improve this answer






















              Your Answer






              StackExchange.ifUsing("editor", function ()
              StackExchange.using("externalEditor", function ()
              StackExchange.using("snippets", function ()
              StackExchange.snippets.init();
              );
              );
              , "code-snippets");

              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "1"
              ;
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function()
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled)
              StackExchange.using("snippets", function()
              createEditor();
              );

              else
              createEditor();

              );

              function createEditor()
              StackExchange.prepareEditor(
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader:
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              ,
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              );



              );













              draft saved

              draft discarded


















              StackExchange.ready(
              function ()
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53274028%2fget-updates-from-twitter-account-time-line-using-tweeps-in-python%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              0














              Yes, there is a way to do this.



              When you first get your list of Tweets, take a note of the ID of the most recent Tweet.



              The next time you call user_timeline you can add since_id=....



              That will get all the Tweets which have been posted after the ID of your most recent Tweet.



              There are some limits though:




              Returns results with an ID greater than (that is, more recent than) the specified ID. There are limits to the number of Tweets that can be accessed through the API. If the limit of Tweets has occured since the since_id, the since_id will be forced to the oldest ID available.







              share|improve this answer



























                0














                Yes, there is a way to do this.



                When you first get your list of Tweets, take a note of the ID of the most recent Tweet.



                The next time you call user_timeline you can add since_id=....



                That will get all the Tweets which have been posted after the ID of your most recent Tweet.



                There are some limits though:




                Returns results with an ID greater than (that is, more recent than) the specified ID. There are limits to the number of Tweets that can be accessed through the API. If the limit of Tweets has occured since the since_id, the since_id will be forced to the oldest ID available.







                share|improve this answer

























                  0












                  0








                  0







                  Yes, there is a way to do this.



                  When you first get your list of Tweets, take a note of the ID of the most recent Tweet.



                  The next time you call user_timeline you can add since_id=....



                  That will get all the Tweets which have been posted after the ID of your most recent Tweet.



                  There are some limits though:




                  Returns results with an ID greater than (that is, more recent than) the specified ID. There are limits to the number of Tweets that can be accessed through the API. If the limit of Tweets has occured since the since_id, the since_id will be forced to the oldest ID available.







                  share|improve this answer













                  Yes, there is a way to do this.



                  When you first get your list of Tweets, take a note of the ID of the most recent Tweet.



                  The next time you call user_timeline you can add since_id=....



                  That will get all the Tweets which have been posted after the ID of your most recent Tweet.



                  There are some limits though:




                  Returns results with an ID greater than (that is, more recent than) the specified ID. There are limits to the number of Tweets that can be accessed through the API. If the limit of Tweets has occured since the since_id, the since_id will be forced to the oldest ID available.








                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 13 '18 at 12:10









                  Terence EdenTerence Eden

                  9,87912763




                  9,87912763























                      0














                      You should check out the streaming options that the Twitter API and tweepy offers.
                      https://tweepy.readthedocs.io/en/v3.5.0/streaming_how_to.html






                      share|improve this answer



























                        0














                        You should check out the streaming options that the Twitter API and tweepy offers.
                        https://tweepy.readthedocs.io/en/v3.5.0/streaming_how_to.html






                        share|improve this answer

























                          0












                          0








                          0







                          You should check out the streaming options that the Twitter API and tweepy offers.
                          https://tweepy.readthedocs.io/en/v3.5.0/streaming_how_to.html






                          share|improve this answer













                          You should check out the streaming options that the Twitter API and tweepy offers.
                          https://tweepy.readthedocs.io/en/v3.5.0/streaming_how_to.html







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Nov 13 '18 at 17:24









                          Juan Julián Cea MoranJuan Julián Cea Moran

                          463




                          463



























                              draft saved

                              draft discarded
















































                              Thanks for contributing an answer to Stack Overflow!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid


                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.

                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53274028%2fget-updates-from-twitter-account-time-line-using-tweeps-in-python%23new-answer', 'question_page');

                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              這個網誌中的熱門文章

                              Barbados

                              How to read a connectionString WITH PROVIDER in .NET Core?

                              Node.js Script on GitHub Pages or Amazon S3