Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions module2-consuming-data-from-an-api/guided-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ Import the function that we'll use to retrieve our environment varaibles from th

Retrieve our API Key and API Secret and save them to variables within our REPL.

`>>> key = os.getenv('TWITTER_API_KEY')`
`>>> key = getenv('TWITTER_API_KEY')`

`>>> secret = os.getenv('TWITTER_API_KEY_SECRET')`
`>>> secret = getenv('TWITTER_API_KEY_SECRET')`

Import not_tweepy so that we can use it to connect to the NotTwitter API.

Expand Down