__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# SPDX-License-Identifier: BSD-2-Clause
# Copyright (c) 2024 Phil Thompson <phil@riverbankcomputing.com>
from typing import Any, Generic, Iterable, overload, Sequence, TypeVar, Union
# PEP 484 has no explicit support for the buffer protocol so we just name types
# we know that implement it.
Buffer = Union[bytes, bytearray, memoryview, 'array', 'voidptr']
# Constants.
SIP_VERSION = ... # type: int
SIP_VERSION_STR = ... # type: str
# The bases for SIP generated types.
class wrappertype:
def __init__(self, *args, **kwargs) -> None: ...
class simplewrapper:
def __init__(self, *args, **kwargs) -> None: ...
class wrapper(simplewrapper): ...
# The array type.
_T = TypeVar('_T')
class array(Sequence[_T], Generic[_T]):
@overload
def __getitem__(self, key: int) -> _T: ...
@overload
def __getitem__(self, key: slice) -> 'array[_T]': ...
@overload
def __setitem__(self, key: int, value: _T) -> None: ...
@overload
def __setitem__(self, key: slice, value: Iterable[_T]) -> None: ...
@overload
def __delitem__(self, key: int) -> None: ...
@overload
def __delitem__(self, key: slice) -> None: ...
def __len__(self) -> int: ...
# The voidptr type.
class voidptr:
def __init__(self, addr: Union[int, Buffer], size: int = -1, writeable: bool = True) -> None: ...
def __int__(self) -> int: ...
@overload
def __getitem__(self, i: int) -> bytes: ...
@overload
def __getitem__(self, s: slice) -> 'voidptr': ...
def __len__(self) -> int: ...
def __setitem__(self, i: Union[int, slice], v: Buffer) -> None: ...
def asarray(self, size: int = -1) -> array[int]: ...
# Python doesn't expose the capsule type.
def ascapsule(self) -> Any: ...
def asstring(self, size: int = -1) -> bytes: ...
def getsize(self) -> int: ...
def getwriteable(self) -> bool: ...
def setsize(self, size: int) -> None: ...
def setwriteable(self, writeable: bool) -> None: ...
# Remaining functions.
def assign(obj: simplewrapper, other: simplewrapper) -> None: ...
def cast(obj: simplewrapper, type: wrappertype) -> simplewrapper: ...
def delete(obj: simplewrapper) -> None: ...
def dump(obj: simplewrapper) -> None: ...
def enableautoconversion(type: wrappertype, enable: bool) -> bool: ...
def enableoverflowchecking(enable: bool) -> bool: ...
def getapi(name: str) -> int: ...
def isdeleted(obj: simplewrapper) -> bool: ...
def ispycreated(obj: simplewrapper) -> bool: ...
def ispyowned(obj: simplewrapper) -> bool: ...
def setapi(name: str, version: int) -> None: ...
def setdeleted(obj: simplewrapper) -> None: ...
def setdestroyonexit(destroy: bool) -> None: ...
def settracemask(mask: int) -> None: ...
def transferback(obj: wrapper) -> None: ...
def transferto(obj: wrapper, owner: wrapper) -> None: ...
def unwrapinstance(obj: simplewrapper) -> None: ...
def wrapinstance(addr: int, type: wrappertype) -> simplewrapper: ...
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| uic | Folder | 0755 |
|
|
| Qt.abi3.so | File | 66.09 KB | 0644 |
|
| QtCore.abi3.so | File | 3.34 MB | 0644 |
|
| QtCore.pyi | File | 470.86 KB | 0644 |
|
| QtDBus.abi3.so | File | 277.94 KB | 0644 |
|
| QtDBus.pyi | File | 27.71 KB | 0644 |
|
| QtDesigner.abi3.so | File | 406.64 KB | 0644 |
|
| QtDesigner.pyi | File | 24.89 KB | 0644 |
|
| QtGui.abi3.so | File | 3.58 MB | 0644 |
|
| QtGui.pyi | File | 460.7 KB | 0644 |
|
| QtHelp.abi3.so | File | 274.06 KB | 0644 |
|
| QtHelp.pyi | File | 13.99 KB | 0644 |
|
| QtNetwork.abi3.so | File | 1.01 MB | 0644 |
|
| QtNetwork.pyi | File | 115.06 KB | 0644 |
|
| QtPrintSupport.abi3.so | File | 274.25 KB | 0644 |
|
| QtPrintSupport.pyi | File | 21.28 KB | 0644 |
|
| QtTest.abi3.so | File | 135.9 KB | 0644 |
|
| QtTest.pyi | File | 11.91 KB | 0644 |
|
| QtWidgets.abi3.so | File | 5.91 MB | 0644 |
|
| QtWidgets.pyi | File | 564.23 KB | 0644 |
|
| QtXml.abi3.so | File | 347.41 KB | 0644 |
|
| QtXml.pyi | File | 32.09 KB | 0644 |
|
| __init__.py | File | 960 B | 0644 |
|
| py.typed | File | 0 B | 0644 |
|
| sip.cpython-313-aarch64-linux-gnu.so | File | 201.16 KB | 0644 |
|
| sip.pyi | File | 2.89 KB | 0644 |
|