stubs/sqlalchemy/dialects/mysql/reflection.pyi (13 lines of code) (raw):
# Stubs for sqlalchemy.dialects.mysql.reflection (Python 3.6)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
class ReflectedState(object):
    columns: Any = ...
    table_options: Any = ...
    table_name: Any = ...
    keys: Any = ...
    constraints: Any = ...
    def __init__(self) -> None: ...
class MySQLTableDefinitionParser(object):
    dialect: Any = ...
    preparer: Any = ...
    def __init__(self, dialect, preparer) -> None: ...
    def parse(self, show_create, charset): ...