koapy.backend.kiwoom_open_api_plus.core.KiwoomOpenApiPlusDispatchSignature
¶
Module Contents¶
Classes¶
A Signature object represents the overall signature of a function. |
- class koapy.backend.kiwoom_open_api_plus.core.KiwoomOpenApiPlusDispatchSignature.KiwoomOpenApiPlusDispatchSignature(name: str, parameters: Dict[str, inspect.Parameter] = None, return_annotation=Signature.empty)[source]¶
Bases:
koapy.backend.kiwoom_open_api_plus.core.KiwoomOpenApiPlusSignature.KiwoomOpenApiPlusSignature
A Signature object represents the overall signature of a function. It stores a Parameter object for each parameter accepted by the function, as well as information specific to the function itself.
A Signature object has the following public attributes and methods:
- parametersOrderedDict
An ordered mapping of parameters’ names to the corresponding Parameter objects (keyword-only arguments are in the same order as listed in code.co_varnames).
- return_annotationobject
The annotation for the return type of the function if specified. If the function has no annotation for its return type, this attribute is set to Signature.empty.
- classmethod from_name(cls, name: str) KiwoomOpenApiPlusDispatchSignature [source]¶