tinydantic.tinydb.storages
¤
TinyDB storage classes.
YAMLStorage
¤
Bases: Storage
Store the data in a YAML file.
Source code in src/tinydantic/tinydb/storages.py
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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 | |
__init__
¤
__init__(
path: str,
*,
create_dirs: bool = False,
encoding: str | None = None,
access_mode: str = "r+",
**kwargs: Any
) -> None
Create a new instance.
Also creates the storage file, if it doesn't exist and the access mode is appropriate for writing.
Note: Using an access mode other than r or r+ will probably
lead to data loss or data corruption!
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
Where to store the YAML data. |
required |
create_dirs
|
bool
|
Whether to create all missing parent directories of the storage file. |
False
|
encoding
|
str | None
|
The encoding used to open the storage file. |
None
|
access_mode
|
str
|
Mode in which the file is opened ( |
'r+'
|
**kwargs
|
Any
|
Additional keyword arguments passed to
|
{}
|
Source code in src/tinydantic/tinydb/storages.py
close
¤
read
¤
Read data from storage.
Returns:
| Type | Description |
|---|---|
dict[str, dict[str, Any]] | None
|
A python dict containing the database data from storage, |
dict[str, dict[str, Any]] | None
|
or |
Source code in src/tinydantic/tinydb/storages.py
write
¤
Write data to storage.