Github python 에서 api 키를 숨기는 방법

코드 예제

0
0

github python 에서 api 키를 숨기는 방법

### 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

비슷한 페이지

예제가있는 유사한 페이지

다른 언어로

이 페이지는 다른 언어로되어 있습니다

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