mahrtayyab / tweety

Twitter Scraper
496 stars 67 forks source link

Set Timeout #197

Closed fabston closed 4 months ago

fabston commented 4 months ago

Am I able to set a timeout when requesting data such as tweet_detail or get_user_info? I'd like that it timeouts after like 5 secs.

mahrtayyab commented 4 months ago

You mean HTTP request timeout


from tweety import Twitter
client = Twitter("session", timeout=5)
...