File: __init__.py

package info (click to toggle)
python-mashumaro 3.15-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,404 kB
  • sloc: python: 19,746; sh: 16; makefile: 4
file content (10 lines) | stat: -rw-r--r-- 258 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
from mashumaro.exceptions import MissingField
from mashumaro.helper import field_options, pass_through
from mashumaro.mixins.dict import DataClassDictMixin

__all__ = [
    "MissingField",
    "DataClassDictMixin",
    "field_options",
    "pass_through",
]