mirror of
https://github.com/EvolutionAPI/evolution-client-python.git
synced 2026-02-04 13:56:23 -06:00
initial commit
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
import optparse
|
||||
from typing import List
|
||||
|
||||
from .distribution import Distribution
|
||||
from .utils import get_metadata as get_metadata
|
||||
|
||||
ParsedOptions = tuple[optparse.Values, list[str]]
|
||||
|
||||
class Base:
|
||||
def __init__(self, options: ParsedOptions) -> None: ...
|
||||
def finish(self) -> None: ...
|
||||
|
||||
class Simple(Base):
|
||||
def __init__(self, options: ParsedOptions) -> None: ...
|
||||
def __call__(self, meta: Distribution) -> None: ...
|
||||
|
||||
class SingleLine(Base):
|
||||
def __init__(self, options: ParsedOptions) -> None: ...
|
||||
def __call__(self, meta: Distribution) -> None: ...
|
||||
|
||||
class CSV(Base):
|
||||
def __init__(self, options: ParsedOptions) -> None: ...
|
||||
def __call__(self, meta: Distribution) -> None: ...
|
||||
|
||||
class INI(Base):
|
||||
def __init__(self, options: ParsedOptions) -> None: ...
|
||||
def __call__(self, meta: Distribution) -> None: ...
|
||||
def finish(self) -> None: ...
|
||||
|
||||
class JSON(Base):
|
||||
def __init__(self, options: ParsedOptions) -> None: ...
|
||||
def __call__(self, meta: Distribution) -> None: ...
|
||||
def finish(self) -> None: ...
|
||||
|
||||
def main(args: List[str] | None = ...) -> None: ...
|
||||
Reference in New Issue
Block a user