File: __init__.py

package info (click to toggle)
python-xsdata 24.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,936 kB
  • sloc: python: 29,257; xml: 404; makefile: 27; sh: 6
file content (31 lines) | stat: -rw-r--r-- 463 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from tests.fixtures.artists.metadata import (
    Alias,
    AliasList,
    Area,
    Artist,
    BeginArea,
    EndArea,
    Gender,
    IpiList,
    IsniList,
    Iso31661CodeList,
    Iso31662CodeList,
    LifeSpan,
    Metadata,
)

__all__ = [
    "Alias",
    "AliasList",
    "Area",
    "Artist",
    "BeginArea",
    "EndArea",
    "Gender",
    "IpiList",
    "IsniList",
    "Iso31661CodeList",
    "Iso31662CodeList",
    "LifeSpan",
    "Metadata",
]