UnicodeDecodeError: el códec 'utf8' no puede decodificar el byte 0x80 en la posición 3131: byte de inicio no válido

Estoy tratando de leer los datos de Twitter del archivo json usando Python 2.7.12.

El código que usé es tal:

    import json
    import sys
    reload(sys)
    sys.setdefaultencoding('utf-8')

    def get_tweets_from_file(file_name):
        tweets = []
        with open(file_name, 'rw') as twitter_file:
            for line in twitter_file:
                if line != '\r\n':
                    line = line.encode('ascii', 'ignore')
                    tweet = json.loads(line)
                    if u'info' not in tweet.keys():
                        tweets.append(tweet)
    return tweets

Resultado que obtuve:

    Traceback (most recent call last):
      File "twitter_project.py", line 100, in <module>
        main()                  
      File "twitter_project.py", line 95, in main
        tweets = get_tweets_from_dir(src_dir, dest_dir)
      File "twitter_project.py", line 59, in get_tweets_from_dir
        new_tweets = get_tweets_from_file(file_name)
      File "twitter_project.py", line 71, in get_tweets_from_file
        line = line.encode('ascii', 'ignore')
    UnicodeDecodeError: 'utf8' codec can't decode byte 0x80 in position 3131: invalid start byte

Revisé todas las respuestas de problemas similares y se me ocurrió este código y funcionó la última vez. No tengo idea de por qué no está funcionando ahora ... ¡Agradecería cualquier ayuda!

Respuestas a la pregunta(3)

Su respuesta a la pregunta