📄 config.py
字号:
# -*- coding: ISO8859-1 -*-## Copyright 2003, 2004 Norwegian University of Science and Technology## This file is part of Network Administration Visualized (NAV)## NAV is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2 of the License, or# (at your option) any later version.## NAV is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the# GNU General Public License for more details.## You should have received a copy of the GNU General Public License# along with NAV; if not, write to the Free Software# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA### $Id: config.py 3315 2005-07-27 12:12:47Z mortenv $# Authors: Morten Vold <morten.vold@itea.ntnu.no>#import os, os.path, nav.pathimport sysdef readConfig(filename, splitChar='='): """Reads a key=value type config file. If the specified path does not begin at the root, the file is search for in the default NAV configuration directory. Returns a dictionary of the key/value pairs that were read.""" if filename[0] != os.sep: filename = os.path.join(nav.path.sysconfdir, filename) configuration = {} file = open(filename, 'r') for line in file.readlines(): line = line.strip() # Unless the line is a comment, we parse it if len(line) and line[0] != '#': # Split the key/value pair (max 1 split) try: (key, value) = line.split(splitChar, 1) value = value.split('#', 1)[0] # Remove end-of-line comments configuration[key.strip()] = value.strip() except ValueError: sys.stderr.write("Config file %s has errors.\n" % filename) file.close() return configuration
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -