twintproject / twint

An advanced Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API, allowing you to scrape a user's followers, following, Tweets and more while evading most API limitations.
MIT License
15.85k stars 2.73k forks source link

twint c.Until disabling output being written to file? #1421

Open noah-kg opened 2 years ago

noah-kg commented 2 years ago

Initial Check

Command Ran

def twint_search(keyword, since, until, filename): c = twint.Config() c.Search = keyword c.Since = since c.Until = until c.Lang = "en" c.Count = True c.Pandas = True c.Store_csv = True c.Hide_output = True
c.Output = filename

Description of Issue

If I run the above code with the c.Until commented out, everything works. I get an output file with my search terms. If I uncomment the c.Until, twint shows that it has scraped the tweets, but the output file does not get generated.

Environment Details

Windows 10, Jupyterlab notebook