mirror of
https://github.com/EvolutionAPI/evolution-client-python.git
synced 2025-12-26 15:07:44 -06:00
initial commit
This commit is contained in:
5
env/lib/python3.10/site-packages/nh3/__init__.py
vendored
Normal file
5
env/lib/python3.10/site-packages/nh3/__init__.py
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
from .nh3 import *
|
||||
|
||||
__doc__ = nh3.__doc__
|
||||
if hasattr(nh3, "__all__"):
|
||||
__all__ = nh3.__all__
|
||||
20
env/lib/python3.10/site-packages/nh3/__init__.pyi
vendored
Normal file
20
env/lib/python3.10/site-packages/nh3/__init__.pyi
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
from typing import Callable, Dict, Optional, Set
|
||||
|
||||
ALLOWED_TAGS: Set[str]
|
||||
ALLOWED_ATTRIBUTES: Dict[str, Set[str]]
|
||||
|
||||
def clean(
|
||||
html: str,
|
||||
tags: Optional[Set[str]] = None,
|
||||
clean_content_tags: Optional[Set[str]] = None,
|
||||
attributes: Optional[Dict[str, Set[str]]] = None,
|
||||
attribute_filter: Optional[Callable[[str, str, str], Optional[str]]] = None,
|
||||
strip_comments: bool = True,
|
||||
link_rel: Optional[str] = "noopener noreferrer",
|
||||
generic_attribute_prefixes: Optional[Set[str]] = None,
|
||||
tag_attribute_values: Optional[Dict[str, Dict[str, Set[str]]]] = None,
|
||||
set_tag_attribute_values: Optional[Dict[str, Dict[str, str]]] = None,
|
||||
url_schemes: Optional[Set[str]] = None,
|
||||
) -> str: ...
|
||||
def clean_text(html: str) -> str: ...
|
||||
def is_html(html: str) -> bool: ...
|
||||
BIN
env/lib/python3.10/site-packages/nh3/__pycache__/__init__.cpython-310.pyc
vendored
Normal file
BIN
env/lib/python3.10/site-packages/nh3/__pycache__/__init__.cpython-310.pyc
vendored
Normal file
Binary file not shown.
BIN
env/lib/python3.10/site-packages/nh3/nh3.abi3.so
vendored
Executable file
BIN
env/lib/python3.10/site-packages/nh3/nh3.abi3.so
vendored
Executable file
Binary file not shown.
0
env/lib/python3.10/site-packages/nh3/py.typed
vendored
Normal file
0
env/lib/python3.10/site-packages/nh3/py.typed
vendored
Normal file
Reference in New Issue
Block a user