Github python'da apı anahtarı nasıl gizlenir

Kod örnekleri

0
0

github python'da apı anahtarı nasıl gizlenir

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

İlgili sayfalar

Örneklerle ilgili sayfalar

Diğer dillerde

Bu sayfa diğer dillerde

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