Closed mewforest closed 3 years ago
It seems there is no property defined in class description - link.
I used this code:
import stweet as st search_tweets_task = st.SearchTweetsTask( all_words='#covid19', ) tweets_collector = st.CollectorTweetOutput() proxies_config = st.RequestsWebClientProxyConfig( http_proxy="<Your http proxy URL>", https_proxy="<Your https proxy URL>" ) st.TweetSearchRunner( search_tweets_task=search_tweets_task, tweet_outputs=[tweets_collector, st.CsvTweetOutput('output_file.csv')], web_client=st.RequestsWebClient(proxy=proxies_config, verify=False), ).run() tweets = tweets_collector.get_scrapped_tweets()
Ok, I will check this 😊
I have prepared PR, I think tomorrow it will be in release
It seems there is no property defined in class description - link.
I used this code: