File: hiredis.pyi

package info (click to toggle)
python-hiredis 2.3.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 592 kB
  • sloc: ansic: 7,763; python: 382; makefile: 8
file content (40 lines) | stat: -rw-r--r-- 996 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from typing import Any, Callable, Optional, Union, Tuple


class HiredisError(Exception):
    ...


class ProtocolError(HiredisError):
    ...


class ReplyError(HiredisError):
    ...


class Reader:
    def __init__(
        self,
        protocolError: Callable[[str], Exception] = ...,
        replyError: Callable[[str], Exception] = ...,
        encoding: Optional[str] = ...,
        errors: Optional[str] = ...,
        notEnoughData: Any = ...,
    ) -> None: ...

    def feed(
        self, __buf: Union[str, bytes], __off: int = ..., __len: int = ...
    ) -> None: ...
    def gets(self, __shouldDecode: bool = ...) -> Any: ...
    def setmaxbuf(self, __maxbuf: Optional[int]) -> None: ...
    def getmaxbuf(self) -> int: ...
    def len(self) -> int: ...
    def has_data(self) -> bool: ...

    def set_encoding(
        self, encoding: Optional[str] = ..., errors: Optional[str] = ...
    ) -> None: ...


def pack_command(cmd: Tuple[str | int | float | bytes | memoryview]): ...