├── env ├── lib64 ├── bin │ ├── python3 │ ├── python3.10 │ └── python ├── lib │ └── python3.10 │ │ └── site-packages │ │ ├── idna │ │ ├── py.typed │ │ ├── package_data.py │ │ └── __pycache__ │ │ │ ├── core.cpython-310.pyc │ │ │ ├── codec.cpython-310.pyc │ │ │ ├── compat.cpython-310.pyc │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── idnadata.cpython-310.pyc │ │ │ ├── intranges.cpython-310.pyc │ │ │ ├── uts46data.cpython-310.pyc │ │ │ └── package_data.cpython-310.pyc │ │ ├── nh3 │ │ ├── py.typed │ │ ├── __init__.py │ │ ├── nh3.abi3.so │ │ └── __pycache__ │ │ │ └── __init__.cpython-310.pyc │ │ ├── rich │ │ ├── py.typed │ │ ├── themes.py │ │ └── __pycache__ │ │ │ ├── abc.cpython-310.pyc │ │ │ ├── ansi.cpython-310.pyc │ │ │ ├── bar.cpython-310.pyc │ │ │ ├── box.cpython-310.pyc │ │ │ ├── json.cpython-310.pyc │ │ │ ├── live.cpython-310.pyc │ │ │ ├── repr.cpython-310.pyc │ │ │ ├── rule.cpython-310.pyc │ │ │ ├── text.cpython-310.pyc │ │ │ ├── tree.cpython-310.pyc │ │ │ ├── _fileno.cpython-310.pyc │ │ │ ├── _loop.cpython-310.pyc │ │ │ ├── _pick.cpython-310.pyc │ │ │ ├── _ratio.cpython-310.pyc │ │ │ ├── _stack.cpython-310.pyc │ │ │ ├── _timer.cpython-310.pyc │ │ │ ├── _wrap.cpython-310.pyc │ │ │ ├── align.cpython-310.pyc │ │ │ ├── cells.cpython-310.pyc │ │ │ ├── color.cpython-310.pyc │ │ │ ├── columns.cpython-310.pyc │ │ │ ├── console.cpython-310.pyc │ │ │ ├── control.cpython-310.pyc │ │ │ ├── emoji.cpython-310.pyc │ │ │ ├── errors.cpython-310.pyc │ │ │ ├── jupyter.cpython-310.pyc │ │ │ ├── layout.cpython-310.pyc │ │ │ ├── logging.cpython-310.pyc │ │ │ ├── markup.cpython-310.pyc │ │ │ ├── measure.cpython-310.pyc │ │ │ ├── padding.cpython-310.pyc │ │ │ ├── pager.cpython-310.pyc │ │ │ ├── palette.cpython-310.pyc │ │ │ ├── panel.cpython-310.pyc │ │ │ ├── pretty.cpython-310.pyc │ │ │ ├── prompt.cpython-310.pyc │ │ │ ├── region.cpython-310.pyc │ │ │ ├── scope.cpython-310.pyc │ │ │ ├── screen.cpython-310.pyc │ │ │ ├── segment.cpython-310.pyc │ │ │ ├── spinner.cpython-310.pyc │ │ │ ├── status.cpython-310.pyc │ │ │ ├── style.cpython-310.pyc │ │ │ ├── styled.cpython-310.pyc │ │ │ ├── syntax.cpython-310.pyc │ │ │ ├── table.cpython-310.pyc │ │ │ ├── theme.cpython-310.pyc │ │ │ ├── themes.cpython-310.pyc │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __main__.cpython-310.pyc │ │ │ ├── _inspect.cpython-310.pyc │ │ │ ├── _palettes.cpython-310.pyc │ │ │ ├── _spinners.cpython-310.pyc │ │ │ ├── _windows.cpython-310.pyc │ │ │ ├── constrain.cpython-310.pyc │ │ │ ├── diagnose.cpython-310.pyc │ │ │ ├── filesize.cpython-310.pyc │ │ │ ├── markdown.cpython-310.pyc │ │ │ ├── progress.cpython-310.pyc │ │ │ ├── protocol.cpython-310.pyc │ │ │ ├── traceback.cpython-310.pyc │ │ │ ├── _cell_widths.cpython-310.pyc │ │ │ ├── _emoji_codes.cpython-310.pyc │ │ │ ├── _extension.cpython-310.pyc │ │ │ ├── _log_render.cpython-310.pyc │ │ │ ├── _null_file.cpython-310.pyc │ │ │ ├── containers.cpython-310.pyc │ │ │ ├── file_proxy.cpython-310.pyc │ │ │ ├── highlighter.cpython-310.pyc │ │ │ ├── live_render.cpython-310.pyc │ │ │ ├── progress_bar.cpython-310.pyc │ │ │ ├── _emoji_replace.cpython-310.pyc │ │ │ ├── _export_format.cpython-310.pyc │ │ │ ├── _win32_console.cpython-310.pyc │ │ │ ├── color_triplet.cpython-310.pyc │ │ │ ├── default_styles.cpython-310.pyc │ │ │ └── terminal_theme.cpython-310.pyc │ │ ├── twine │ │ ├── py.typed │ │ └── __pycache__ │ │ │ ├── cli.cpython-310.pyc │ │ │ ├── auth.cpython-310.pyc │ │ │ ├── utils.cpython-310.pyc │ │ │ ├── wheel.cpython-310.pyc │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __main__.cpython-310.pyc │ │ │ ├── package.cpython-310.pyc │ │ │ ├── settings.cpython-310.pyc │ │ │ ├── wininst.cpython-310.pyc │ │ │ ├── exceptions.cpython-310.pyc │ │ │ └── repository.cpython-310.pyc │ │ ├── certifi │ │ ├── py.typed │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── core.cpython-310.pyc │ │ │ ├── __init__.cpython-310.pyc │ │ │ └── __main__.cpython-310.pyc │ │ ├── keyring │ │ ├── py.typed │ │ ├── backends │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── fail.cpython-310.pyc │ │ │ │ └── null.cpython-310.pyc │ │ ├── testing │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── util.cpython-310.pyc │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── cli.cpython-310.pyc │ │ │ ├── core.cpython-310.pyc │ │ │ ├── http.cpython-310.pyc │ │ │ ├── errors.cpython-310.pyc │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __main__.cpython-310.pyc │ │ │ ├── backend.cpython-310.pyc │ │ │ ├── completion.cpython-310.pyc │ │ │ ├── credentials.cpython-310.pyc │ │ │ └── devpi_client.cpython-310.pyc │ │ ├── compat │ │ │ └── __pycache__ │ │ │ │ ├── py38.cpython-310.pyc │ │ │ │ └── py312.cpython-310.pyc │ │ └── util │ │ │ └── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ └── platform_.cpython-310.pyc │ │ ├── pkginfo │ │ ├── py.typed │ │ └── __pycache__ │ │ │ ├── bdist.cpython-310.pyc │ │ │ ├── index.cpython-310.pyc │ │ │ ├── sdist.cpython-310.pyc │ │ │ ├── utils.cpython-310.pyc │ │ │ ├── wheel.cpython-310.pyc │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── develop.cpython-310.pyc │ │ │ ├── installed.cpython-310.pyc │ │ │ ├── commandline.cpython-310.pyc │ │ │ └── distribution.cpython-310.pyc │ │ ├── websocket │ │ ├── py.typed │ │ └── tests │ │ │ └── __init__.py │ │ ├── cryptography │ │ ├── py.typed │ │ ├── hazmat │ │ │ └── bindings │ │ │ │ └── _rust.abi3.so │ │ ├── __pycache__ │ │ │ ├── fernet.cpython-310.pyc │ │ │ ├── utils.cpython-310.pyc │ │ │ ├── __about__.cpython-310.pyc │ │ │ └── __init__.cpython-310.pyc │ │ └── x509 │ │ │ └── __pycache__ │ │ │ ├── base.cpython-310.pyc │ │ │ ├── name.cpython-310.pyc │ │ │ ├── ocsp.cpython-310.pyc │ │ │ └── oid.cpython-310.pyc │ │ ├── h11 │ │ ├── py.typed │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── data │ │ │ └── test-file │ │ ├── jaraco │ │ ├── classes │ │ │ ├── py.typed │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── meta.cpython-310.pyc │ │ ├── context │ │ │ └── py.typed │ │ └── functools │ │ │ └── py.typed │ │ ├── jeepney │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── test_bus.cpython-310.pyc │ │ │ │ └── test_fds.cpython-310.pyc │ │ ├── io │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── utils.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── utils.cpython-310.pyc │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── common.cpython-310.pyc │ │ │ │ ├── trio.cpython-310.pyc │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── asyncio.cpython-310.pyc │ │ │ │ ├── blocking.cpython-310.pyc │ │ │ │ └── threading.cpython-310.pyc │ │ └── __pycache__ │ │ │ ├── auth.cpython-310.pyc │ │ │ ├── bus.cpython-310.pyc │ │ │ ├── fds.cpython-310.pyc │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── bindgen.cpython-310.pyc │ │ │ ├── low_level.cpython-310.pyc │ │ │ ├── routing.cpython-310.pyc │ │ │ ├── wrappers.cpython-310.pyc │ │ │ └── bus_messages.cpython-310.pyc │ │ ├── more_itertools │ │ ├── py.typed │ │ ├── __init__.pyi │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── more.cpython-310.pyc │ │ │ └── recipes.cpython-310.pyc │ │ ├── readme_renderer │ │ ├── py.typed │ │ └── __pycache__ │ │ │ ├── rst.cpython-310.pyc │ │ │ └── txt.cpython-310.pyc │ │ ├── secretstorage │ │ ├── py.typed │ │ └── __pycache__ │ │ │ ├── item.cpython-310.pyc │ │ │ └── util.cpython-310.pyc │ │ ├── zipp │ │ ├── compat │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── py310.cpython-310.pyc │ │ │ │ └── overlay.cpython-310.pyc │ │ └── __pycache__ │ │ │ ├── glob.cpython-310.pyc │ │ │ └── __init__.cpython-310.pyc │ │ ├── charset_normalizer │ │ ├── py.typed │ │ ├── __main__.py │ │ ├── version.py │ │ ├── cli │ │ │ └── __init__.py │ │ └── __pycache__ │ │ │ ├── api.cpython-310.pyc │ │ │ ├── cd.cpython-310.pyc │ │ │ └── md.cpython-310.pyc │ │ ├── importlib_metadata │ │ ├── py.typed │ │ └── compat │ │ │ └── __init__.py │ │ ├── markdown_it │ │ ├── cli │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── parse.cpython-310.pyc │ │ ├── common │ │ │ ├── __init__.py │ │ │ └── entities.py │ │ ├── py.typed │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── main.cpython-310.pyc │ │ │ ├── ruler.cpython-310.pyc │ │ │ ├── token.cpython-310.pyc │ │ │ ├── tree.cpython-310.pyc │ │ │ ├── utils.cpython-310.pyc │ │ │ ├── _compat.cpython-310.pyc │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── _punycode.cpython-310.pyc │ │ │ └── renderer.cpython-310.pyc │ │ ├── pip-22.0.2.dist-info │ │ ├── REQUESTED │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ ├── WHEEL │ │ └── entry_points.txt │ │ ├── setuptools │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ └── more_itertools │ │ │ │ └── __init__.py │ │ ├── cli.exe │ │ ├── gui.exe │ │ ├── cli-32.exe │ │ ├── cli-64.exe │ │ ├── gui-32.exe │ │ ├── gui-64.exe │ │ ├── cli-arm64.exe │ │ ├── gui-arm64.exe │ │ ├── script.tmpl │ │ ├── _distutils │ │ │ └── debug.py │ │ ├── version.py │ │ └── __pycache__ │ │ │ ├── _imp.cpython-310.pyc │ │ │ ├── config.cpython-310.pyc │ │ │ ├── dist.cpython-310.pyc │ │ │ ├── errors.cpython-310.pyc │ │ │ ├── glob.cpython-310.pyc │ │ │ ├── launch.cpython-310.pyc │ │ │ ├── monkey.cpython-310.pyc │ │ │ ├── msvc.cpython-310.pyc │ │ │ ├── wheel.cpython-310.pyc │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── dep_util.cpython-310.pyc │ │ │ ├── depends.cpython-310.pyc │ │ │ ├── sandbox.cpython-310.pyc │ │ │ └── version.cpython-310.pyc │ │ ├── urllib3 │ │ ├── contrib │ │ │ └── __init__.py │ │ ├── py.typed │ │ ├── __pycache__ │ │ │ ├── fields.cpython-310.pyc │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── _version.cpython-310.pyc │ │ │ ├── filepost.cpython-310.pyc │ │ │ ├── response.cpython-310.pyc │ │ │ ├── connection.cpython-310.pyc │ │ │ ├── exceptions.cpython-310.pyc │ │ │ └── poolmanager.cpython-310.pyc │ │ ├── util │ │ │ └── __pycache__ │ │ │ │ ├── ssl_.cpython-310.pyc │ │ │ │ ├── url.cpython-310.pyc │ │ │ │ ├── util.cpython-310.pyc │ │ │ │ ├── wait.cpython-310.pyc │ │ │ │ ├── proxy.cpython-310.pyc │ │ │ │ └── retry.cpython-310.pyc │ │ └── http2 │ │ │ └── __pycache__ │ │ │ └── probe.cpython-310.pyc │ │ ├── wheel │ │ ├── vendored │ │ │ ├── __init__.py │ │ │ ├── packaging │ │ │ │ └── __init__.py │ │ │ └── vendor.txt │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── util.cpython-310.pyc │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __main__.cpython-310.pyc │ │ │ ├── metadata.cpython-310.pyc │ │ │ ├── bdist_wheel.cpython-310.pyc │ │ │ ├── wheelfile.cpython-310.pyc │ │ │ └── _bdist_wheel.cpython-310.pyc │ │ └── cli │ │ │ └── __pycache__ │ │ │ ├── pack.cpython-310.pyc │ │ │ ├── tags.cpython-310.pyc │ │ │ ├── convert.cpython-310.pyc │ │ │ ├── unpack.cpython-310.pyc │ │ │ └── __init__.cpython-310.pyc │ │ ├── wsproto │ │ ├── py.typed │ │ └── typing.py │ │ ├── bidict │ │ └── py.typed │ │ ├── engineio │ │ └── async_drivers │ │ │ └── __init__.py │ │ ├── pip │ │ ├── _internal │ │ │ ├── utils │ │ │ │ └── __init__.py │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── build │ │ │ │ │ └── __init__.py │ │ │ │ └── install │ │ │ │ │ └── __init__.py │ │ │ ├── resolution │ │ │ │ ├── __init__.py │ │ │ │ ├── legacy │ │ │ │ │ └── __init__.py │ │ │ │ └── resolvelib │ │ │ │ │ └── __init__.py │ │ │ ├── index │ │ │ │ └── __init__.py │ │ │ ├── network │ │ │ │ └── __init__.py │ │ │ ├── models │ │ │ │ └── __init__.py │ │ │ ├── cli │ │ │ │ ├── status_codes.py │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── main.cpython-310.pyc │ │ │ ├── __pycache__ │ │ │ │ ├── cache.cpython-310.pyc │ │ │ │ ├── main.cpython-310.pyc │ │ │ │ └── __init__.cpython-310.pyc │ │ │ └── vcs │ │ │ │ └── __pycache__ │ │ │ │ └── git.cpython-310.pyc │ │ ├── _vendor │ │ │ ├── chardet │ │ │ │ ├── cli │ │ │ │ │ └── __init__.py │ │ │ │ └── metadata │ │ │ │ │ └── __init__.py │ │ │ ├── html5lib │ │ │ │ ├── filters │ │ │ │ │ └── __init__.py │ │ │ │ └── _trie │ │ │ │ │ └── __init__.py │ │ │ ├── urllib3 │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── _securetransport │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── packages │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── backports │ │ │ │ │ │ └── __init__.py │ │ │ │ └── _version.py │ │ │ ├── resolvelib │ │ │ │ └── compat │ │ │ │ │ └── __init__.py │ │ │ ├── msgpack │ │ │ │ └── _version.py │ │ │ ├── idna │ │ │ │ ├── package_data.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── codec.cpython-310.pyc │ │ │ │ │ └── core.cpython-310.pyc │ │ │ ├── certifi │ │ │ │ └── __init__.py │ │ │ ├── platformdirs │ │ │ │ └── version.py │ │ │ ├── rich │ │ │ │ ├── themes.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── _loop.cpython-310.pyc │ │ │ │ │ ├── _pick.cpython-310.pyc │ │ │ │ │ ├── _wrap.cpython-310.pyc │ │ │ │ │ ├── abc.cpython-310.pyc │ │ │ │ │ ├── align.cpython-310.pyc │ │ │ │ │ ├── ansi.cpython-310.pyc │ │ │ │ │ ├── bar.cpython-310.pyc │ │ │ │ │ ├── box.cpython-310.pyc │ │ │ │ │ ├── cells.cpython-310.pyc │ │ │ │ │ ├── color.cpython-310.pyc │ │ │ │ │ ├── emoji.cpython-310.pyc │ │ │ │ │ ├── json.cpython-310.pyc │ │ │ │ │ ├── live.cpython-310.pyc │ │ │ │ │ ├── pager.cpython-310.pyc │ │ │ │ │ ├── panel.cpython-310.pyc │ │ │ │ │ ├── repr.cpython-310.pyc │ │ │ │ │ ├── rule.cpython-310.pyc │ │ │ │ │ ├── scope.cpython-310.pyc │ │ │ │ │ ├── style.cpython-310.pyc │ │ │ │ │ ├── table.cpython-310.pyc │ │ │ │ │ ├── text.cpython-310.pyc │ │ │ │ │ ├── theme.cpython-310.pyc │ │ │ │ │ └── tree.cpython-310.pyc │ │ │ ├── pep517 │ │ │ │ └── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── six.cpython-310.pyc │ │ │ │ ├── distro.cpython-310.pyc │ │ │ │ └── __init__.cpython-310.pyc │ │ │ └── tomli │ │ │ │ └── __pycache__ │ │ │ │ └── _re.cpython-310.pyc │ │ └── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ └── __main__.cpython-310.pyc │ │ ├── pkg_resources │ │ ├── _vendor │ │ │ └── __init__.py │ │ ├── tests │ │ │ └── data │ │ │ │ └── my-test-package-source │ │ │ │ └── setup.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-310.pyc │ │ ├── requests-2.32.3.dist-info │ │ ├── REQUESTED │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── requests_toolbelt │ │ ├── auth │ │ │ └── __init__.py │ │ ├── utils │ │ │ └── __init__.py │ │ ├── cookies │ │ │ └── __init__.py │ │ └── downloadutils │ │ │ └── __init__.py │ │ ├── twine-5.1.1.dist-info │ │ ├── REQUESTED │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── wheel-0.44.0.dist-info │ │ ├── REQUESTED │ │ ├── INSTALLER │ │ ├── WHEEL │ │ └── entry_points.txt │ │ ├── backports │ │ ├── tarfile │ │ │ ├── compat │ │ │ │ └── __init__.py │ │ │ └── __main__.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-310.pyc │ │ ├── cffi-1.17.1.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ ├── entry_points.txt │ │ └── WHEEL │ │ ├── h11-0.14.0.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── idna-3.10.dist-info │ │ ├── INSTALLER │ │ └── WHEEL │ │ ├── mdurl-0.1.2.dist-info │ │ ├── INSTALLER │ │ └── WHEEL │ │ ├── nh3-0.2.18.dist-info │ │ ├── INSTALLER │ │ └── WHEEL │ │ ├── rich-13.9.3.dist-info │ │ ├── INSTALLER │ │ └── WHEEL │ │ ├── setuptools-59.6.0.dist-info │ │ ├── REQUESTED │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── zipp-3.20.2.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── bidict-0.23.1.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── certifi-2024.8.30.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── docutils-0.21.2.dist-info │ │ ├── INSTALLER │ │ └── WHEEL │ │ ├── jeepney-0.8.0.dist-info │ │ ├── INSTALLER │ │ └── WHEEL │ │ ├── keyring-25.5.0.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── mdurl │ │ ├── py.typed │ │ └── __pycache__ │ │ │ ├── _parse.cpython-310.pyc │ │ │ ├── _url.cpython-310.pyc │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── _decode.cpython-310.pyc │ │ │ ├── _encode.cpython-310.pyc │ │ │ └── _format.cpython-310.pyc │ │ ├── pkginfo-1.10.0.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ ├── entry_points.txt │ │ └── WHEEL │ │ ├── pycparser-2.22.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── pygments-2.18.0.dist-info │ │ ├── INSTALLER │ │ ├── entry_points.txt │ │ └── WHEEL │ │ ├── rfc3986-2.0.0.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── urllib3-2.2.3.dist-info │ │ ├── INSTALLER │ │ └── WHEEL │ │ ├── wsproto-1.2.0.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── SecretStorage-3.3.3.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── cryptography-43.0.3.dist-info │ │ ├── INSTALLER │ │ └── WHEEL │ │ ├── jaraco.classes-3.4.0.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── jaraco.context-6.0.1.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── jaraco.functools-4.1.0.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── markdown_it_py-3.0.0.dist-info │ │ ├── INSTALLER │ │ ├── entry_points.txt │ │ └── WHEEL │ │ ├── more_itertools-10.5.0.dist-info │ │ ├── INSTALLER │ │ └── WHEEL │ │ ├── python_engineio-4.11.2.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── python_socketio-5.12.1.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── readme_renderer-44.0.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── simple_websocket-1.1.0.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── websocket_client-1.8.0.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ ├── entry_points.txt │ │ └── WHEEL │ │ ├── backports.tarfile-1.2.0.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── charset_normalizer-3.4.0.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── entry_points.txt │ │ ├── importlib_metadata-8.5.0.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── requests_toolbelt-1.0.0.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── typing_extensions-4.12.2.dist-info │ │ ├── INSTALLER │ │ └── WHEEL │ │ ├── easy-install.pth │ │ ├── _distutils_hack │ │ └── override.py │ │ ├── evolutionapi.egg-link │ │ ├── docutils │ │ ├── writers │ │ │ ├── s5_html │ │ │ │ └── themes │ │ │ │ │ ├── big-black │ │ │ │ │ └── __base__ │ │ │ │ │ ├── small-black │ │ │ │ │ └── __base__ │ │ │ │ │ └── medium-black │ │ │ │ │ └── __base__ │ │ │ ├── odf_odt │ │ │ │ └── styles.odt │ │ │ ├── html4css1 │ │ │ │ └── template.txt │ │ │ ├── html5_polyglot │ │ │ │ └── template.txt │ │ │ └── __pycache__ │ │ │ │ └── null.cpython-310.pyc │ │ ├── __pycache__ │ │ │ ├── io.cpython-310.pyc │ │ │ ├── core.cpython-310.pyc │ │ │ ├── nodes.cpython-310.pyc │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __main__.cpython-310.pyc │ │ │ ├── examples.cpython-310.pyc │ │ │ ├── frontend.cpython-310.pyc │ │ │ └── statemachine.cpython-310.pyc │ │ ├── docutils.conf │ │ ├── languages │ │ │ └── __pycache__ │ │ │ │ ├── af.cpython-310.pyc │ │ │ │ ├── ar.cpython-310.pyc │ │ │ │ ├── ca.cpython-310.pyc │ │ │ │ ├── cs.cpython-310.pyc │ │ │ │ ├── da.cpython-310.pyc │ │ │ │ ├── de.cpython-310.pyc │ │ │ │ ├── en.cpython-310.pyc │ │ │ │ ├── eo.cpython-310.pyc │ │ │ │ ├── es.cpython-310.pyc │ │ │ │ ├── fa.cpython-310.pyc │ │ │ │ ├── fi.cpython-310.pyc │ │ │ │ ├── fr.cpython-310.pyc │ │ │ │ ├── gl.cpython-310.pyc │ │ │ │ ├── he.cpython-310.pyc │ │ │ │ ├── it.cpython-310.pyc │ │ │ │ ├── ja.cpython-310.pyc │ │ │ │ ├── ka.cpython-310.pyc │ │ │ │ ├── ko.cpython-310.pyc │ │ │ │ ├── lt.cpython-310.pyc │ │ │ │ ├── lv.cpython-310.pyc │ │ │ │ ├── nl.cpython-310.pyc │ │ │ │ ├── pl.cpython-310.pyc │ │ │ │ ├── ru.cpython-310.pyc │ │ │ │ ├── sk.cpython-310.pyc │ │ │ │ ├── sv.cpython-310.pyc │ │ │ │ └── uk.cpython-310.pyc │ │ ├── parsers │ │ │ └── __pycache__ │ │ │ │ └── null.cpython-310.pyc │ │ ├── readers │ │ │ └── __pycache__ │ │ │ │ └── pep.cpython-310.pyc │ │ └── utils │ │ │ └── __pycache__ │ │ │ └── roman.cpython-310.pyc │ │ ├── pycparser │ │ ├── ply │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── cpp.cpython-310.pyc │ │ │ │ ├── lex.cpython-310.pyc │ │ │ │ ├── yacc.cpython-310.pyc │ │ │ │ └── ygen.cpython-310.pyc │ │ └── __pycache__ │ │ │ ├── c_ast.cpython-310.pyc │ │ │ ├── c_lexer.cpython-310.pyc │ │ │ ├── lextab.cpython-310.pyc │ │ │ ├── yacctab.cpython-310.pyc │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── _ast_gen.cpython-310.pyc │ │ │ ├── c_parser.cpython-310.pyc │ │ │ └── plyparser.cpython-310.pyc │ │ ├── cffi │ │ └── __pycache__ │ │ │ ├── api.cpython-310.pyc │ │ │ ├── lock.cpython-310.pyc │ │ │ ├── cparser.cpython-310.pyc │ │ │ ├── error.cpython-310.pyc │ │ │ ├── model.cpython-310.pyc │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── pkgconfig.cpython-310.pyc │ │ │ ├── verifier.cpython-310.pyc │ │ │ ├── cffi_opcode.cpython-310.pyc │ │ │ ├── commontypes.cpython-310.pyc │ │ │ ├── ffiplatform.cpython-310.pyc │ │ │ ├── recompiler.cpython-310.pyc │ │ │ ├── vengine_cpy.cpython-310.pyc │ │ │ ├── vengine_gen.cpython-310.pyc │ │ │ ├── _imp_emulation.cpython-310.pyc │ │ │ ├── backend_ctypes.cpython-310.pyc │ │ │ └── setuptools_ext.cpython-310.pyc │ │ ├── distutils-precedence.pth │ │ ├── requests │ │ └── __pycache__ │ │ │ ├── api.cpython-310.pyc │ │ │ ├── auth.cpython-310.pyc │ │ │ ├── certs.cpython-310.pyc │ │ │ ├── help.cpython-310.pyc │ │ │ ├── hooks.cpython-310.pyc │ │ │ ├── utils.cpython-310.pyc │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── adapters.cpython-310.pyc │ │ │ ├── compat.cpython-310.pyc │ │ │ ├── cookies.cpython-310.pyc │ │ │ ├── models.cpython-310.pyc │ │ │ ├── packages.cpython-310.pyc │ │ │ ├── sessions.cpython-310.pyc │ │ │ ├── exceptions.cpython-310.pyc │ │ │ └── structures.cpython-310.pyc │ │ ├── rfc3986 │ │ └── __pycache__ │ │ │ ├── api.cpython-310.pyc │ │ │ ├── iri.cpython-310.pyc │ │ │ ├── misc.cpython-310.pyc │ │ │ ├── uri.cpython-310.pyc │ │ │ ├── _mixin.cpython-310.pyc │ │ │ ├── compat.cpython-310.pyc │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── builder.cpython-310.pyc │ │ │ ├── abnf_regexp.cpython-310.pyc │ │ │ ├── exceptions.cpython-310.pyc │ │ │ ├── normalizers.cpython-310.pyc │ │ │ ├── parseresult.cpython-310.pyc │ │ │ └── validators.cpython-310.pyc │ │ ├── pygments │ │ ├── __pycache__ │ │ │ ├── lexer.cpython-310.pyc │ │ │ ├── style.cpython-310.pyc │ │ │ ├── token.cpython-310.pyc │ │ │ ├── util.cpython-310.pyc │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __main__.cpython-310.pyc │ │ │ ├── cmdline.cpython-310.pyc │ │ │ ├── console.cpython-310.pyc │ │ │ ├── filter.cpython-310.pyc │ │ │ ├── modeline.cpython-310.pyc │ │ │ ├── plugin.cpython-310.pyc │ │ │ ├── regexopt.cpython-310.pyc │ │ │ ├── scanner.cpython-310.pyc │ │ │ ├── formatter.cpython-310.pyc │ │ │ ├── sphinxext.cpython-310.pyc │ │ │ └── unistring.cpython-310.pyc │ │ ├── lexers │ │ │ └── __pycache__ │ │ │ │ ├── d.cpython-310.pyc │ │ │ │ ├── j.cpython-310.pyc │ │ │ │ ├── q.cpython-310.pyc │ │ │ │ ├── r.cpython-310.pyc │ │ │ │ ├── ada.cpython-310.pyc │ │ │ │ ├── apl.cpython-310.pyc │ │ │ │ ├── asc.cpython-310.pyc │ │ │ │ ├── asm.cpython-310.pyc │ │ │ │ ├── bdd.cpython-310.pyc │ │ │ │ ├── boa.cpython-310.pyc │ │ │ │ ├── bqn.cpython-310.pyc │ │ │ │ ├── css.cpython-310.pyc │ │ │ │ ├── dax.cpython-310.pyc │ │ │ │ ├── dns.cpython-310.pyc │ │ │ │ ├── ecl.cpython-310.pyc │ │ │ │ ├── elm.cpython-310.pyc │ │ │ │ ├── go.cpython-310.pyc │ │ │ │ ├── hdl.cpython-310.pyc │ │ │ │ ├── idl.cpython-310.pyc │ │ │ │ ├── jsx.cpython-310.pyc │ │ │ │ ├── jvm.cpython-310.pyc │ │ │ │ ├── ml.cpython-310.pyc │ │ │ │ ├── ncl.cpython-310.pyc │ │ │ │ ├── nit.cpython-310.pyc │ │ │ │ ├── nix.cpython-310.pyc │ │ │ │ ├── ooc.cpython-310.pyc │ │ │ │ ├── php.cpython-310.pyc │ │ │ │ ├── ptx.cpython-310.pyc │ │ │ │ ├── qvt.cpython-310.pyc │ │ │ │ ├── rdf.cpython-310.pyc │ │ │ │ ├── rnc.cpython-310.pyc │ │ │ │ ├── sas.cpython-310.pyc │ │ │ │ ├── sgf.cpython-310.pyc │ │ │ │ ├── smv.cpython-310.pyc │ │ │ │ ├── sql.cpython-310.pyc │ │ │ │ ├── tal.cpython-310.pyc │ │ │ │ ├── tcl.cpython-310.pyc │ │ │ │ ├── tlb.cpython-310.pyc │ │ │ │ ├── tls.cpython-310.pyc │ │ │ │ ├── tnt.cpython-310.pyc │ │ │ │ ├── ul4.cpython-310.pyc │ │ │ │ ├── usd.cpython-310.pyc │ │ │ │ ├── vip.cpython-310.pyc │ │ │ │ ├── web.cpython-310.pyc │ │ │ │ ├── x10.cpython-310.pyc │ │ │ │ └── zig.cpython-310.pyc │ │ └── styles │ │ │ └── __pycache__ │ │ │ ├── bw.cpython-310.pyc │ │ │ ├── rrt.cpython-310.pyc │ │ │ ├── sas.cpython-310.pyc │ │ │ ├── vim.cpython-310.pyc │ │ │ └── vs.cpython-310.pyc │ │ ├── __pycache__ │ │ └── typing_extensions.cpython-310.pyc │ │ └── _cffi_backend.cpython-310-x86_64-linux-gnu.so └── pyvenv.cfg ├── evolutionapi ├── __init__.py ├── models │ ├── __init__.py │ └── __pycache__ │ │ ├── call.cpython-310.pyc │ │ ├── chat.cpython-310.pyc │ │ ├── group.cpython-310.pyc │ │ ├── label.cpython-310.pyc │ │ ├── message.cpython-310.pyc │ │ ├── profile.cpython-310.pyc │ │ ├── __init__.cpython-310.pyc │ │ ├── instance.cpython-310.pyc │ │ └── presence.cpython-310.pyc ├── services │ ├── __init__.py │ └── __pycache__ │ │ ├── call.cpython-310.pyc │ │ ├── chat.cpython-310.pyc │ │ ├── group.cpython-310.pyc │ │ ├── label.cpython-310.pyc │ │ ├── __init__.cpython-310.pyc │ │ ├── instance.cpython-310.pyc │ │ ├── message.cpython-310.pyc │ │ ├── profile.cpython-310.pyc │ │ └── instance_operations.cpython-310.pyc └── __pycache__ │ ├── client.cpython-310.pyc │ ├── __init__.cpython-310.pyc │ └── exceptions.cpython-310.pyc └── .gitignore /env/lib64: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /env/bin/python3: -------------------------------------------------------------------------------- 1 | python -------------------------------------------------------------------------------- /env/bin/python3.10: -------------------------------------------------------------------------------- 1 | python -------------------------------------------------------------------------------- /evolutionapi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/bin/python: -------------------------------------------------------------------------------- 1 | /usr/bin/python -------------------------------------------------------------------------------- /evolutionapi/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evolutionapi/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/idna/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/nh3/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/twine/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/certifi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pkginfo/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/websocket/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cryptography/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/h11/py.typed: -------------------------------------------------------------------------------- 1 | Marker 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/h11/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jaraco/classes/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jaraco/context/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jaraco/functools/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/more_itertools/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/readme_renderer/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/secretstorage/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/zipp/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/charset_normalizer/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/importlib_metadata/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jaraco/classes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney/io/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/markdown_it/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/markdown_it/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip-22.0.2.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/websocket/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wheel/vendored/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wsproto/py.typed: -------------------------------------------------------------------------------- 1 | Marker 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/bidict/py.typed: -------------------------------------------------------------------------------- 1 | PEP-561 marker. 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/engineio/async_drivers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests-2.32.3.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests_toolbelt/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests_toolbelt/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/twine-5.1.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wheel-0.44.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/backports/tarfile/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cffi-1.17.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/h11-0.14.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/idna-3.10.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/importlib_metadata/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/mdurl-0.1.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/nh3-0.2.18.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip-22.0.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests_toolbelt/cookies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich-13.9.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/twine-5.1.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wheel-0.44.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wheel/vendored/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/zipp-3.20.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/bidict-0.23.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/certifi-2024.8.30.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils-0.21.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/h11-0.14.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | h11 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.10" 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney-0.8.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring-25.5.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/mdurl/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip-22.0.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pkginfo-1.10.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pycparser-2.22.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments-2.18.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests-2.32.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests_toolbelt/downloadutils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rfc3986-2.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/twine-5.1.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | twine 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/urllib3-2.2.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wheel/vendored/vendor.txt: -------------------------------------------------------------------------------- 1 | packaging==24.0 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wsproto-1.2.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/zipp-3.20.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | zipp 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/SecretStorage-3.3.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/bidict-0.23.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | bidict 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cryptography-43.0.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jaraco.classes-3.4.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jaraco.context-6.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jaraco.functools-4.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring-25.5.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | keyring 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/markdown_it/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/markdown_it_py-3.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/more_itertools-10.5.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pkginfo-1.10.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pkginfo 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/python_engineio-4.11.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/python_socketio-5.12.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/readme_renderer-44.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rfc3986-2.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | rfc3986 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/simple_websocket-1.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/websocket_client-1.8.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wsproto-1.2.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | wsproto 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/backports.tarfile-1.2.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/certifi-2024.8.30.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/charset_normalizer-3.4.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/importlib_metadata-8.5.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jaraco.classes-3.4.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jaraco 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jaraco.context-6.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jaraco 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 3) 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pycparser-2.22.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pycparser 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests-2.32.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests_toolbelt-1.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/typing_extensions-4.12.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jaraco.functools-4.1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jaraco 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney/io/__init__.py: -------------------------------------------------------------------------------- 1 | from .common import RouterClosed 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/python_engineio-4.11.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | engineio 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/python_socketio-5.12.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | socketio 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/websocket_client-1.8.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | websocket 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/SecretStorage-3.3.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | secretstorage 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/backports.tarfile-1.2.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | backports 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cffi-1.17.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _cffi_backend 2 | cffi 3 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.3' 2 | 3 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/readme_renderer-44.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | readme_renderer 2 | -------------------------------------------------------------------------------- /env/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | home = /usr/bin 2 | include-system-site-packages = false 3 | version = 3.10.12 4 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/easy-install.pth: -------------------------------------------------------------------------------- 1 | /home/davidson/Projects/evolution_client/python 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests_toolbelt-1.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests_toolbelt 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/simple_websocket-1.1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | simple_websocket 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Python-generated files 2 | __pycache__/ 3 | *.cpython*.pyc 4 | evolutionapi.egg-info/ 5 | dist/ -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/charset_normalizer-3.4.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | charset_normalizer 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/evolutionapi.egg-link: -------------------------------------------------------------------------------- 1 | /home/davidson/Projects/evolution_client/python 2 | . -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/importlib_metadata-8.5.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | importlib_metadata 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/more_itertools/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .more import * 2 | from .recipes import * 3 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wheel/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | 3 | __version__ = "0.44.0" 4 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/h11/tests/data/test-file: -------------------------------------------------------------------------------- 1 | 92b12bc045050b55b848d37167a1a63947c364579889ce1d39788e45e9fac9e5 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/writers/s5_html/themes/big-black/__base__: -------------------------------------------------------------------------------- 1 | # base theme of this theme: 2 | big-white 3 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/writers/s5_html/themes/small-black/__base__: -------------------------------------------------------------------------------- 1 | # base theme of this theme: 2 | small-white 3 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wsproto/typing.py: -------------------------------------------------------------------------------- 1 | from typing import List, Tuple 2 | 3 | Headers = List[Tuple[bytes, bytes]] 4 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/writers/s5_html/themes/medium-black/__base__: -------------------------------------------------------------------------------- 1 | # base theme of this theme: 2 | medium-white 3 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2021.10.08" 4 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.8" 3 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pkginfo-1.10.0.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pkginfo = pkginfo.commandline:main 3 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments-2.18.0.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pygmentize = pygments.cmdline:main 3 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _distutils_hack 2 | debian 3 | pkg_resources 4 | setuptools 5 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | __path__ = __import__('pkgutil').extend_path(__path__, __name__) # type: ignore 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/backports/tarfile/__main__.py: -------------------------------------------------------------------------------- 1 | from . import main 2 | 3 | 4 | if __name__ == '__main__': 5 | main() 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring/__main__.py: -------------------------------------------------------------------------------- 1 | if __name__ == '__main__': 2 | from keyring import cli 3 | 4 | cli.main() 5 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/websocket_client-1.8.0.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | wsdump = websocket._wsdump:main 3 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/charset_normalizer/__main__.py: -------------------------------------------------------------------------------- 1 | from .cli import cli_detect 2 | 3 | if __name__ == "__main__": 4 | cli_detect() 5 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney/io/tests/utils.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | have_session_bus = bool(os.environ.get('DBUS_SESSION_BUS_ADDRESS')) 4 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/markdown_it_py-3.0.0.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | markdown-it=markdown_it.cli.parse:main 3 | 4 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/urllib3/py.typed: -------------------------------------------------------------------------------- 1 | # Instruct type checkers to look for inline type annotations in this package. 2 | # See PEP 561. 3 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cffi-1.17.1.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [distutils.setup_keywords] 2 | cffi_modules = cffi.setuptools_ext:cffi_modules 3 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/charset_normalizer-3.4.0.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | normalizer = charset_normalizer.cli:cli_detect 3 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/idna-3.10.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/mdurl-0.1.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.7.1 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wheel-0.44.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __all__ = ["contents", "where"] 4 | __version__ = "2024.08.30" 5 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils-0.21.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney-0.8.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.7.1 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/nh3/__init__.py: -------------------------------------------------------------------------------- 1 | from .nh3 import * 2 | 3 | __doc__ = nh3.__doc__ 4 | if hasattr(nh3, "__all__"): 5 | __all__ = nh3.__all__ -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/charset_normalizer/version.py: -------------------------------------------------------------------------------- 1 | """ 2 | Expose version 3 | """ 4 | 5 | __version__ = "3.4.0" 6 | VERSION = __version__.split(".") 7 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/markdown_it_py-3.0.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.7.1 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/more_itertools-10.5.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.8.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/nh3/nh3.abi3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/nh3/nh3.abi3.so -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/platformdirs/version.py: -------------------------------------------------------------------------------- 1 | """ Version information """ 2 | 3 | __version__ = "2.4.1" 4 | __version_info__ = (2, 4, 1) 5 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments-2.18.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: hatchling 1.24.2 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich-13.9.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: poetry-core 1.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/urllib3-2.2.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: hatchling 1.25.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /evolutionapi/__pycache__/client.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/evolutionapi/__pycache__/client.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/h11-0.14.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip-22.0.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/themes.py: -------------------------------------------------------------------------------- 1 | from .default_styles import DEFAULT_STYLES 2 | from .theme import Theme 3 | 4 | 5 | DEFAULT = Theme(DEFAULT_STYLES) 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/twine-5.1.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (70.1.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/typing_extensions-4.12.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/zipp-3.20.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (74.1.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /evolutionapi/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/evolutionapi/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/bidict-0.23.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.42.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/certifi-2024.8.30.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (74.0.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring-25.5.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (75.2.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pkginfo-1.10.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.41.3) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pycparser-2.22.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests-2.32.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.43.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__init__.py: -------------------------------------------------------------------------------- 1 | from .more import * # noqa 2 | from .recipes import * # noqa 3 | 4 | __version__ = '8.8.0' 5 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wsproto-1.2.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /evolutionapi/__pycache__/exceptions.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/evolutionapi/__pycache__/exceptions.cpython-310.pyc -------------------------------------------------------------------------------- /evolutionapi/models/__pycache__/call.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/evolutionapi/models/__pycache__/call.cpython-310.pyc -------------------------------------------------------------------------------- /evolutionapi/models/__pycache__/chat.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/evolutionapi/models/__pycache__/chat.cpython-310.pyc -------------------------------------------------------------------------------- /evolutionapi/models/__pycache__/group.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/evolutionapi/models/__pycache__/group.cpython-310.pyc -------------------------------------------------------------------------------- /evolutionapi/models/__pycache__/label.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/evolutionapi/models/__pycache__/label.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/SecretStorage-3.3.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jaraco.classes-3.4.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.43.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jaraco.context-6.0.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (73.0.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jaraco.functools-4.1.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (75.1.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/themes.py: -------------------------------------------------------------------------------- 1 | from .default_styles import DEFAULT_STYLES 2 | from .theme import Theme 3 | 4 | 5 | DEFAULT = Theme(DEFAULT_STYLES) 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pycparser/ply/__init__.py: -------------------------------------------------------------------------------- 1 | # PLY package 2 | # Author: David Beazley (dave@dabeaz.com) 3 | 4 | __version__ = '3.9' 5 | __all__ = ['lex','yacc'] 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/python_engineio-4.11.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (75.6.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/python_socketio-5.12.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (75.6.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/readme_renderer-44.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (70.2.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/simple_websocket-1.1.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (75.1.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/websocket_client-1.8.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.43.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /evolutionapi/models/__pycache__/message.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/evolutionapi/models/__pycache__/message.cpython-310.pyc -------------------------------------------------------------------------------- /evolutionapi/models/__pycache__/profile.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/evolutionapi/models/__pycache__/profile.cpython-310.pyc -------------------------------------------------------------------------------- /evolutionapi/services/__pycache__/call.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/evolutionapi/services/__pycache__/call.cpython-310.pyc -------------------------------------------------------------------------------- /evolutionapi/services/__pycache__/chat.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/evolutionapi/services/__pycache__/chat.cpython-310.pyc -------------------------------------------------------------------------------- /evolutionapi/services/__pycache__/group.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/evolutionapi/services/__pycache__/group.cpython-310.pyc -------------------------------------------------------------------------------- /evolutionapi/services/__pycache__/label.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/evolutionapi/services/__pycache__/label.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/backports.tarfile-1.2.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.43.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/importlib_metadata-8.5.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (74.1.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/cli-arm64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/setuptools/cli-arm64.exe -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/gui-arm64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/setuptools/gui-arm64.exe -------------------------------------------------------------------------------- /evolutionapi/models/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/evolutionapi/models/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /evolutionapi/models/__pycache__/instance.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/evolutionapi/models/__pycache__/instance.cpython-310.pyc -------------------------------------------------------------------------------- /evolutionapi/models/__pycache__/presence.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/evolutionapi/models/__pycache__/presence.cpython-310.pyc -------------------------------------------------------------------------------- /evolutionapi/services/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/evolutionapi/services/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /evolutionapi/services/__pycache__/instance.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/evolutionapi/services/__pycache__/instance.cpython-310.pyc -------------------------------------------------------------------------------- /evolutionapi/services/__pycache__/message.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/evolutionapi/services/__pycache__/message.cpython-310.pyc -------------------------------------------------------------------------------- /evolutionapi/services/__pycache__/profile.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/evolutionapi/services/__pycache__/profile.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/charset_normalizer/cli/__init__.py: -------------------------------------------------------------------------------- 1 | from .__main__ import cli_detect, query_yes_no 2 | 3 | __all__ = ( 4 | "cli_detect", 5 | "query_yes_no", 6 | ) 7 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/markdown_it/__init__.py: -------------------------------------------------------------------------------- 1 | """A Python port of Markdown-It""" 2 | __all__ = ("MarkdownIt",) 3 | __version__ = "3.0.0" 4 | 5 | from .main import MarkdownIt 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cryptography-43.0.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: maturin (1.7.0) 3 | Root-Is-Purelib: false 4 | Tag: cp39-abi3-manylinux_2_28_x86_64 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rfc3986-2.0.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/nh3-0.2.18.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: maturin (1.7.0) 3 | Root-Is-Purelib: false 4 | Tag: cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64 5 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from .py import Trie 4 | 5 | __all__ = ["Trie"] 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wheel-0.44.0.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | wheel=wheel.cli:main 3 | 4 | [distutils.commands] 5 | bdist_wheel=wheel.bdist_wheel:bdist_wheel 6 | 7 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/writers/odf_odt/styles.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/writers/odf_odt/styles.odt -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- 1 | SUCCESS = 0 2 | ERROR = 1 3 | UNKNOWN_ERROR = 2 4 | VIRTUALENV_NOT_FOUND = 3 5 | PREVIOUS_BUILD_DIR_ERROR = 4 6 | NO_MATCHES_FOUND = 23 7 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests_toolbelt-1.0.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.40.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- 1 | # EASY-INSTALL-SCRIPT: %(spec)r,%(script_name)r 2 | __requires__ = %(spec)r 3 | __import__('pkg_resources').run_script(%(spec)r, %(script_name)r) 4 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cffi/__pycache__/api.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cffi/__pycache__/api.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cffi/__pycache__/lock.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cffi/__pycache__/lock.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/distutils-precedence.pth: -------------------------------------------------------------------------------- 1 | import os; var = 'SETUPTOOLS_USE_DISTUTILS'; enabled = os.environ.get(var, 'stdlib') == 'local'; enabled and __import__('_distutils_hack').add_shim(); 2 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/idna/__pycache__/core.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/idna/__pycache__/core.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/abc.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/abc.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/ansi.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/ansi.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/bar.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/bar.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/box.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/box.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/json.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/json.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/live.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/live.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/repr.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/repr.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/rule.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/rule.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/text.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/text.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/tree.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/tree.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/twine/__pycache__/cli.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/twine/__pycache__/cli.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/zipp/__pycache__/glob.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/zipp/__pycache__/glob.cpython-310.pyc -------------------------------------------------------------------------------- /evolutionapi/services/__pycache__/instance_operations.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/evolutionapi/services/__pycache__/instance_operations.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/certifi/__pycache__/core.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/certifi/__pycache__/core.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cffi/__pycache__/cparser.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cffi/__pycache__/cparser.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cffi/__pycache__/error.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cffi/__pycache__/error.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cffi/__pycache__/model.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cffi/__pycache__/model.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/__pycache__/io.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/__pycache__/io.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/writers/html4css1/template.txt: -------------------------------------------------------------------------------- 1 | %(head_prefix)s 2 | %(head)s 3 | %(stylesheet)s 4 | %(body_prefix)s 5 | %(body_pre_docinfo)s 6 | %(docinfo)s 7 | %(body)s 8 | %(body_suffix)s 9 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/idna/__pycache__/codec.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/idna/__pycache__/codec.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/idna/__pycache__/compat.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/idna/__pycache__/compat.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney/__pycache__/auth.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/jeepney/__pycache__/auth.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney/__pycache__/bus.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/jeepney/__pycache__/bus.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney/__pycache__/fds.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/jeepney/__pycache__/fds.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring/__pycache__/cli.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/keyring/__pycache__/cli.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring/__pycache__/core.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/keyring/__pycache__/core.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring/__pycache__/http.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/keyring/__pycache__/http.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/mdurl/__pycache__/_parse.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/mdurl/__pycache__/_parse.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/mdurl/__pycache__/_url.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/mdurl/__pycache__/_url.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/nh3/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/nh3/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip-22.0.2.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal.cli.main:main 3 | pip3 = pip._internal.cli.main:main 4 | pip3.10 = pip._internal.cli.main:main 5 | 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/__pycache__/__main__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/__pycache__/__main__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.12.0' 5 | 6 | from .wrappers import * # noqa: F401, F403 7 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py: -------------------------------------------------------------------------------- 1 | import setuptools 2 | setuptools.setup( 3 | name="my-test-package", 4 | version="1.0", 5 | zip_safe=True, 6 | ) 7 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests/__pycache__/api.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/requests/__pycache__/api.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rfc3986/__pycache__/api.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rfc3986/__pycache__/api.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rfc3986/__pycache__/iri.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rfc3986/__pycache__/iri.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rfc3986/__pycache__/misc.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rfc3986/__pycache__/misc.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rfc3986/__pycache__/uri.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rfc3986/__pycache__/uri.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/_fileno.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/_fileno.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/_loop.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/_loop.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/_pick.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/_pick.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/_ratio.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/_ratio.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/_stack.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/_stack.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/_timer.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/_timer.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/_wrap.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/_wrap.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/align.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/align.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/cells.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/cells.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/color.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/color.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/columns.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/columns.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/console.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/console.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/control.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/control.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/emoji.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/emoji.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/errors.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/errors.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/jupyter.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/jupyter.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/layout.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/layout.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/logging.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/logging.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/markup.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/markup.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/measure.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/measure.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/padding.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/padding.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/pager.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/pager.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/palette.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/palette.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/panel.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/panel.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/pretty.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/pretty.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/prompt.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/prompt.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/region.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/region.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/scope.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/scope.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/screen.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/screen.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/segment.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/segment.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/spinner.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/spinner.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/status.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/status.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/style.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/style.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/styled.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/styled.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/syntax.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/syntax.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/table.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/table.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/theme.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/theme.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/themes.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/themes.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/twine/__pycache__/auth.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/twine/__pycache__/auth.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/twine/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/twine/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/twine/__pycache__/wheel.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/twine/__pycache__/wheel.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wheel/__pycache__/util.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/wheel/__pycache__/util.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cffi/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cffi/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cffi/__pycache__/pkgconfig.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cffi/__pycache__/pkgconfig.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cffi/__pycache__/verifier.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cffi/__pycache__/verifier.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cryptography/hazmat/bindings/_rust.abi3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cryptography/hazmat/bindings/_rust.abi3.so -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/__pycache__/core.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/__pycache__/core.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/__pycache__/nodes.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/__pycache__/nodes.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/writers/html5_polyglot/template.txt: -------------------------------------------------------------------------------- 1 | %(head_prefix)s 2 | %(head)s 3 | %(stylesheet)s 4 | %(body_prefix)s 5 | %(body_pre_docinfo)s 6 | %(docinfo)s 7 | %(body)s 8 | %(body_suffix)s 9 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/idna/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/idna/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/idna/__pycache__/idnadata.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/idna/__pycache__/idnadata.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/idna/__pycache__/intranges.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/idna/__pycache__/intranges.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/idna/__pycache__/uts46data.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/idna/__pycache__/uts46data.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring/__pycache__/errors.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/keyring/__pycache__/errors.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/mdurl/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/mdurl/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/mdurl/__pycache__/_decode.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/mdurl/__pycache__/_decode.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/mdurl/__pycache__/_encode.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/mdurl/__pycache__/_encode.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/mdurl/__pycache__/_format.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/mdurl/__pycache__/_format.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pkginfo/__pycache__/bdist.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pkginfo/__pycache__/bdist.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pkginfo/__pycache__/index.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pkginfo/__pycache__/index.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pkginfo/__pycache__/sdist.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pkginfo/__pycache__/sdist.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pkginfo/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pkginfo/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pkginfo/__pycache__/wheel.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pkginfo/__pycache__/wheel.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/__pycache__/lexer.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/__pycache__/lexer.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/__pycache__/style.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/__pycache__/style.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/__pycache__/token.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/__pycache__/token.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/__pycache__/util.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/__pycache__/util.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests/__pycache__/auth.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/requests/__pycache__/auth.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests/__pycache__/certs.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/requests/__pycache__/certs.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests/__pycache__/help.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/requests/__pycache__/help.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests/__pycache__/hooks.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/requests/__pycache__/hooks.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/requests/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rfc3986/__pycache__/_mixin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rfc3986/__pycache__/_mixin.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rfc3986/__pycache__/compat.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rfc3986/__pycache__/compat.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/__main__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/__main__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/_inspect.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/_inspect.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/_palettes.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/_palettes.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/_spinners.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/_spinners.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/_windows.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/_windows.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/constrain.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/constrain.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/diagnose.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/diagnose.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/filesize.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/filesize.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/markdown.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/markdown.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/progress.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/progress.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/protocol.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/protocol.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/traceback.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/traceback.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/_distutils/debug.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | # If DISTUTILS_DEBUG is anything other than the empty string, we run in 4 | # debug mode. 5 | DEBUG = os.environ.get('DISTUTILS_DEBUG') 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- 1 | import pkg_resources 2 | 3 | try: 4 | __version__ = pkg_resources.get_distribution('setuptools').version 5 | except Exception: 6 | __version__ = 'unknown' 7 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/twine/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/twine/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/twine/__pycache__/__main__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/twine/__pycache__/__main__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/twine/__pycache__/package.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/twine/__pycache__/package.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/twine/__pycache__/settings.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/twine/__pycache__/settings.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/twine/__pycache__/wininst.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/twine/__pycache__/wininst.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/urllib3/__pycache__/fields.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/urllib3/__pycache__/fields.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wheel/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/wheel/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wheel/__pycache__/__main__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/wheel/__pycache__/__main__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wheel/__pycache__/metadata.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/wheel/__pycache__/metadata.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wheel/cli/__pycache__/pack.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/wheel/cli/__pycache__/pack.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wheel/cli/__pycache__/tags.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/wheel/cli/__pycache__/tags.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/zipp/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/zipp/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/__pycache__/typing_extensions.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/__pycache__/typing_extensions.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/_cffi_backend.cpython-310-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/_cffi_backend.cpython-310-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/certifi/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/certifi/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/certifi/__pycache__/__main__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/certifi/__pycache__/__main__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cffi/__pycache__/cffi_opcode.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cffi/__pycache__/cffi_opcode.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cffi/__pycache__/commontypes.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cffi/__pycache__/commontypes.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cffi/__pycache__/ffiplatform.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cffi/__pycache__/ffiplatform.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cffi/__pycache__/recompiler.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cffi/__pycache__/recompiler.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cffi/__pycache__/vengine_cpy.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cffi/__pycache__/vengine_cpy.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cffi/__pycache__/vengine_gen.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cffi/__pycache__/vengine_gen.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/__pycache__/__main__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/__pycache__/__main__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/__pycache__/examples.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/__pycache__/examples.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/__pycache__/frontend.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/__pycache__/frontend.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/docutils.conf: -------------------------------------------------------------------------------- 1 | # This configuration file is to prevent tools/buildhtml.py from 2 | # processing text files in and below this directory. 3 | 4 | [buildhtml application] 5 | prune: . 6 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/idna/__pycache__/package_data.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/idna/__pycache__/package_data.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/jeepney/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney/__pycache__/bindgen.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/jeepney/__pycache__/bindgen.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney/__pycache__/low_level.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/jeepney/__pycache__/low_level.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney/__pycache__/routing.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/jeepney/__pycache__/routing.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney/__pycache__/wrappers.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/jeepney/__pycache__/wrappers.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney/io/__pycache__/common.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/jeepney/io/__pycache__/common.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney/io/__pycache__/trio.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/jeepney/io/__pycache__/trio.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/keyring/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring/__pycache__/__main__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/keyring/__pycache__/__main__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring/__pycache__/backend.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/keyring/__pycache__/backend.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/markdown_it/__pycache__/main.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/markdown_it/__pycache__/main.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/markdown_it/__pycache__/ruler.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/markdown_it/__pycache__/ruler.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/markdown_it/__pycache__/token.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/markdown_it/__pycache__/token.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/markdown_it/__pycache__/tree.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/markdown_it/__pycache__/tree.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/markdown_it/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/markdown_it/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/__pycache__/six.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/__pycache__/six.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pkginfo/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pkginfo/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pkginfo/__pycache__/develop.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pkginfo/__pycache__/develop.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pkginfo/__pycache__/installed.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pkginfo/__pycache__/installed.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pycparser/__pycache__/c_ast.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pycparser/__pycache__/c_ast.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pycparser/__pycache__/c_lexer.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pycparser/__pycache__/c_lexer.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pycparser/__pycache__/lextab.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pycparser/__pycache__/lextab.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pycparser/__pycache__/yacctab.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pycparser/__pycache__/yacctab.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pycparser/ply/__pycache__/cpp.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pycparser/ply/__pycache__/cpp.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pycparser/ply/__pycache__/lex.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pycparser/ply/__pycache__/lex.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/__pycache__/__main__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/__pycache__/__main__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/__pycache__/cmdline.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/__pycache__/cmdline.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/__pycache__/console.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/__pycache__/console.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/__pycache__/filter.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/__pycache__/filter.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/__pycache__/modeline.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/__pycache__/modeline.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/__pycache__/plugin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/__pycache__/plugin.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/__pycache__/regexopt.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/__pycache__/regexopt.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/__pycache__/scanner.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/__pycache__/scanner.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/d.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/d.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/j.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/j.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/q.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/q.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/r.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/r.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/requests/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests/__pycache__/adapters.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/requests/__pycache__/adapters.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests/__pycache__/compat.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/requests/__pycache__/compat.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests/__pycache__/cookies.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/requests/__pycache__/cookies.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/requests/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests/__pycache__/packages.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/requests/__pycache__/packages.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests/__pycache__/sessions.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/requests/__pycache__/sessions.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rfc3986/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rfc3986/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rfc3986/__pycache__/builder.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rfc3986/__pycache__/builder.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/_cell_widths.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/_cell_widths.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/_emoji_codes.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/_emoji_codes.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/_extension.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/_extension.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/_log_render.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/_log_render.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/_null_file.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/_null_file.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/containers.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/containers.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/file_proxy.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/file_proxy.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/highlighter.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/highlighter.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/live_render.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/live_render.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/progress_bar.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/progress_bar.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/__pycache__/_imp.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/setuptools/__pycache__/_imp.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/__pycache__/config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/setuptools/__pycache__/config.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/__pycache__/dist.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/setuptools/__pycache__/dist.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/__pycache__/errors.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/setuptools/__pycache__/errors.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/__pycache__/glob.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/setuptools/__pycache__/glob.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/__pycache__/launch.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/setuptools/__pycache__/launch.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/__pycache__/monkey.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/setuptools/__pycache__/monkey.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/__pycache__/msvc.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/setuptools/__pycache__/msvc.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/__pycache__/wheel.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/setuptools/__pycache__/wheel.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/twine/__pycache__/exceptions.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/twine/__pycache__/exceptions.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/twine/__pycache__/repository.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/twine/__pycache__/repository.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/urllib3/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/urllib3/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/urllib3/__pycache__/_version.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/urllib3/__pycache__/_version.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/urllib3/__pycache__/filepost.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/urllib3/__pycache__/filepost.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/urllib3/__pycache__/response.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/urllib3/__pycache__/response.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/urllib3/util/__pycache__/ssl_.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/urllib3/util/__pycache__/ssl_.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/urllib3/util/__pycache__/url.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/urllib3/util/__pycache__/url.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/urllib3/util/__pycache__/util.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/urllib3/util/__pycache__/util.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/urllib3/util/__pycache__/wait.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/urllib3/util/__pycache__/wait.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wheel/__pycache__/bdist_wheel.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/wheel/__pycache__/bdist_wheel.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wheel/__pycache__/wheelfile.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/wheel/__pycache__/wheelfile.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wheel/cli/__pycache__/convert.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/wheel/cli/__pycache__/convert.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wheel/cli/__pycache__/unpack.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/wheel/cli/__pycache__/unpack.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/zipp/compat/__pycache__/py310.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/zipp/compat/__pycache__/py310.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/backports/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/backports/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cffi/__pycache__/_imp_emulation.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cffi/__pycache__/_imp_emulation.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cffi/__pycache__/backend_ctypes.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cffi/__pycache__/backend_ctypes.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cffi/__pycache__/setuptools_ext.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cffi/__pycache__/setuptools_ext.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cryptography/__pycache__/fernet.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cryptography/__pycache__/fernet.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cryptography/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cryptography/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jaraco/classes/__pycache__/meta.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/jaraco/classes/__pycache__/meta.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney/io/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/jeepney/io/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney/io/__pycache__/asyncio.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/jeepney/io/__pycache__/asyncio.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney/io/__pycache__/blocking.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/jeepney/io/__pycache__/blocking.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring/__pycache__/completion.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/keyring/__pycache__/completion.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring/__pycache__/credentials.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/keyring/__pycache__/credentials.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring/compat/__pycache__/py38.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/keyring/compat/__pycache__/py38.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/markdown_it/__pycache__/_compat.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/markdown_it/__pycache__/_compat.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/more_itertools/__init__.py: -------------------------------------------------------------------------------- 1 | """More routines for operating on iterables, beyond itertools""" 2 | 3 | from .more import * # noqa 4 | from .recipes import * # noqa 5 | 6 | __version__ = '10.5.0' 7 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/more_itertools/__pycache__/more.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/more_itertools/__pycache__/more.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_internal/__pycache__/main.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_internal/__pycache__/main.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/__pycache__/distro.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/__pycache__/distro.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pkginfo/__pycache__/commandline.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pkginfo/__pycache__/commandline.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pycparser/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pycparser/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pycparser/__pycache__/_ast_gen.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pycparser/__pycache__/_ast_gen.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pycparser/__pycache__/c_parser.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pycparser/__pycache__/c_parser.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pycparser/__pycache__/plyparser.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pycparser/__pycache__/plyparser.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pycparser/ply/__pycache__/yacc.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pycparser/ply/__pycache__/yacc.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pycparser/ply/__pycache__/ygen.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pycparser/ply/__pycache__/ygen.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/__pycache__/formatter.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/__pycache__/formatter.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/__pycache__/sphinxext.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/__pycache__/sphinxext.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/__pycache__/unistring.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/__pycache__/unistring.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/ada.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/ada.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/apl.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/apl.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/asc.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/asc.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/asm.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/asm.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/bdd.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/bdd.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/boa.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/boa.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/bqn.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/bqn.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/css.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/css.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/dax.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/dax.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/dns.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/dns.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/ecl.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/ecl.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/elm.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/elm.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/go.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/go.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/hdl.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/hdl.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/idl.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/idl.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/jsx.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/jsx.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/jvm.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/jvm.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/ml.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/ml.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/ncl.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/ncl.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/nit.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/nit.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/nix.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/nix.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/ooc.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/ooc.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/php.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/php.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/ptx.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/ptx.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/qvt.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/qvt.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/rdf.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/rdf.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/rnc.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/rnc.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/sas.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/sas.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/sgf.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/sgf.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/smv.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/smv.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/sql.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/sql.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/tal.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/tal.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/tcl.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/tcl.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/tlb.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/tlb.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/tls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/tls.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/tnt.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/tnt.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/ul4.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/ul4.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/usd.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/usd.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/vip.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/vip.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/web.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/web.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/x10.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/x10.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/lexers/__pycache__/zig.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/lexers/__pycache__/zig.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/styles/__pycache__/bw.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/styles/__pycache__/bw.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/styles/__pycache__/rrt.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/styles/__pycache__/rrt.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/styles/__pycache__/sas.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/styles/__pycache__/sas.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/styles/__pycache__/vim.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/styles/__pycache__/vim.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pygments/styles/__pycache__/vs.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pygments/styles/__pycache__/vs.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/readme_renderer/__pycache__/rst.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/readme_renderer/__pycache__/rst.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/readme_renderer/__pycache__/txt.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/readme_renderer/__pycache__/txt.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests/__pycache__/exceptions.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/requests/__pycache__/exceptions.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/requests/__pycache__/structures.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/requests/__pycache__/structures.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rfc3986/__pycache__/abnf_regexp.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rfc3986/__pycache__/abnf_regexp.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rfc3986/__pycache__/exceptions.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rfc3986/__pycache__/exceptions.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rfc3986/__pycache__/normalizers.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rfc3986/__pycache__/normalizers.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rfc3986/__pycache__/parseresult.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rfc3986/__pycache__/parseresult.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rfc3986/__pycache__/validators.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rfc3986/__pycache__/validators.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/_emoji_replace.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/_emoji_replace.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/_export_format.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/_export_format.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/_win32_console.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/_win32_console.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/color_triplet.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/color_triplet.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/default_styles.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/default_styles.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/rich/__pycache__/terminal_theme.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/rich/__pycache__/terminal_theme.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/secretstorage/__pycache__/item.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/secretstorage/__pycache__/item.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/secretstorage/__pycache__/util.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/secretstorage/__pycache__/util.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/setuptools/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/__pycache__/dep_util.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/setuptools/__pycache__/dep_util.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/__pycache__/depends.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/setuptools/__pycache__/depends.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/__pycache__/sandbox.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/setuptools/__pycache__/sandbox.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/setuptools/__pycache__/version.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/setuptools/__pycache__/version.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/urllib3/__pycache__/connection.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/urllib3/__pycache__/connection.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/urllib3/__pycache__/exceptions.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/urllib3/__pycache__/exceptions.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/urllib3/__pycache__/poolmanager.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/urllib3/__pycache__/poolmanager.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/urllib3/http2/__pycache__/probe.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/urllib3/http2/__pycache__/probe.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/urllib3/util/__pycache__/proxy.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/urllib3/util/__pycache__/proxy.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/urllib3/util/__pycache__/retry.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/urllib3/util/__pycache__/retry.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wheel/__pycache__/_bdist_wheel.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/wheel/__pycache__/_bdist_wheel.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/wheel/cli/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/wheel/cli/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/zipp/compat/__pycache__/overlay.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/zipp/compat/__pycache__/overlay.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cffi-1.17.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (74.1.1) 3 | Root-Is-Purelib: false 4 | Tag: cp310-cp310-manylinux_2_17_x86_64 5 | Tag: cp310-cp310-manylinux2014_x86_64 6 | 7 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/charset_normalizer/__pycache__/api.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/charset_normalizer/__pycache__/api.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/charset_normalizer/__pycache__/cd.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/charset_normalizer/__pycache__/cd.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/charset_normalizer/__pycache__/md.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/charset_normalizer/__pycache__/md.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cryptography/__pycache__/__about__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cryptography/__pycache__/__about__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cryptography/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cryptography/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cryptography/x509/__pycache__/base.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cryptography/x509/__pycache__/base.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cryptography/x509/__pycache__/name.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cryptography/x509/__pycache__/name.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cryptography/x509/__pycache__/ocsp.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cryptography/x509/__pycache__/ocsp.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/cryptography/x509/__pycache__/oid.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/cryptography/x509/__pycache__/oid.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/__pycache__/statemachine.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/__pycache__/statemachine.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/af.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/af.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/ar.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/ar.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/ca.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/ca.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/cs.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/cs.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/da.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/da.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/de.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/de.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/en.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/en.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/eo.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/eo.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/es.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/es.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/fa.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/fa.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/fi.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/fi.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/fr.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/fr.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/gl.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/gl.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/he.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/he.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/it.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/it.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/ja.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/ja.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/ka.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/ka.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/ko.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/ko.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/lt.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/lt.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/lv.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/lv.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/nl.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/nl.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/pl.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/pl.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/ru.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/ru.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/sk.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/sk.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/sv.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/sv.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/languages/__pycache__/uk.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/languages/__pycache__/uk.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/parsers/__pycache__/null.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/parsers/__pycache__/null.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/readers/__pycache__/pep.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/readers/__pycache__/pep.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/utils/__pycache__/roman.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/utils/__pycache__/roman.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/docutils/writers/__pycache__/null.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/docutils/writers/__pycache__/null.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney/__pycache__/bus_messages.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/jeepney/__pycache__/bus_messages.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney/io/__pycache__/threading.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/jeepney/io/__pycache__/threading.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney/io/tests/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/jeepney/io/tests/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney/tests/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/jeepney/tests/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney/tests/__pycache__/test_bus.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/jeepney/tests/__pycache__/test_bus.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/jeepney/tests/__pycache__/test_fds.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/jeepney/tests/__pycache__/test_fds.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring/__pycache__/devpi_client.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/keyring/__pycache__/devpi_client.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring/backends/__pycache__/fail.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/keyring/backends/__pycache__/fail.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring/backends/__pycache__/null.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/keyring/backends/__pycache__/null.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring/compat/__pycache__/py312.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/keyring/compat/__pycache__/py312.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring/testing/__pycache__/util.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/keyring/testing/__pycache__/util.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring/util/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/keyring/util/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/keyring/util/__pycache__/platform_.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/keyring/util/__pycache__/platform_.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/markdown_it/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/markdown_it/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/markdown_it/__pycache__/_punycode.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/markdown_it/__pycache__/_punycode.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/markdown_it/__pycache__/renderer.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/markdown_it/__pycache__/renderer.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/markdown_it/cli/__pycache__/parse.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/markdown_it/cli/__pycache__/parse.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/markdown_it/common/entities.py: -------------------------------------------------------------------------------- 1 | """HTML5 entities map: { name -> characters }.""" 2 | import html.entities 3 | 4 | entities = {name.rstrip(";"): chars for name, chars in html.entities.html5.items()} 5 | -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/more_itertools/__pycache__/recipes.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/more_itertools/__pycache__/recipes.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/core.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/core.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/align.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/align.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/box.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/box.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/color.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/color.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/json.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/json.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/live.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/live.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/style.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/style.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/table.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/table.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/text.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/text.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pkg_resources/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pkg_resources/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /env/lib/python3.10/site-packages/pkginfo/__pycache__/distribution.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolutionAPI/evolution-client-python/HEAD/env/lib/python3.10/site-packages/pkginfo/__pycache__/distribution.cpython-310.pyc --------------------------------------------------------------------------------