requests.exceptions.ChunkedEncodingError: ('Connection broken: IncompleteRead(0 bytes read, 512 more expected)', IncompleteRead
问题 I wanted to write a program to fetch tweets from Twitter and then do sentiment analysis. I wrote the following code and got the error even after importing all the necessary libraries. I'm relatively new to data science, so please help me. I could not understand the reason for this error: class TwitterClient(object): def __init__(self): # keys and tokens from the Twitter Dev Console consumer_key = 'XXXXXXXXX' consumer_secret = 'XXXXXXXXX' access_token = 'XXXXXXXXX' access_token_secret =