diff --git a/twitterapiaccount.ipynb b/twitterapiaccount.ipynb index 92a86fc..78feb68 100644 --- a/twitterapiaccount.ipynb +++ b/twitterapiaccount.ipynb @@ -566,10 +566,10 @@ "\n", "def download_user_tweets():\n", " # set twitter credentials \n", - " api_key = '850YrbsNWucByH06cbS6Ao6xy'\n", - " api_key_secret = 'lYmg13QM5MzjaN0xs0IxR12B1FvLDCLc2rnQ2cXfgScETEWWp5'\n", - " access_token = '1580202146255220736-Nca2hdTr9quLSwjh3QIOZSEjyQ8p9a'\n", - " access_token_secret = 'ivF4kpe9VZSy1Os68iF3mJm3TvXjHpHB2o8dYcIc1MTM9'\n", + " api_key = 'Replace you Twitter API key'\n", + " api_key_secret = 'Replace you Twitter API key secret'\n", + " access_token = 'Replace you Twitter access token'\n", + " access_token_secret = 'Replace you Twitter access token secret'\n", " \n", " # Access Twitter Data (login to twitter via api) \n", " auth = tweepy.OAuthHandler(api_key, api_key_secret)\n", @@ -683,4 +683,4 @@ }, "nbformat": 4, "nbformat_minor": 0 -} \ No newline at end of file +}