Twint doesn't return the number of tweets I am specifying

324 Views Asked by At

Twint doesn't return the number of tweets I am specifying. Every time I run the code below I get different number which way below the limit specified in the code below

import twint
import pandas as pd 
import nest_asyncio
nest_asyncio.apply()

c = twint.Config() 
c.Username = "username"
c.Search = "search"
c.Since = "2021-07-25"
c.Until = "2022-03-02"
c.Limit = 500
c.Lang = "en"
c.Store_csv = True
c.Output = "file.csv"

twint.run.Search(c)

0

There are 0 best solutions below