Skip to content

Commit

Permalink
Mask the credential
Browse files Browse the repository at this point in the history
  • Loading branch information
nursnaaz committed Apr 26, 2021
1 parent a962e02 commit d898277
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file modified 06 - Day - 6 Advanced NLP and its Applications/.DS_Store
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
class TwitterAuth:
# Go to http://dev.twitter.com and create an app.
# The consumer key and secret will be generated for you after
consumer_key="E74RnPRDRDH7jh4S7z9iV7iBV"
consumer_secret="xC3weX8mdgOFZQgTjFvmqjnyZWs1P5T65oBiWozvq55Ij3Vs47"
consumer_key=""
consumer_secret=""

# After the step above, you will be redirected to your app's page.
# Create an access token under the the "Your access token" section
access_token="1380496082132631554-D28qYe0UiFobIdZhHJAjPWQF3ldC39"
access_token_secret="Bbc3jBrfjqaOk2r3oD9G2gcIaNzcO647fK9GyBVAZE1JY"
access_token=""
access_token_secret=""
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ def __init__(self):
Class constructor or initialization method.
'''
# keys and tokens from the Twitter Dev Console
consumer_key = 'E74RnPRDRDH7jh4S7z9iV7iBV'
consumer_secret = 'xC3weX8mdgOFZQgTjFvmqjnyZWs1P5T65oBiWozvq55Ij3Vs47'
access_token = '1380496082132631554-D28qYe0UiFobIdZhHJAjPWQF3ldC39'
access_token_secret = 'Bbc3jBrfjqaOk2r3oD9G2gcIaNzcO647fK9GyBVAZE1JY'
consumer_key = ''
consumer_secret = ''
access_token = ''
access_token_secret = ''

# attempt authentication
try:
Expand Down
Binary file not shown.
Binary file not shown.

0 comments on commit d898277

Please sign in to comment.