File: __init__.py

package info (click to toggle)
python-mashumaro 3.17-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,408 kB
  • sloc: python: 19,981; sh: 16; makefile: 5
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",
]