Node tree implementation for yaml files
Project description
node.ext.yaml provides a node implementation to yaml files.
For more information on nodes see node package.
For more information on plumbing see plumber package.
Usage
Create a yaml file:
from node.ext.yaml import YamlFile
from node.ext.yaml import YamlNode
class MyYamlFile(YamlFile):
@property
def fs_path(self):
return '/path/to/file.yaml'
file = MyYamlFile()
file['child'] = YamlNode()
# write file to disk
file()
Define factories for child nodes:
class SpecificChild(YamlNode):
pass
class DefaultChild(YamlNode):
pass
class MyYamlFile(YamlFile):
factories = {
'child': SpecificChild,
'*': DefaultChild
}
Define a schema for node members:
from node import schema
from node.behaviors import SchemaAsAttributes
from plumber import plumbing
@plumbing(SchemaAsAttributes)
class MyYamlFile(YamlFile):
schema = {
'int_member': schema.Int(),
'str_member': schema.Str()
}
file = MyYamlFile()
file.attr['int_member'] = 1
file.attr['str_member'] = 'String'
Python Versions
Python 2.7, 3.3+
Contributors
Robert Niederreiter
Changes
0.1 (2021-11-22)
Initial work [rnix]
License
Copyright (c) 2021, Node Contributors All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file node.ext.yaml-0.1.tar.gz
.
File metadata
- Download URL: node.ext.yaml-0.1.tar.gz
- Upload date:
- Size: 6.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 09f6fc3950e3ce1f1466f044999db2382a473679f662517e1a6c563f198d11e8 |
|
MD5 | 71fba9f2fed7d4a8ebc06e96f82852b5 |
|
BLAKE2b-256 | fa65338d31d64efb7566ea082733847daa73cc82efb78a58977665d412f67832 |