Package yapydata
1
2 """*YapyData* - Yet Another Python Data - provides various low-level *Python* utilities for the management and processing
3 of structured data types. The definition, persistence, and the processing is hereby supported
4 for multiple data definition languages. The current support comprises:
5
6 * *JSON*
7 * *XML*
8 * *YAML*
9
10 In addition the syntaxes defined by the widespread legacy configuration file formats:
11
12 * *INI* - multiple variants: *INI*, *INIX*, *CFG*, *CONF*
13 * *.properties* - the *Java* configuration syntax in *INI* style
14
15 The package *YapyData* is member of the *DataFusion* family by providing the basic
16 syntaxes and features required for the low-level components of modern software stacks.
17 This is applicable including for installation utilities, thus is kept independent
18 from higher stack-layers when ever possible.
19 Ultimately, when required features are even provided redundant in favor of independence.
20
21 The higher application level semantic features such as full validation and standard compliant
22 processing options such as e.g. RFC-6901 [RFC6901]_ and RFC6902 [RFC6902]_.
23
24 The subpackage layout prioritizes modularity and granularity, eventually at the cost of
25 minor performance reduction.
26 For specific use-cases of large data alternates with better performance are included,
27 while the generic cases offer flexibility.
28
29 The absolute and overall priority is the avoidance of circular dependencies.
30 """
31
32 __author__ = 'Arno-Can Uestuensoez'
33 __license__ = "Artistic-License-2.0 + Forced-Fairplay-Constraints"
34 __copyright__ = "Copyright (C) 2019 Arno-Can Uestuensoez" \
35 " @Ingenieurbuero Arno-Can Uestuensoez"
36 __version__ = '0.1.1'
37 __uuid__ = "60cac28d-efe6-4a8d-802f-fa4fc94fa741"
38
39 __docformat__ = "restructuredtext en"
40
41
42 _debug = 0
43 _verbose = 0
44
45
47 """Subsystem *YapyData*.
48 """
49 pass
50
52 """Type mismatch, e.g. incompatible, check syntax,
53 and refer to *strict* parameters.
54 """
55 pass
56