-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Complete coverage for the qrcode package
- Loading branch information
Showing
20 changed files
with
368 additions
and
297 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
version = "7.4.*" | ||
upstream_repository = "https://github.com/lincolnloop/python-qrcode" | ||
requires = ["types-Pillow>=9.1.0"] | ||
|
||
[tool.stubtest] | ||
extras = ["lxml"] | ||
extras = ["pil"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
from _typeshed import Incomplete | ||
|
||
rsPoly_LUT: Incomplete | ||
rsPoly_LUT: dict[int, list[int]] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
from typing import Any | ||
|
||
from qrcode import image as image | ||
from qrcode.constants import ( | ||
ERROR_CORRECT_H as ERROR_CORRECT_H, | ||
ERROR_CORRECT_L as ERROR_CORRECT_L, | ||
ERROR_CORRECT_M as ERROR_CORRECT_M, | ||
ERROR_CORRECT_Q as ERROR_CORRECT_Q, | ||
) | ||
from qrcode.main import make as make | ||
from qrcode.main import QRCode as QRCode, make as make | ||
|
||
def run_example(data: str = "http://www.lincolnloop.com", *args, **kwargs) -> None: ... | ||
def run_example(data: str = "http://www.lincolnloop.com", *args: Any, **kwargs: Any) -> None: ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Type aliases used in this stub package | ||
from typing_extensions import TypeAlias | ||
|
||
Box: TypeAlias = tuple[tuple[int, int], tuple[int, int]] | ||
Ink: TypeAlias = tuple[int, int, int] | tuple[int, int, int, int] | ||
|
||
# Don't try to make these Literal[x, y, z] as this really wreaks | ||
# havoc with overloads in mypy. | ||
ErrorCorrect: TypeAlias = int | ||
MaskPattern: TypeAlias = int |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,27 @@ | ||
from _typeshed import Incomplete | ||
from typing import NamedTuple | ||
from collections.abc import Iterator | ||
from typing import NamedTuple, SupportsIndex | ||
|
||
EXP_TABLE: Incomplete | ||
LOG_TABLE: Incomplete | ||
RS_BLOCK_OFFSET: Incomplete | ||
RS_BLOCK_TABLE: Incomplete | ||
from ._types import ErrorCorrect | ||
|
||
def glog(n): ... | ||
def gexp(n): ... | ||
EXP_TABLE: list[int] | ||
LOG_TABLE: list[int] | ||
RS_BLOCK_OFFSET: dict[ErrorCorrect, int] | ||
RS_BLOCK_TABLE: tuple[tuple[int, int, int] | tuple[int, int, int, int, int, int], ...] | ||
|
||
def glog(n: int) -> int: ... | ||
def gexp(n: int) -> int: ... | ||
|
||
class Polynomial: | ||
num: Incomplete | ||
def __init__(self, num, shift) -> None: ... | ||
def __getitem__(self, index): ... | ||
def __iter__(self): ... | ||
num: list[int] | ||
def __init__(self, num: list[int], shift: int) -> None: ... | ||
def __getitem__(self, index: SupportsIndex) -> int: ... | ||
def __iter__(self) -> Iterator[int]: ... | ||
def __len__(self) -> int: ... | ||
def __mul__(self, other): ... | ||
def __mod__(self, other): ... | ||
def __mul__(self, other: Polynomial) -> Polynomial: ... | ||
def __mod__(self, other: Polynomial) -> Polynomial: ... | ||
|
||
class RSBlock(NamedTuple): | ||
total_count: int | ||
data_count: int | ||
|
||
def rs_blocks(version, error_correction): ... | ||
def rs_blocks(version: int, error_correction: ErrorCorrect) -> list[RSBlock]: ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
from _typeshed import Incomplete | ||
from collections.abc import Iterable | ||
from collections.abc import Iterable, Sequence | ||
|
||
from qrcode.image.base import BaseImage, DrawerAliases as DrawerAliases | ||
from ._types import ErrorCorrect | ||
from .image.base import BaseImage, DrawerAliases as DrawerAliases | ||
|
||
default_factories: Incomplete | ||
error_correction: Incomplete | ||
default_factories: dict[str, str] | ||
error_correction: dict[str, ErrorCorrect] | ||
|
||
def main(args: Incomplete | None = None) -> None: ... | ||
def main(args: Sequence[str] | None = None) -> None: ... | ||
def get_factory(module: str) -> type[BaseImage]: ... | ||
def get_drawer_help() -> str: ... | ||
def commas(items: Iterable[str], joiner: str = "or") -> str: ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
from _typeshed import Incomplete | ||
from typing import IO, Any, Literal | ||
|
||
import qrcode.image.base | ||
from PIL import Image | ||
|
||
class PilImage(qrcode.image.base.BaseImage): | ||
kind: str | ||
fill_color: Incomplete | ||
def new_image(self, **kwargs): ... | ||
def drawrect(self, row, col) -> None: ... | ||
def save(self, stream, format: Incomplete | None = None, **kwargs) -> None: ... # type: ignore[override] | ||
def __getattr__(self, name): ... | ||
from . import base | ||
|
||
class PilImage(base.BaseImage): | ||
kind: Literal["PNG"] | ||
fill_color: str | ||
def new_image(self, *, back_color: str = "white", fill_color: str = "black", **kwargs: Any) -> Image.Image: ... | ||
def get_image(self, **kwargs: Any) -> Image.Image: ... | ||
def drawrect(self, row: int, col: int) -> None: ... | ||
def save(self, stream: IO[bytes], format: str | None = None, *, kind: str | None = None, **kwargs: Any) -> None: ... # type: ignore[override] | ||
def __getattr__(self, name: str) -> Any: ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
from _typeshed import Incomplete | ||
from collections.abc import Generator | ||
from typing import IO, Any, Literal | ||
from typing_extensions import TypeAlias | ||
|
||
import qrcode.image.base | ||
from . import base | ||
|
||
class PyPNGImage(qrcode.image.base.BaseImage): | ||
# png.Writer; no types available | ||
_Writer: TypeAlias = Any | ||
|
||
class PyPNGImage(base.BaseImage): | ||
kind: str | ||
allowed_kinds: Incomplete | ||
needs_drawrect: bool | ||
def new_image(self, **kwargs): ... | ||
def drawrect(self, row, col) -> None: ... | ||
def save(self, stream, kind: Incomplete | None = None) -> None: ... | ||
def rows_iter(self) -> Generator[Incomplete, Incomplete, None]: ... | ||
def border_rows_iter(self) -> Generator[Incomplete, None, None]: ... | ||
allowed_kinds: tuple[Literal["PNG"]] | ||
def new_image(self, **kwargs: Any) -> _Writer: ... | ||
def get_image(self, **kwargs: Any) -> _Writer: ... | ||
def drawrect(self, row: int, col: int) -> None: ... | ||
def save(self, stream: IO[bytes], kind: str | None = None) -> None: ... | ||
def rows_iter(self) -> Generator[list[int], Any, None]: ... | ||
def border_rows_iter(self) -> Generator[list[int], Any, None]: ... | ||
|
||
PymagingImage = PyPNGImage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,36 @@ | ||
import abc | ||
from _typeshed import Incomplete | ||
from _typeshed import StrOrBytesPath | ||
from typing import IO, Any, Literal | ||
|
||
import qrcode.image.base | ||
from qrcode.image.styles.colormasks import QRColorMask | ||
from qrcode.image.styles.moduledrawers import SquareModuleDrawer | ||
from PIL import Image | ||
|
||
class StyledPilImage(qrcode.image.base.BaseImageWithDrawer, metaclass=abc.ABCMeta): | ||
kind: str | ||
needs_processing: bool | ||
from .._types import Ink | ||
from . import base | ||
from .styles.colormasks import QRColorMask | ||
from .styles.moduledrawers import SquareModuleDrawer | ||
from .styles.moduledrawers.base import QRModuleDrawer | ||
|
||
class StyledPilImage(base.BaseImageWithDrawer): | ||
kind: Literal["PNG"] | ||
color_mask: QRColorMask | ||
default_drawer_class = SquareModuleDrawer | ||
embeded_image: Incomplete | ||
embeded_image_resample: Incomplete | ||
paint_color: Incomplete | ||
def __init__(self, *args, **kwargs) -> None: ... | ||
def new_image(self, **kwargs): ... | ||
def init_new_image(self) -> None: ... | ||
def process(self) -> None: ... | ||
default_drawer_class: type[SquareModuleDrawer] | ||
embeded_image: Image.Image | ||
embeded_image_resample: Image.Resampling | ||
paint_color: Ink | ||
def __init__( | ||
self, | ||
border: int, | ||
width: int, | ||
box_size: int, | ||
*args: Any, | ||
module_drawer: QRModuleDrawer | str | None = None, | ||
eye_drawer: QRModuleDrawer | str | None = None, | ||
color_mask: QRColorMask = ..., | ||
embeded_image_path: StrOrBytesPath | IO[bytes] | None = None, | ||
embeded_image: Image.Image | None = None, | ||
embeded_image_resample: Image.Resampling = ..., | ||
**kwargs: Any, | ||
) -> None: ... | ||
def new_image(self, **kwargs: Any) -> Image.Image: ... | ||
def draw_embeded_image(self) -> None: ... | ||
def save(self, stream, format: Incomplete | None = None, **kwargs) -> None: ... # type: ignore[override] | ||
def __getattr__(self, name): ... | ||
def save(self, stream: IO[bytes], format: str | None = None, *, kind: str | None = None, **kwargs: Any) -> None: ... # type: ignore[override] | ||
def __getattr__(self, name: str) -> Any: ... |
Oops, something went wrong.