MultiDict
The main multicollections module provides the MultiDict class, a fully generic dictionary that allows multiple values with the same key while preserving insertion order.
Overview
MultiDict is a mutable multi-mapping that inherits from multicollections.abc.MutableMultiMapping. It provides all the functionality you'd expect from a dictionary, plus the ability to store multiple values for the same key.
Key Features
- Multiple values per key: Store multiple values for the same key
- Insertion order preservation: Keys and values maintain their insertion order
- Dictionary-like interface: Familiar API similar to built-in
dict - Abstract base class compliance: Inherits from
MutableMultiMapping
Quick Start
from multicollections import MultiDict
# Create a MultiDict
md = MultiDict([('a', 1), ('b', 2), ('a', 3)])
# Access first value for a key
print(md['a']) # 1
# Add more values
md.add('b', 4)
# Set a single value (replaces all existing values)
md['a'] = 999
# Iterate over all key-value pairs
for key, value in md.items():
print(f"{key}: {value}")
API Reference
multicollections
Fully generic MultiDict class.
MultiDict
Bases: MutableMultiMapping[_K, _V]
A fully generic dictionary that allows multiple values with the same key.
Preserves insertion order.
Source code in multicollections/__init__.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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 | |
__contains__(key: object) -> bool
Check if a key exists in the multi-mapping.
This is optimized to directly check the key indices without calling getitem, avoiding exception handling overhead.
Source code in multicollections/__init__.py
78 79 80 81 82 83 84 85 | |
__delitem__(key: _K) -> None
Remove all values for a key.
Raises a KeyError if the key is not found.
Source code in multicollections/__init__.py
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 | |
__eq__(other: object) -> bool
Check equality with another MultiDict or mapping-like object.
Two MultiDict instances (or a MultiDict and any MultiMapping) are
considered equal if they contain the same items (including duplicates) in the
same order.
For comparison with another Mapping object, it is equal if they are the same
length and for each item in the MultiDict, the corresponding key in the
Mapping has the same value.
Source code in multicollections/__init__.py
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 | |
__getitem__(key: _K) -> _V
Get the first value for a key.
Raises a KeyError if the key is not found.
Source code in multicollections/__init__.py
68 69 70 71 72 73 74 75 76 | |
__init__(iterable: SupportsKeysAndGetItem[_K, _V] | Iterable[tuple[_K, _V]] = (), /, **kwargs: _V) -> None
Create a MultiDict.
Source code in multicollections/__init__.py
31 32 33 34 35 36 37 38 39 40 41 42 43 | |
__iter__() -> Iterator[_K]
Return an iterator over the keys, in insertion order.
Keys with multiple values will be yielded multiple times.
Source code in multicollections/__init__.py
204 205 206 207 208 209 210 | |
__len__() -> int
Return the total number of items.
Source code in multicollections/__init__.py
212 213 214 215 | |
__repr__() -> str
Return a string representation of the MultiDict.
Source code in multicollections/__init__.py
397 398 399 400 | |
__setitem__(key: _K, value: _V) -> None
Set the value for a key.
Replaces the first value for a key if it exists; otherwise, it adds a new item. Any other items with the same key are removed.
Source code in multicollections/__init__.py
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 | |
add(key: _K, value: _V) -> None
Add a new value for a key.
Source code in multicollections/__init__.py
159 160 161 162 163 164 165 166 | |
clear() -> None
Remove all items from the multi-mapping.
Source code in multicollections/__init__.py
217 218 219 220 221 | |
copy() -> MultiDict[_K, _V]
Return a shallow copy of the MultiDict.
Source code in multicollections/__init__.py
360 361 362 363 364 365 | |
extend(other: SupportsKeysAndGetItem[_K, _V] | Iterable[tuple[_K, _V]] = (), /, **kwargs: _V) -> None
Extend the multi-mapping with items from another object.
This is optimized for batch operations to avoid rebuilding indices multiple times.
Source code in multicollections/__init__.py
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 | |
get(key: _K, default: _D | None = None) -> _V | _D | None
get(key: _K) -> _V | None
get(key: _K, default: _D) -> _V | _D
Get the first value for a key, or a default value if not found.
This is optimized to directly check the key indices without calling getitem, avoiding exception handling overhead.
Source code in multicollections/__init__.py
93 94 95 96 97 98 99 100 101 102 | |
getall(key: _K) -> list[_V]
Get all values for a key.
Raises a KeyError if the key is not found and no default is provided.
Source code in multicollections/__init__.py
45 46 47 48 49 50 51 52 53 54 55 | |
getone(key: _K) -> _V
Get the first value for a key.
Raises a KeyError if the key is not found and no default is provided.
Source code in multicollections/__init__.py
57 58 59 60 61 62 63 64 65 66 | |
items() -> ItemsView[_K, _V]
Return a view of the items (key-value pairs) in the MultiMapping.
Source code in multicollections/abc.py
225 226 227 228 | |
keys() -> KeysView[_K]
Return a view of the keys in the MultiMapping.
Source code in multicollections/abc.py
220 221 222 223 | |
merge(other: SupportsKeysAndGetItem[_K, _V] | Iterable[tuple[_K, _V]] = (), /, **kwargs: _V) -> None
Merge another object into the multi-mapping.
Keys from other that already exist in the multi-mapping will not be added.
This is optimized for batch operations.
Source code in multicollections/__init__.py
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 | |
pop(key: _K) -> _V
Same as popone.
Source code in multicollections/abc.py
280 281 282 283 284 | |
popall(key: _K) -> Collection[_V]
Remove and return all values for a key.
Raises a KeyError if the key is not found and no default is provided.
Source code in multicollections/abc.py
268 269 270 271 272 273 274 275 276 277 278 | |
popitem() -> tuple[_K, _V]
Remove and return a (key, value) pair.
Source code in multicollections/abc.py
286 287 288 289 290 291 | |
popone(key: _K) -> _V
Remove and return the first value for a key.
Source code in multicollections/__init__.py
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | |
setdefault(key: _K, default: _D | None = None) -> _V | _D | None
setdefault(key: _K) -> _V | None
setdefault(key: _K, default: _D) -> _V | _D
Get the first value for a key, or set and return a default if not found.
This is optimized to perform a single lookup in the key indices, rather than calling getitem and setitem separately.
Source code in multicollections/__init__.py
110 111 112 113 114 115 116 117 118 119 120 121 122 | |
update(other: SupportsKeysAndGetItem[_K, _V] | Iterable[tuple[_K, _V]] = (), /, **kwargs: _V) -> None
Update the multi-mapping with items from another object.
This replaces existing values for keys found in the other object. This is optimized for batch operations.
Source code in multicollections/__init__.py
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 | |
values() -> ValuesView[_V]
Return a view of the values in the MultiMapping.
Source code in multicollections/abc.py
230 231 232 233 | |