获取有关数据类字段的类型信息

时间:2018-11-15 08:42:52

标签: python typing

对于给定的数据类,如何获取有关字段类型的信息?

示例:

>>> from dataclasses import dataclass, fields
>>> import typing
>>> @dataclass
... class Foo:
...     bar: typing.List[int]

我可以通过repr获得字段信息:

>>> fields(Foo)
(Field(name='bar',type=typing.List[int],default=<dataclasses._MISSING_TYPE object at 0x7fef9aafd9b0>,default_factory=<dataclasses._MISSING_TYPE object at 0x7fef9aafd9b0>,init=True,repr=True,hash=None,compare=True,metadata=mappingproxy({}),_field_type=_FIELD),)

我可以输入栏位类型的代表

>>> fields(Foo)[0].type
typing.List[int]

如何检索(作为python对象,而不是字符串repr):

  • 类型(typing.List
  • typing.Listint)中的
  • 项目类型

1 个答案:

答案 0 :(得分:2)

数据类字段的

type属性不是字符串表示形式,而是一种类型。

Python 3.6:

>>> type(fields(Foo)[0].type)
<class 'typing.GenericMeta'>

Python 3.7:

>>> type(fields(Foo)[0].type)
<class 'typing._GenericAlias'>

在这种情况下,您可以使用__args__属性检索内部类型:

>>> fields(Foo)[0].type.__args__
(<class 'int'>,)