Why am i infinitely getting the same tweet with the Twitter Search API?









up vote
0
down vote

favorite












My code workes perfectly for other queries, but for one query I am infinitely getting the same tweet. I can't understand what the problem is.



API call:



 query='Allergic asthma OR Nonallergic asthma OR Occupational asthma OR EIB OR Exercise-induced bronchoconstriction OR Nocturnal asthma OR Cough-variant asthma'
new_tweets = api.search(q=searchQuery, count=100, since_id=since_id, lang='en',tweet_mode='extended')

if not new_tweets:
print("No more tweets found")
break
for tweet in new_tweets:
if True:
print(jsonpickle.encode(tweet._json, unpicklable=False))

my_file = open('searchTweets.txt','a')
my_file.write(jsonpickle.encode(tweet._json, unpicklable=False)+'n')
my_file.close()

else:
continue


Output in file:



https://pastebin.com/JmRCsTeE



These are the JSONs of the same Tweet.



Other queries that work:



  • Breast cancer OR Prostate cancer OR Colon cancer OR Lung cancer

  • Type 2 diabetes OR Type 1 diabetes OR Prediabetes OR Gestational diabetes

  • IBS OR D-IBS OR C-IBS OR A-IBS OR Irritable Bowel Syndrome OR Cure









share|improve this question

























    up vote
    0
    down vote

    favorite












    My code workes perfectly for other queries, but for one query I am infinitely getting the same tweet. I can't understand what the problem is.



    API call:



     query='Allergic asthma OR Nonallergic asthma OR Occupational asthma OR EIB OR Exercise-induced bronchoconstriction OR Nocturnal asthma OR Cough-variant asthma'
    new_tweets = api.search(q=searchQuery, count=100, since_id=since_id, lang='en',tweet_mode='extended')

    if not new_tweets:
    print("No more tweets found")
    break
    for tweet in new_tweets:
    if True:
    print(jsonpickle.encode(tweet._json, unpicklable=False))

    my_file = open('searchTweets.txt','a')
    my_file.write(jsonpickle.encode(tweet._json, unpicklable=False)+'n')
    my_file.close()

    else:
    continue


    Output in file:



    https://pastebin.com/JmRCsTeE



    These are the JSONs of the same Tweet.



    Other queries that work:



    • Breast cancer OR Prostate cancer OR Colon cancer OR Lung cancer

    • Type 2 diabetes OR Type 1 diabetes OR Prediabetes OR Gestational diabetes

    • IBS OR D-IBS OR C-IBS OR A-IBS OR Irritable Bowel Syndrome OR Cure









    share|improve this question























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      My code workes perfectly for other queries, but for one query I am infinitely getting the same tweet. I can't understand what the problem is.



      API call:



       query='Allergic asthma OR Nonallergic asthma OR Occupational asthma OR EIB OR Exercise-induced bronchoconstriction OR Nocturnal asthma OR Cough-variant asthma'
      new_tweets = api.search(q=searchQuery, count=100, since_id=since_id, lang='en',tweet_mode='extended')

      if not new_tweets:
      print("No more tweets found")
      break
      for tweet in new_tweets:
      if True:
      print(jsonpickle.encode(tweet._json, unpicklable=False))

      my_file = open('searchTweets.txt','a')
      my_file.write(jsonpickle.encode(tweet._json, unpicklable=False)+'n')
      my_file.close()

      else:
      continue


      Output in file:



      https://pastebin.com/JmRCsTeE



      These are the JSONs of the same Tweet.



      Other queries that work:



      • Breast cancer OR Prostate cancer OR Colon cancer OR Lung cancer

      • Type 2 diabetes OR Type 1 diabetes OR Prediabetes OR Gestational diabetes

      • IBS OR D-IBS OR C-IBS OR A-IBS OR Irritable Bowel Syndrome OR Cure









      share|improve this question













      My code workes perfectly for other queries, but for one query I am infinitely getting the same tweet. I can't understand what the problem is.



      API call:



       query='Allergic asthma OR Nonallergic asthma OR Occupational asthma OR EIB OR Exercise-induced bronchoconstriction OR Nocturnal asthma OR Cough-variant asthma'
      new_tweets = api.search(q=searchQuery, count=100, since_id=since_id, lang='en',tweet_mode='extended')

      if not new_tweets:
      print("No more tweets found")
      break
      for tweet in new_tweets:
      if True:
      print(jsonpickle.encode(tweet._json, unpicklable=False))

      my_file = open('searchTweets.txt','a')
      my_file.write(jsonpickle.encode(tweet._json, unpicklable=False)+'n')
      my_file.close()

      else:
      continue


      Output in file:



      https://pastebin.com/JmRCsTeE



      These are the JSONs of the same Tweet.



      Other queries that work:



      • Breast cancer OR Prostate cancer OR Colon cancer OR Lung cancer

      • Type 2 diabetes OR Type 1 diabetes OR Prediabetes OR Gestational diabetes

      • IBS OR D-IBS OR C-IBS OR A-IBS OR Irritable Bowel Syndrome OR Cure






      python-3.x twitter tweepy






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked yesterday









      Shashank Yadav

      497




      497



























          active

          oldest

          votes











          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',
          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%2f53222149%2fwhy-am-i-infinitely-getting-the-same-tweet-with-the-twitter-search-api%23new-answer', 'question_page');

          );

          Post as a guest



































          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53222149%2fwhy-am-i-infinitely-getting-the-same-tweet-with-the-twitter-search-api%23new-answer', 'question_page');

          );

          Post as a guest














































































          這個網誌中的熱門文章

          Is there any way to eliminate the singular point to solve this integral by hand or by approximations?

          Amount of Number Combinations to Reach a Sum of 10 With Integers 1-9 Using 2 or More Integers [closed]