skip to Main Content

pandas and "'Nontype' object is not callable" – Twitter API

I trying to scrape data from twitter following the examples from this page: https://www.earthdatascience.org/courses/use-data-open-source-python/intro-to-apis/twitter-data-in-python/ # -*- coding: cp852 -*- import sys sys.modules[__name__].__dict__.clear() import os import tweepy as tw import pandas as pd consumer_key = 'XXX' consumer_secret = 'YYY' access_token =…

VIEW QUESTION
Back To Top
Search