Adapters API¶
This page documents the built-in adapters provided by pydapter.
CSV Adapter¶
pydapter.adapters.csv_
¶
CSV Adapter for Pydantic Models.
This module provides the CsvAdapter class for converting between Pydantic models and CSV data formats. It supports reading from CSV files or strings and writing Pydantic models to CSV format.
Classes¶
CsvAdapter
¶
Bases: Adapter[T]
Adapter for converting between Pydantic models and CSV data.
This adapter handles CSV files and strings, providing methods to: - Parse CSV data into Pydantic model instances - Convert Pydantic models to CSV format - Handle various CSV dialects and formatting options
Attributes:
Name | Type | Description |
---|---|---|
obj_key |
The key identifier for this adapter type ("csv") |
|
DEFAULT_CSV_KWARGS |
Default CSV parsing parameters |
Example
Source code in src/pydapter/adapters/csv_.py
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 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 |
|
JSON Adapter¶
pydapter.adapters.json_
¶
JSON Adapter for Pydantic Models.
This module provides the JsonAdapter class for converting between Pydantic models and JSON data formats. It supports reading from JSON files, strings, or bytes and writing Pydantic models to JSON format.
Classes¶
JsonAdapter
¶
Bases: Adapter[T]
Adapter for converting between Pydantic models and JSON data.
This adapter handles JSON files, strings, and byte data, providing methods to: - Parse JSON data into Pydantic model instances - Convert Pydantic models to JSON format - Handle both single objects and arrays of objects
Attributes:
Name | Type | Description |
---|---|---|
obj_key |
The key identifier for this adapter type ("json") |
Example
from pydantic import BaseModel
from pydapter.adapters.json_ import JsonAdapter
class Person(BaseModel):
name: str
age: int
# Parse JSON data
json_data = '{"name": "John", "age": 30}'
person = JsonAdapter.from_obj(Person, json_data)
# Parse JSON array
json_array = '[{"name": "John", "age": 30}, {"name": "Jane", "age": 25}]'
people = JsonAdapter.from_obj(Person, json_array, many=True)
# Convert to JSON
json_output = JsonAdapter.to_obj(person)
Source code in src/pydapter/adapters/json_.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 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
|
TOML Adapter¶
pydapter.adapters.toml_
¶
TOML Adapter for Pydantic Models.
This module provides the TomlAdapter class for converting between Pydantic models and TOML data formats. It supports reading from TOML files or strings and writing Pydantic models to TOML format.
Classes¶
TomlAdapter
¶
Bases: Adapter[T]
Adapter for converting between Pydantic models and TOML data.
This adapter handles TOML files and strings, providing methods to: - Parse TOML data into Pydantic model instances - Convert Pydantic models to TOML format - Handle both single objects and arrays of objects
Attributes:
Name | Type | Description |
---|---|---|
obj_key |
The key identifier for this adapter type ("toml") |
Example
from pydantic import BaseModel
from pydapter.adapters.toml_ import TomlAdapter
class Person(BaseModel):
name: str
age: int
# Parse TOML data
toml_data = '''
name = "John"
age = 30
'''
person = TomlAdapter.from_obj(Person, toml_data)
# Parse TOML array
toml_array = '''
[[people]]
name = "John"
age = 30
[[people]]
name = "Jane"
age = 25
'''
people = TomlAdapter.from_obj(Person, toml_array, many=True)
# Convert to TOML
toml_output = TomlAdapter.to_obj(person)
Source code in src/pydapter/adapters/toml_.py
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 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
|