Helpers

Auto-generated documentation for mypy_boto3_builder.parsers.helpers module.

Helpers for parsing methods and attributes.

get_public_methods

[find in source code]

def get_public_methods(inspect_class: object) -> dict[str, MethodType]:

Extract public methods from any class.

Arguments

  • inspect_class - Inspect class.

Returns

A dictionary of method name and method.

parse_method

[find in source code]

def parse_method(
    parent_name: str,
    name: str,
    method: MethodType,
    service_name: ServiceName,
) -> Method:

Parse method to a structure.

Arguments

  • parent_name - Parent class name.
  • method - Inspect method.

Returns

Method structure.

See also