Nella mia ricerca senza fine nel complicare troppo le cose semplici, sto cercando il modo più "pitonico" per fornire variabili di configurazione globali all'interno del tipico " config.py " che si trova nei pacchetti egg di Python.
Il modo tradizionale (aah, buon vecchio #define !) È il seguente:
MYSQL_PORT = 3306
MYSQL_DATABASE = 'mydb'
MYSQL_DATABASE_TABLES = ['tb_users', 'tb_groups']
Pertanto le variabili globali vengono importate in uno dei seguenti modi:
from config import *
dbname = MYSQL_DATABASE
for table in MYSQL_DATABASE_TABLES:
print table
o:
import config
dbname = config.MYSQL_DATABASE
assert(isinstance(config.MYSQL_PORT, int))
Ha senso, ma a volte può essere un po 'complicato, specialmente quando stai cercando di ricordare i nomi di determinate variabili. Inoltre, fornire un oggetto di "configurazione" , con variabili come attributi , potrebbe essere più flessibile. Quindi, prendendo un esempio dal file bpython config.py, ho pensato :
class Struct(object):
def __init__(self, *args):
self.__header__ = str(args[0]) if args else None
def __repr__(self):
if self.__header__ is None:
return super(Struct, self).__repr__()
return self.__header__
def next(self):
""" Fake iteration functionality.
"""
raise StopIteration
def __iter__(self):
""" Fake iteration functionality.
We skip magic attribues and Structs, and return the rest.
"""
ks = self.__dict__.keys()
for k in ks:
if not k.startswith('__') and not isinstance(k, Struct):
yield getattr(self, k)
def __len__(self):
""" Don't count magic attributes or Structs.
"""
ks = self.__dict__.keys()
return len([k for k in ks if not k.startswith('__')\
and not isinstance(k, Struct)])
e un 'config.py' che importa la classe e legge come segue:
from _config import Struct as Section
mysql = Section("MySQL specific configuration")
mysql.user = 'root'
mysql.pass = 'secret'
mysql.host = 'localhost'
mysql.port = 3306
mysql.database = 'mydb'
mysql.tables = Section("Tables for 'mydb'")
mysql.tables.users = 'tb_users'
mysql.tables.groups = 'tb_groups'
e viene utilizzato in questo modo:
from sqlalchemy import MetaData, Table
import config as CONFIG
assert(isinstance(CONFIG.mysql.port, int))
mdata = MetaData(
"mysql://%s:%s@%s:%d/%s" % (
CONFIG.mysql.user,
CONFIG.mysql.pass,
CONFIG.mysql.host,
CONFIG.mysql.port,
CONFIG.mysql.database,
)
)
tables = []
for name in CONFIG.mysql.tables:
tables.append(Table(name, mdata, autoload=True))
Il che sembra un modo più leggibile, espressivo e flessibile di memorizzare e recuperare variabili globali all'interno di un pacchetto.
L'idea più pessima mai? Qual è la migliore pratica per affrontare queste situazioni? Qual è il tuo modo di archiviare e recuperare i nomi e le variabili globali all'interno del tuo pacchetto?