How to Hide Your API Keys in Python 🔑

Protect your application’s API Keys while committing to Git.

Monica Powell
Black Tech Divas
3 min readJan 26, 2017

--

black-and-white-code-programming-tech-79290

If you plan on programming any applications and storing your code in a public GitHub repository then it is important that you protect your API keys 🔑 by ensuring that they are not searchable or otherwise publicly accessible.

What’s an API?

An application programming interface (API) is a structured set of instructions for building applications. If you want to leverage data from services such as Twitter, The New York Times, Slack, Spotify, etc. then you should read their APIs to figure out how to structure your queries to receive data from their service or to post on their service.

What are API keys?

API keys allow developers to access APIs and are unique keys associated with that particular developer and/or application. Just like you shouldn’t share your passwords you should never share your API keys. It is important to protect your API keys so that people do not take any actions as you which could result in your API key being revoked due to somebody else exceeding rate limits or abusing/violating an APIs terms of service. A rate limit is when an application limits the number of API calls that a specific application or user can make during a specified period of time.

How do I protect my API keys on Github?

Here’s how to hide API keys in Python from GitHub using config.py to store your sensitive API keys and tokens in a separate file from your main script. I used similar code when accessing the Twitter Search API for my blackgirlmagic twitter bot.

Create 3 Files in Your Application

config.py

This file will store your API keys. You just need to update the portion in the strings with your API keys, depending on the service you may or may not need all four types of API keys. These in particular are required to create a Twitter application.

main_script.py

This file will store your main script that needs to access the API keys. This file can be named whatever you like.

.gitignore

A .gitignore file tells GitHub to ignore the noted files, directories or files that end in specific extensions when committing files to GitHub. This step is crucial to ensure that your config.py file does not end up viewable on GitHub! Here’s a collection of useful .gitignore templates.

Feel free to reach out below with any comments or questions that you have. I would love to know how you hide your API keys when creating applications in Python or any other languages.

Originally published at Black Tech Diva.

--

--

Monica Powell
Black Tech Divas

web developer // diversity in tech advocate // #GIRLBOSS awardee // Learn more here: www.aboutmonica.com and www.datalogues.com