“Python -Konfigurationsdatei” Code-Antworten

Python -Konfigurationsdatei

''' config.cfg
[whatever]
key=qwerertyertywert2345
secret=sadfgwertgrtujdfgh
'''

from configparser import ConfigParser

config = ConfigParser()
config.read('config.cfg')

my_key = config['whatever']['key']
my_secret = config['whatever']['secret']
nomjeeb

Verwenden Sie die Konfigurationsdatei zum Entfernen redundanter Variablen im Code

from ConfigParser import SafeConfigParser

parser = SafeConfigParser()
parser.read('simple.ini')

print parser.get('bug_tracker', 'url')
sree_007

Ähnliche Antworten wie “Python -Konfigurationsdatei”

Fragen ähnlich wie “Python -Konfigurationsdatei”

Weitere verwandte Antworten zu “Python -Konfigurationsdatei” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen