You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Initial Check
pip3 install --user --upgrade -e git+https://github.com/twintproject/twint.git@origin/master#egg=twint;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.Untilcommented out, everything works. I get an output file with my search terms. If I uncomment thec.Until, twint shows that it has scraped the tweets, but the output file does not get generated.Environment Details
Windows 10, Jupyterlab notebook