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.84k
stars
2.73k
forks
source link
[ISSUE] CRITICAL:root:twint.run:Twint:Feed:noData'globalObjects' error on tweet id's #1287
I have a data contained only tweet id's without any user information. I want to scap the tweets by their id. However, I got this error: CRITICAL:root:twint.run:Twint:Feed:noData'globalObjects'
Moreover, I'm using python 3.6.5 and when I try to search an experimental scrapping it works.
I've tried to execute following codes:
c = twint.Config()
c.Custom["tweet"] = ["id"]
c.Store_object = True
c.Pandas = True
c.output = name
twint.run.Search(c)
s = twint.Config()
s.Format = "ID {id}"
twint.run.Search(s)
However I still received the error.
I'm using Google Colab with MacOS.
Thanks in advance for all your help :)
I have a data contained only tweet id's without any user information. I want to scap the tweets by their id. However, I got this error: CRITICAL:root:twint.run:Twint:Feed:noData'globalObjects' Moreover, I'm using python 3.6.5 and when I try to search an experimental scrapping it works.
I've tried to execute following codes: c = twint.Config() c.Custom["tweet"] = ["id"] c.Store_object = True c.Pandas = True c.output = name twint.run.Search(c)
s = twint.Config() s.Format = "ID {id}" twint.run.Search(s)
However I still received the error.
I'm using Google Colab with MacOS. Thanks in advance for all your help :)