mirror of
https://github.com/EvolutionAPI/evolution-client-python.git
synced 2025-07-14 01:41:23 -06:00
8 lines
263 B
Python
8 lines
263 B
Python
from .distribution import Distribution as Distribution, parse as parse
|
|
|
|
class Wheel(Distribution):
|
|
filename: str
|
|
metadata_version: str
|
|
def __init__(self, filename: str, metadata_version: str | None = ...) -> None: ...
|
|
def read(self) -> bytes: ...
|