比如:
application.mode=dev
1
mckelvin 2016-05-19 19:25:43 +08:00 1
配置文件最好选一种标准化的格式,比如 ini, json, yaml, 再用标准化的方式去读取(而非自己去按行读,按等号分割),这样就优雅了吧。
|
2
fy 2016-05-19 19:26:49 +08:00
dict([x[:-1].split('=') for x in f.readlines()])
|
3
tongle 2016-05-19 19:27:36 +08:00
ConfigParser 也许你需要这个
|
4
imn1 2016-05-19 19:28:45 +08:00
configparser — Configuration file parser
This module provides the ConfigParser class which implements a basic configuration language which provides a structure similar to what ’ s found in Microsoft Windows INI files. You can use this to write Python programs which can be customized by end users easily. |
5
haozhang 2016-05-19 19:43:02 +08:00 via iPhone
hocon
|
8
yongzhong 2016-05-19 20:35:14 +08:00
ConfigParser +1
|
10
ayaseangle 2016-05-20 00:15:06 +08:00 via Android
这像是 Java 的 properties 文件。。。。
|
11
hrong 2016-05-20 08:20:23 +08:00 via Android
java 有 getBundle(),连 bash 都有 source,为毛 Python 就木有原生?不可能啊。。。我不懂 Python ,你们别拍我
|
12
ryanking8215 2016-05-20 09:00:48 +08:00
@hrong 是不可能啊。 import 模块或文件不就行啦?!
|
13
bramblex 2016-05-20 09:58:51 +08:00
一行代码就解决的问题楼上一群人非要引进来一个库,用不用顺便再 require 一个 leftpad ?
|
14
araraloren 2016-05-20 10:23:36 +08:00
...同意楼上说的,一句话就能解决的事情,为啥要引入库。。
|
15
linuxchild 2016-05-20 18:02:17 +08:00
2L 的已经很 pythonic 了
|
16
RadishWind 2016-05-21 08:42:45 +08:00
直接把配置文件写成 dict 的格式, import
|
17
lianghui 2016-05-23 13:22:24 +08:00
|