Welcome to mirror list, hosted at ThFree Co, Russian Federation.

__init__.py « qrcode « typings - dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ead135ee8c3eb2ef57551ed23fb62f2f4904c49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

from __future__ import annotations

from typing import Any

from . import constants as constants


class QRCode:
    def __init__(self, version: int | None, error_correction: int, box_size: int, border: int, image_factory: Any = None, mask_pattern: Any = None) -> None: ...
    def add_data(self, data: str) -> None: ...
    def make(self, fit: bool) -> None: ...
    def make_image(self, image_factory: Any = None, **kwargs: Any) -> Any: ...