How to hide api key in github python

Code examples

0
0

how to hide api key in github python

### Step1: Create config.py file
### Step2: add this code into config.py file
# .gitignore should include reference to config.py
api_key = "YOUR_KEY"
api_secret = "YOUR_SECRET"
### Step3: add below code into main.py
import config
from twython import Twython, TwythonError
# create a object by passing the necessary secret passwords
api_key = config.api_key
api_secret = config.api_secret
#### Step4:add below code into .gitignore
config.py
__pycache__
.ipynb_checkpoints

Similar pages

Similar pages with examples

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................