- 浏览: 71756 次
- 性别:
- 来自: 北京
最新评论
-
yukaizhao:
请教个问题,下面例子中的client调用了reactor.ru ...
reactor解剖术(2) -
luckyostar:
发错了。麻烦博主删除下评论
yaml简介以及在python上的应用 -
luckyostar:
:arrow : :arrow ...
yaml简介以及在python上的应用 -
iyuan:
赞!
yaml简介以及在python上的应用 -
simomo:
一直在找wsgi是如何将客户端发来的request传递给dja ...
PEP333 wsgi规范1.0不靠谱翻译稿(3)
YAML是一种直观的能够被电脑识别的的数据序列化格式,容易被人类阅读,并且容易和脚本语言交互。YAML类似于XML,但是语法比XML简单得多,对于转化成数组或可以hash的数据时是很简单有效的。
YAML语法规则:
http://www.ibm.com/developerworks/cn/xml/x-cn-yamlintro/
YAML被很多人认为是可以超越xml和json的文件格式。对比xml,除了拥有xml的众多优点外,它足够简单,易于使用。而对于json,YAML可以写成规范化的配置文件(这我认为是高于json很多的优点,用json写配置文件会让人发疯)。
YAML使用寄主语言的数据类型,这在多种语言中流传的时候可能会引起兼容性的问题。
如何写yaml?(抄的)
name: Tom Smith age: 37 spouse: name: Jane Smith age: 25 children: - name: Jimmy Smith age: 15 - name1: Jenny Smith age1: 12
具体语法请参照yaml语法规则。
--------------------------------------------------------------------------------------------
yaml在python上的具体实现:PyYaml
将yaml写成配置脚本test.yaml ,以下介绍如何读写yaml配置。
使用python的yaml库PyYAML。http://pyyaml.org/
安装到python lib下后就可以正常使用了。
#加载yaml import yaml #读取文件 f = open('test.yaml') #导入 x = yaml.load(f) print x
也许你会得到以下类似的strings:
{'age': 37, 'spouse': {'age': 25, 'name': 'Jane Smith'}, 'name': 'Tom Smith', 'children': [{'age': 15, 'name': 'Jimmy Smith'}, {'age1': 12, 'name1': 'Jenny Smith'}]}
python上使用yaml库很简单,基本就使用两个函数:
yaml.load
yaml.dump
对于使用过pickle的各位童鞋来说,这意味着什么不用详说了吧?
Warning: It is not safe to call yaml.load with any data received from an untrusted source! yaml.load is as powerful as pickle.load and so may call any Python function.
对于yaml的读取来讲,最难的在于写出正确的yaml数据格式。如果一不小心出错,将会导致load异常,但有时没有异常报,而是会读不出任何数据。
pyYaml是完全的python实现,号称比pickle更nb。(这谁知道呢?)
yaml.load accepts a byte string, a Unicode string, an open binary file object, or an open text file object. A byte string or a file must be encoded with utf-8, utf-16-be or utf-16-le encoding. yaml.load detects the encoding by checking the BOM (byte order mark) sequence at the beginning of the string/file. If no BOM is present, the utf-8 encoding is assumed.
yaml.load可接收一个byte字符串,unicode字符串,打开的二进制文件或文本文件对象。字节字符串和文件必须是utf-8,utf-16-be或utf-16-le编码的.yaml.load通过检查字符串/文件开始的BOM(字节序标记)来确认编码。如果没有BOM,就默认为utf-8。
UTF-8不需要BOM来表明字节顺序,但可以用BOM来表明编码方式。字符"ZERO WIDTH NO-BREAK SPACE"的UTF-8编码是EF BB BF。所以如果接收者收到以EF BB BF开头的字节流,就知道这是UTF-8编码了。Windows就是使用BOM来标记文本文件的编码方式的。
yaml.load 会返回一个python对象。关于会是什么……看你数据是什么了……
If a string or a file contains several documents, you may load them all with the yaml.load_all function.
如果string或文件包含几块yaml文档,你可以使用yaml.load_all来解析全部的文档。
yaml.load(stream, Loader=<class 'yaml.loader.Loader'>) Parse the first YAML document in a stream #只解析第一个 and produce the corresponding Python object. yaml.load_all(stream, Loader=<class 'yaml.loader.Loader'>) Parse all YAML documents in a stream and produce corresponding Python objects.
yaml.load_all 会生成一个迭代器,你要做的就是for 读出来
documents = """ name: The Set of Gauntlets 'Pauraegen' description: > A set of handgear with sparks that crackle across its knuckleguards. --- name: The Set of Gauntlets 'Paurnen' description: > A set of gauntlets that gives off a foul, acrid odour yet remains untarnished. --- name: The Set of Gauntlets 'Paurnimmen' description: > A set of handgear, freezing with unnatural cold. """ for data in yaml.load_all(documents): print data #{'description': 'A set of handgear with sparks that crackle across its #knuckleguards.\n', #'name': "The Set of Gauntlets 'Pauraegen'"} #{'description': 'A set of gauntlets that gives off a foul, acrid odour #yet remains untarnished.\n', #'name': "The Set of Gauntlets 'Paurnen'"} #{'description': 'A set of handgear, freezing with unnatural cold.\n', #'name': "The Set of Gauntlets 'Paurnimmen'"}
PyYAML allows you to construct a Python object of any type.
Even instances of Python classes can be constructed using the !!python/object tag.
PyYaml允许你构建任何类型的python对象,甚至是python类实例,只需要借助一下yaml标签!!python/object。
这个以后再说,非常有用的东西。
Note that the ability to construct an arbitrary Python object may be dangerous if you receive a YAML document from an untrusted source such as Internet. The function yaml.safe_load limits this ability to simple Python objects like integers or lists.
需要注意的是随意在yaml里构建python对象是有一定危险的,尤其是接收到一个未知的yaml文档。yaml.safe_load可以限制这个能力,就使用些简单的对象吧。
---------------------------------------
Dumping YAML
The yaml.dump function accepts a Python object and produces a YAML document.
yaml.dump 将一个python对象生成为yaml文档,与yaml.load搭配使用。
dump(data, stream=None, Dumper=<class 'yaml.dumper.Dumper'>, **kwds) Serialize a Python object into a YAML stream. If stream is None, return the produced string instead. #很好,如果缺省数据流为空的话,就会给你返回个字符串作为yaml文档
aproject = {'name': 'Silenthand Olleander', 'race': 'Human', 'traits': ['ONE_HAND', 'ONE_EYE'] } print yaml.dump(aproject) #返回 #name: Silenthand Olleander #race: Human #traits: [ONE_HAND, ONE_EYE]
yaml.dump accepts the second optional argument, which must be an open text or binary file. In this case, yaml.dump will write the produced YAML document into the file. Otherwise, yaml.dump returns the produced document.
解释上面那句话的:yaml.dump接收的第二个参数一定要是一个打开的文本文件或二进制文件,yaml.dump会把生成的yaml文档写到文件里。否则,yaml.dump会返回生成的文档。
If you need to dump several YAML documents to a single stream, use the function yaml.dump_all. yaml.dump_all accepts a list or a generator producing
Python objects to be serialized into a YAML document. The second optional argument is an open file.
如果你需要把几段yaml文档同时写进一个数据流中,请使用yaml.dump_all函数。yaml.dump_all可以接收一个列表或者生成python对象的可序列化生成器(好别扭啊),第二个参数是打开的文件。这完全是对应yaml.load_all的。
You may even dump instances of Python classes.
你甚至可以直接把python类的实例(对象)dump进去。
yaml.dump supports a number of keyword arguments that specify formatting details for the emitter. For instance, you may set the preferred intendation and width, use the canonical YAML format or force preferred style for scalars and collections.
yaml.dump支持很多种确定格式化发射器的关键字参数(请先无视这句- -#)。比如你可以设置缩进和宽度(指的yaml文档),使用标准yaml格式或者强制优先样式对于标量和收集(请继续无视- -#)。
瞧这翻译的。
dump_all(documents, stream=None, Dumper=<class 'yaml.dumper.Dumper'>, default_style=None, default_flow_style=None, canonical=None, indent=None, width=None, allow_unicode=None, line_break=None, encoding='utf-8', explicit_start=None, explicit_end=None, version=None, tags=None) #不过对应具体的函数参数可以看出所叙述的几个参数 #cannonical #indent #width #等等
举例
>>> print yaml.dump(range(50)) [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49] >>> print yaml.dump(range(50), width=50, indent=4) [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49] >>> print yaml.dump(range(5), canonical=True) --- !!seq [ !!int "0", !!int "1", !!int "2", !!int "3", !!int "4", ] >>> print yaml.dump(range(5), default_flow_style=False) - 0 - 1 - 2 - 3 - 4 >>> print yaml.dump(range(5), default_flow_style=True, default_style='"') [!!int "0", !!int "1", !!int "2", !!int "3", !!int "4"]
这关键都在后面的参数呢。
------------------------------------------------------
Constructors, representers, resolvers
构造器,描绘器(?),解析器
You may define your own application-specific tags. The easiest way to do it is to define a subclass of yaml.YAMLObject
你可以自定义一个程序专属标签(tag),定义一个yaml.YAMLObject的子类的最简单方法可以这么干:
class Monster(yaml.YAMLObject): yaml_tag = u'!Monster' def __init__(self, name, hp, ac, attacks): self.name = name self.hp = hp self.ac = ac self.attacks = attacks def __repr__(self): return "%s(name=%r, hp=%r, ac=%r, attacks=%r)" % ( self.__class__.__name__, self.name, self.hp, self.ac,self.attacks)
The above definition is enough to automatically load and dump Monster objects:
上面这个定义的Monster类已经足够用来load和dump了:
>>> yaml.load(""" ... --- !Monster ... name: Cave spider ... hp: [2,6] # 2d6 ... ac: 16 ... attacks: [BITE, HURT] ... """) Monster(name='Cave spider', hp=[2, 6], ac=16, attacks=['BITE', 'HURT']) >>> print yaml.dump(Monster( ... name='Cave lizard', hp=[3,6], ac=16, attacks=['BITE','HURT'])) !Monster ac: 16 attacks: [BITE, HURT] hp: [3, 6] name: Cave lizard
yaml.YAMLObject uses metaclass magic to register a constructor, which transforms a YAML node to a class instance, and a representer, which serializes a class instance to a YAML node.
yaml.YAMLObject 使用魔法元类注册一个把yaml编码转成类实例的构造器,还有一个把类实例序列化成yaml编码的描述器。
If you don't want to use metaclasses, you may register your constructors and representers using the functions yaml.add_constructor and yaml.add_representer. For instance, you may want to add a constructor and a representer for the following Dice class:
如果不想使用元类,也可以使用函数yaml.add_constructor和yaml.add_representer来注册构造器和描述器。例如,你可以把一个构造器和描述器加到下面这个Dice类里:
>>> class Dice(tuple): ... def __new__(cls, a, b): ... return tuple.__new__(cls, [a, b]) ... def __repr__(self): ... return "Dice(%s,%s)" % self >>> print Dice(3,6) Dice(3,6)
The default representation for Dice objects is not nice:
这个Dice对象默认的yaml描述可不怎么好看:
>>> print yaml.dump(Dice(3,6)) !!python/object/new:__main__.Dice - !!python/tuple [3, 6]
Suppose you want a Dice object to represented as AdB in YAML:
好,现在假设你想把Dice对象描述成在yaml里为"AdB"的形式(A,B为变量)。
First we define a representer that convert a dice object to scalar node with the tag !dice and register it.
首先我们定义一个可以把Dice对象转换成带有'!dice'标签节点的描述器,然后注册。
>>> def dice_representer(dumper, data): ... return dumper.represent_scalar(u'!dice', u'%sd%s' % data) >>> yaml.add_representer(Dice, dice_representer)
Now you may dump an instance of the Dice object:
现在你就可以dump一个Dice实例了:
>>> print yaml.dump({'gold': Dice(10,6)}) {gold: !dice '10d6'}
Let us add the code to construct a Dice object:
让我们把节点加到Dice对象的构造器中。
>>> def dice_constructor(loader, node): ... value = loader.construct_scalar(node) ... a, b = map(int, value.split('d')) ... return Dice(a, b) >>> yaml.add_constructor(u'!dice', dice_constructor)
Then you may load a Dice object as well:
然后就可以使用了
>>> print yaml.load(""" ... initial hit points: !dice 8d4 ... """) {'initial hit points': Dice(8,4)}
从这里可以看出了,constructor和representer是相对的,一个为load,一个为dump。
-------------------------------------------------------
以上大多数来自 http://pyyaml.org/wiki/PyYAMLDocumentation
评论
发表评论
-
PEP333 wsgi规范1.0不靠谱翻译稿(3)
2009-11-22 21:32 2025environ变量 The enviro ... -
PEP333 wsgi规范1.0不靠谱翻译稿(2)
2009-11-18 23:13 1683详细说明 The application objec ... -
PEP333 wsgi规范1.0不靠谱翻译稿(1)
2009-11-17 23:19 3150摘要 This document specifies a p ... -
python windows下显示托盘区气球消息
2009-10-18 20:59 5972有一个小需求希望在wx下建立的托盘区图标上显示气球消 ... -
1111
2009-10-16 17:51 0http://www.3snews.net/html/50/5 ... -
关于matplotlib嵌入到wxpython
2009-07-13 23:59 5061matplotlib(mpl)本身支持wxpytho ...
相关推荐
本文将深入探讨`pycatj`库的原理、功能以及如何在实际项目中应用。 首先,让我们理解什么是JSON(JavaScript Object Notation)和YAML(Yet Another Markup Language)。JSON是一种轻量级的数据交换格式,易于人...
本文将深入探讨如何利用Python的Pytest框架结合YAML配置文件来驱动Appium进行移动应用的UI自动化测试。 首先,让我们了解核心组件: 1. **Python**: Python是一种广泛使用的高级编程语言,以其简洁的语法和丰富的...
在本篇文章中,我们将深入探讨"ruamel.yaml"库以及它的命令行工具"ruamel.yaml.cmd"。 YAML是一种人可读的数据序列化格式,常用于配置文件、数据交换和存储等场景。与JSON相比,YAML更注重易读性,支持更灵活的缩进...
本文详细介绍了如何使用Python检查YAML配置文件,重点包括了配置文件的读取、解析以及具体的检查逻辑。这些知识点对于自动化测试、配置管理等领域有着重要的应用价值。通过对示例代码的学习,开发者可以更好地理解...
在Python编程中,yaml是一种常用的数据序列化格式,它以易于阅读的方式表示复杂的数据结构,如字典和列表。在本篇文章中,我们将探讨如何使用Python读取yaml文件中的多层菜单数据。为了实现这个功能,我们需要掌握...
在Python编程语言中,处理数据结构,特别是字典(Dictionary)以及与其他数据交换格式的转换是非常常见的需求。这里我们关注的是Python如何支持嵌套对象模型,并实现与YAML(YAML Ain't Markup Language)和JSON...
标题中的“Python+pytest+allure+log+yaml+mysql+钉钉企微通知接口自动化框架”揭示了一个基于Python的全面自动化测试解决方案。这个框架利用了pytest作为测试框架,allure用于测试报告,log用于日志管理,yaml作为...
本教程涵盖了几个关键主题,包括Java密码学、YAML、Vim编辑器、Python文本处理、并发编程以及PyCharm IDE的使用。下面将对这些主题进行详细阐述。 首先,Java密码学是确保数据安全的重要手段。它涉及到加密、解密、...
在进行接口自动化测试时,经常会遇到需要登录的情况。在Python中,我们经常使用requests库来发送HTTP请求。...这种方法的关键在于正确地保存和读取token,以及在后续的HTTP请求中正确使用这个token。
通过熟练掌握这两种格式,我们可以为Python应用构建出灵活且易于维护的配置系统。 通过练习和实际操作提供的"12_全局配置文件ini文件处理&YAML文件处理"中的源码和作业,你可以更深入地理解和掌握这些技术。记得在...
YAML (YAML Ain't Markup Language) 是一种轻量级的数据序列化语言,被广泛应用于配置文件和数据交换。它具有简洁易读的特性,支持多种编程语言,如Python、Java、Ruby等。YAML的语法特性包括: 1. **大小写敏感**...
在Python中,我们可以将这个YAML模板转换为JSON对象,这样更容易进行动态修改。例如,以下是一个服务模板的JSON结构: ```json { "apiVersion": "v1", "kind": "Service", "metadata": { "name": "${jarName}",...
在这个名为"Python-appium的UI测试数据与用例分离实现yaml管理用例"的项目中,我们将深入探讨如何通过Python和YAML实现测试数据和测试用例的分离管理。 首先,让我们理解一下核心概念: 1. **Appium**: Appium是一...
4. **参数定义**:在YAML文件中定义参数,它们会自动映射到`argparse`的参数上。 5. **解析参数**:调用`parse_args()`方法,解析命令行参数,并将YAML文件中的配置合并。 6. **使用参数**:解析后的参数可以像...
总结来说,YAML作为配置文件,因其易读性、灵活性和强大的数据表示能力,在Python和其他编程语言中广泛应用。正确理解和使用YAML配置文件能提高代码的可维护性和可扩展性,帮助开发者构建更健壮的应用。通过学习和...
在MATLAB中,YAML(YAML Ain't Markup Language)是一种流行的数据序列化格式,它被广泛用于存储配置文件、数据传输以及版本控制系统中的元数据。YAML库为MATLAB提供了一个接口,允许用户轻松地读取和写入YAML格式的...
在IT行业中,Python是一种广泛应用的开发语言,尤其在后端开发、数据分析、人工智能等领域有着广泛的应用。本资源“librelingo_yaml_loader-0.1.0.tar.gz”是一个Python库,专门用于处理YAML(YAML Ain't Markup ...
总的来说,ruamel.yaml库为Python开发者提供了高效、灵活且格式友好的YAML处理能力,尤其对于处理大量配置文件或需要精确控制YAML格式的应用来说,它是一个不可或缺的库。通过安装ruamel.yaml-0.11.3-py3-none-win32...
ruamel.yaml库在pyyaml的基础上进行了扩展和增强,提供了更多高级特性和灵活性。 ### 1. ruamel.yaml的特性 - **保留原始格式**:ruamel.yaml库在解析和读取YAML文件时,会尽可能地保留原始的缩进、空格和换行,这...
YAML是一种简洁且易读的数据序列化格式,广泛应用于配置文件、数据存储和交换等领域。PyYAML库为Python提供了解析和生成YAML文档的能力。 PyYAML 5.4.11是该库的一个稳定版本,它包含了对YAML语法的全面支持以及...