syng/typings/qrcode/main.pyi

9 lines
266 B
Python
Raw Permalink Normal View History

from PIL import Image
class QRCode:
def __init__(self, box_size: int, border: int) -> None: ...
def add_data(self, string: str) -> None: ...
def make(self) -> None: ...
def print_ascii(self) -> None: ...
def make_image(self) -> Image.Image: ...