本文整理汇总了Python中iniparse.ConfigParser.remove_option方法的典型用法代码示例。如果您正苦于以下问题:Python ConfigParser.remove_option方法的具体用法?Python ConfigParser.remove_option怎么用?Python ConfigParser.remove_option使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类iniparse.ConfigParser
的用法示例。
在下文中一共展示了ConfigParser.remove_option方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: RepoFile
# 需要导入模块: from iniparse import ConfigParser [as 别名]
# 或者: from iniparse.ConfigParser import remove_option [as 别名]
#.........这里部分代码省略.........
# -- contents manipulation ------------------------------------------------------------
def add_repo(self, repo):
"""
Adds a new repo to this object, however the file is not saved.
This is not saved as an object reference, so future changes to the passed in
repo will not be captured in this RepoFile instance. If changes are made to
the original Repo object, it must be passed into the RepoFile instance through
update_repo in order for the changes to be captured.
@param repo: repo to add; may not be None
@type repo: L{Repo}
"""
self.parser.add_section(repo.id)
self._repo_to_parser(repo)
def remove_repo_by_name(self, repo_name):
"""
Removes the repo with the given name. If the repo does not exist, this
method does nothing.
@param repo: identifies the repo to remove
@type repo: string
"""
return self.parser.remove_section(repo_name)
def update_repo(self, repo):
"""
Updates the underlying store with the latest contents of a repo. The repo
passed to this method must have been created prior to this call.
The repo is not saved as an object reference. Instead, the values are captured
to the underlying store at the point in time this is called.
@param repo: repo instance containing updated values to store; cannot be None
@type repo: L{Repo}
"""
self._repo_to_parser(repo)
def get_repo(self, repo_id):
"""
Loads a repo by repo ID. If the repo does not exist, returns None.
@param repo_id: id of the repo to retrieve
@type repo_id: string
@return: repo instance if one exists; None otherwise
@rtype: L{Repo}
"""
if self.parser.has_section(repo_id):
repo = self._parser_to_repo(repo_id)
return repo
else:
return None
def all_repos(self):
"""
Returns a list of all repos in the store.
@return: list of repo instances; empty list if there are none
@rtype: list of L{Repo}
"""
repos = []
for repo_name in self.parser.sections():
repo = self._parser_to_repo(repo_name)
repos.append(repo)
return repos
def _repo_to_parser(self, repo):
"""
Adds the contents of the repo to the underlying store. This call assumes
the parser section has already been created.
@param repo: repo instance to update in the parser; cannot be None
@type repo: L{Repo}
"""
for k, v in repo.items():
if v:
self.parser.set(repo.id, k, v)
else:
self.parser.remove_option(repo.id, k)
def _parser_to_repo(self, repo_name):
"""
Utility for converting the config parser section into a repo object.
@param repo_name: name of the repo being retrieved from the store
@type repo_name: string
@return: repo instance populated from the section data
@rtype: L{Repo}
"""
repo = Repo(repo_name)
for key, value in self.parser.items(repo_name):
repo[key] = value
return repo