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.81k stars 2.73k forks source link

Flag for quiet output when running? #496

Closed nickian closed 5 years ago

nickian commented 5 years ago

I don't see a flag in the CLI for not running in verbose mode. Is this possible or can it be added?

When I'm scraping tweets to a file, I don't need all of the tweet data output in the terminal. The scrape results are making my log files too large and polluted.

Thanks.

pielco11 commented 5 years ago

twint -u username --hide-output

jrosen48 commented 4 years ago

Is there also an option for twint.Config() to quiet output when not running through the CLI?

pielco11 commented 4 years ago

c.Hide_output = True

jrosen48 commented 4 years ago

thanks!