commit e4d0dee3114c0b5bef81f1f90948384d3d3ab8bb Author: Marsway Date: Tue Feb 24 17:00:27 2026 +0800 init diff --git a/README.md b/README.md new file mode 100644 index 0000000..93f3691 --- /dev/null +++ b/README.md @@ -0,0 +1,181 @@ +# AD User Creator + +用于 AD 用户自动化创建的 Python 脚本集,支持交互式与批量模式(CSV/XLSX),并提供菜单式单入口程序。 + +## Python 环境 + +- 解释器:`/opt/homebrew/Caskroom/miniconda/base/bin/python` + +## 安装依赖 + +```bash +/opt/homebrew/Caskroom/miniconda/base/bin/python -m pip install -r requirements.txt +``` + +## 配置 + +1. 修改 `config/config.yaml`(所有配置均在此文件中维护)。 + +配置优先级:命令行参数(如 `--config`)> `config.yaml`。 + +关键字段: + +- `ldap.people_base_dn`: 例如 `OU=People,DC=example,DC=com` +- `ldap.groups_base_dn`: 例如 `OU=linux,OU=Groups,DC=example,DC=com` +- `defaults.initial_uid_number`: 默认为 `2106` +- `defaults.initial_password`: 默认初始密码 `"1234.com"` +- `paths.uid_state_file`: uidNumber 持久化文件 +- `paths.group_gid_map_file`: 组与 gidNumber 映射文件(默认 `staff: 3000`) +- `behavior.require_ldaps_for_password`: 密码设置要求 LDAPS(建议保持 `true`) + +## 初始化状态文件 + +```bash +/opt/homebrew/Caskroom/miniconda/base/bin/python -m ad_user_creator.main init-state +``` + +## 菜单式入口(推荐) + +新增菜单入口: + +```bash +/opt/homebrew/Caskroom/miniconda/base/bin/python -m ad_user_creator.entry +``` + +启动后会先选择模式: + +- `1` 交互式创建 +- `2` 批量导入 +- `3` 修改配置文件路径 +- `q` 退出 + +## 交互式创建(命令行直达) + +```bash +/opt/homebrew/Caskroom/miniconda/base/bin/python -m ad_user_creator.main interactive --config config/config.yaml +``` + +或直接运行根目录脚本(默认交互式): + +```bash +./run.sh +``` + +dry-run: + +```bash +/opt/homebrew/Caskroom/miniconda/base/bin/python -m ad_user_creator.main interactive --dry-run +``` + +## 批量创建(正式支持 CSV/XLSX) + +CSV: + +```bash +/opt/homebrew/Caskroom/miniconda/base/bin/python -m ad_user_creator.main batch --input users.csv --continue-on-error true +``` + +```bash +./run.sh -f users.csv +``` + +XLSX: + +```bash +/opt/homebrew/Caskroom/miniconda/base/bin/python -m ad_user_creator.main batch --input users.xlsx --continue-on-error true +``` + +```bash +./run.sh -f users.xlsx +``` + +dry-run 示例: + +```bash +./run.sh -f users.xlsx --dry-run +``` + +仅支持 `.csv` 与 `.xlsx`。 + +## 输入表头格式 + +必须包含以下列: + +- `姓名` +- `用户名` +- `邮箱` +- `部门 OU` +- `基础组` +- `项目组` +- `资源组` + +示例: + +```csv +姓名,用户名,邮箱,部门 OU,基础组,项目组,资源组 +杨滨,yangbin,tony.yang@aflowx.com,CEO,staff,, +孙彤,sunt,sun.tong@aflowx.com,CTO,staff,, +矫渊培,jiaoyp,jiao.yp@aflowx.com,RnD/tm_hardware,staff,"prj_r3xx_hw,prj_demo", +``` + +规则: + +- `部门 OU=CEO` -> 用户 DN 路径包含 `OU=CEO,` +- `部门 OU=RnD/tm_hardware` -> 用户 DN 路径包含 `OU=tm_hardware,OU=RnD,` +- `项目组`、`资源组` 支持逗号分隔,可空 + +## Linux 属性映射 + +创建用户时会写入: + +- `uid = sAMAccountName` +- `uidNumber = state/uid_state.json` 自增分配(起始 2106) +- `unixHomeDirectory = /home/` +- `gidNumber = 基础组 gidNumber`(来自 `state/group_gid_map.yaml`) +- `mail = 邮箱` + +## 账号启用与初始密码 + +用户创建流程为: + +1. 先以禁用状态创建用户(`userAccountControl=514`) +2. 设置初始密码(默认 `"1234.com"`) +3. 启用用户(`userAccountControl=512`) +4. 添加基础组与可选组 + +## 输出与日志 + +- 批量结果:`state/last_batch_result.csv` +- 运行日志:`state/run.log` +- 批量状态: + - `CREATED`:新建用户成功 + - `UPDATED`:已存在用户,属性或组关系发生更新 + - `SKIPPED_NO_CHANGE`:已存在用户且无任何变化 + - `FAILED`:处理失败 + +## 常见问题 + +- LDAP 连接失败:检查 host/port/use_ssl/bind_dn/bind_password +- 基础组缺失或未映射 gid:检查 AD 组是否存在,以及 `state/group_gid_map.yaml` +- 文件格式报错:确认输入文件后缀是 `.csv` 或 `.xlsx` +- `WILL_NOT_PERFORM`:通常是未使用 LDAPS、密码策略不满足、或权限不足 + +## 打包为单文件二进制 + +安装 PyInstaller: + +```bash +/opt/homebrew/Caskroom/miniconda/base/bin/python -m pip install pyinstaller +``` + +使用 spec 构建: + +```bash +pyinstaller build/ad_user_creator.spec +``` + +构建完成后,可执行文件位于: + +- `dist/ad-user-creator` + +运行后将先显示菜单供选择模式。 diff --git a/ad_user_creator/__init__.py b/ad_user_creator/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/ad_user_creator/__pycache__/__init__.cpython-312.pyc b/ad_user_creator/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000..a1b8ff8 Binary files /dev/null and b/ad_user_creator/__pycache__/__init__.cpython-312.pyc differ diff --git a/ad_user_creator/__pycache__/cli.cpython-312.pyc b/ad_user_creator/__pycache__/cli.cpython-312.pyc new file mode 100644 index 0000000..1e9c12a Binary files /dev/null and b/ad_user_creator/__pycache__/cli.cpython-312.pyc differ diff --git a/ad_user_creator/__pycache__/config.cpython-312.pyc b/ad_user_creator/__pycache__/config.cpython-312.pyc new file mode 100644 index 0000000..8352a4d Binary files /dev/null and b/ad_user_creator/__pycache__/config.cpython-312.pyc differ diff --git a/ad_user_creator/__pycache__/entry.cpython-312.pyc b/ad_user_creator/__pycache__/entry.cpython-312.pyc new file mode 100644 index 0000000..91fce85 Binary files /dev/null and b/ad_user_creator/__pycache__/entry.cpython-312.pyc differ diff --git a/ad_user_creator/__pycache__/exceptions.cpython-312.pyc b/ad_user_creator/__pycache__/exceptions.cpython-312.pyc new file mode 100644 index 0000000..b22422b Binary files /dev/null and b/ad_user_creator/__pycache__/exceptions.cpython-312.pyc differ diff --git a/ad_user_creator/__pycache__/input_parser.cpython-312.pyc b/ad_user_creator/__pycache__/input_parser.cpython-312.pyc new file mode 100644 index 0000000..eefaf48 Binary files /dev/null and b/ad_user_creator/__pycache__/input_parser.cpython-312.pyc differ diff --git a/ad_user_creator/__pycache__/interactive.cpython-312.pyc b/ad_user_creator/__pycache__/interactive.cpython-312.pyc new file mode 100644 index 0000000..68533ae Binary files /dev/null and b/ad_user_creator/__pycache__/interactive.cpython-312.pyc differ diff --git a/ad_user_creator/__pycache__/ldap_client.cpython-312.pyc b/ad_user_creator/__pycache__/ldap_client.cpython-312.pyc new file mode 100644 index 0000000..c8917be Binary files /dev/null and b/ad_user_creator/__pycache__/ldap_client.cpython-312.pyc differ diff --git a/ad_user_creator/__pycache__/logging_setup.cpython-312.pyc b/ad_user_creator/__pycache__/logging_setup.cpython-312.pyc new file mode 100644 index 0000000..9c6ffd7 Binary files /dev/null and b/ad_user_creator/__pycache__/logging_setup.cpython-312.pyc differ diff --git a/ad_user_creator/__pycache__/main.cpython-312.pyc b/ad_user_creator/__pycache__/main.cpython-312.pyc new file mode 100644 index 0000000..c2d3b3c Binary files /dev/null and b/ad_user_creator/__pycache__/main.cpython-312.pyc differ diff --git a/ad_user_creator/__pycache__/models.cpython-312.pyc b/ad_user_creator/__pycache__/models.cpython-312.pyc new file mode 100644 index 0000000..f151874 Binary files /dev/null and b/ad_user_creator/__pycache__/models.cpython-312.pyc differ diff --git a/ad_user_creator/__pycache__/persistence.cpython-312.pyc b/ad_user_creator/__pycache__/persistence.cpython-312.pyc new file mode 100644 index 0000000..f4bd4dd Binary files /dev/null and b/ad_user_creator/__pycache__/persistence.cpython-312.pyc differ diff --git a/ad_user_creator/__pycache__/user_service.cpython-312.pyc b/ad_user_creator/__pycache__/user_service.cpython-312.pyc new file mode 100644 index 0000000..417de50 Binary files /dev/null and b/ad_user_creator/__pycache__/user_service.cpython-312.pyc differ diff --git a/ad_user_creator/cli.py b/ad_user_creator/cli.py new file mode 100644 index 0000000..92a43e6 --- /dev/null +++ b/ad_user_creator/cli.py @@ -0,0 +1,36 @@ +from __future__ import annotations + +import argparse +from pathlib import Path + + +def _validate_batch_input(value: str) -> str: + suffix = Path(value).suffix.lower() + if suffix not in {".csv", ".xlsx"}: + raise argparse.ArgumentTypeError("batch 输入文件仅支持 .csv 或 .xlsx") + return value + + +def build_parser() -> argparse.ArgumentParser: + parser = argparse.ArgumentParser(description="AD 用户自动化创建工具") + parser.add_argument("--config", default="config/config.yaml", help="yaml 配置文件路径") + + subparsers = parser.add_subparsers(dest="command", required=True) + + interactive_parser = subparsers.add_parser("interactive", help="交互式创建 AD 用户") + interactive_parser.add_argument("--dry-run", action="store_true", help="仅演练,不写入 LDAP") + + batch_parser = subparsers.add_parser("batch", help="批量创建 AD 用户") + batch_parser.add_argument("--input", required=True, type=_validate_batch_input, help="输入文件(.csv/.xlsx)") + batch_parser.add_argument("--dry-run", action="store_true", help="仅演练,不写入 LDAP") + batch_parser.add_argument( + "--continue-on-error", + choices=["true", "false"], + default="true", + help="遇错是否继续处理后续行", + ) + + init_parser = subparsers.add_parser("init-state", help="初始化状态文件") + init_parser.add_argument("--dry-run", action="store_true", help="仅打印,不落盘") + + return parser diff --git a/ad_user_creator/config.py b/ad_user_creator/config.py new file mode 100644 index 0000000..bff1c25 --- /dev/null +++ b/ad_user_creator/config.py @@ -0,0 +1,151 @@ +from __future__ import annotations + +import os +from pathlib import Path +from typing import Any, Dict, Optional + +import yaml + +from ad_user_creator.exceptions import ConfigError +from ad_user_creator.models import AppConfig, BehaviorConfig, DefaultsConfig, LdapConfig, PathsConfig + + +def _parse_bool(value: Any, default: bool) -> bool: + if value is None: + return default + if isinstance(value, bool): + return value + text = str(value).strip().lower() + if text in {"1", "true", "yes", "y", "on"}: + return True + if text in {"0", "false", "no", "n", "off"}: + return False + return default + + +def _read_yaml(path: Path) -> Dict[str, Any]: + if not path.exists(): + raise ConfigError(f"yaml 配置文件不存在: {path}") + try: + with path.open("r", encoding="utf-8") as handle: + data = yaml.safe_load(handle) or {} + if not isinstance(data, dict): + raise ConfigError("yaml 顶层结构必须是对象") + return data + except yaml.YAMLError as exc: + raise ConfigError(f"yaml 解析失败: {exc}") from exc + + +def _merge_ldap_config(yaml_data: Dict[str, Any]) -> LdapConfig: + ldap_yaml = yaml_data.get("ldap", {}) or {} + + host = ldap_yaml.get("host") + port = int(ldap_yaml.get("port", 636)) + use_ssl = _parse_bool(ldap_yaml.get("use_ssl", True), True) + bind_dn = ldap_yaml.get("bind_dn") + bind_password = ldap_yaml.get("bind_password", "") + base_dn = ldap_yaml.get("base_dn") + people_base_dn = ldap_yaml.get("people_base_dn") + groups_base_dn = ldap_yaml.get("groups_base_dn") + + missing = [ + key + for key, value in { + "ldap.host": host, + "ldap.bind_dn": bind_dn, + "ldap.base_dn": base_dn, + "ldap.people_base_dn": people_base_dn, + "ldap.groups_base_dn": groups_base_dn, + }.items() + if not value + ] + if missing: + raise ConfigError(f"缺少必要 LDAP 配置: {', '.join(missing)}") + + return LdapConfig( + host=str(host), + port=port, + use_ssl=use_ssl, + bind_dn=str(bind_dn), + bind_password=str(bind_password), + base_dn=str(base_dn), + people_base_dn=str(people_base_dn), + groups_base_dn=str(groups_base_dn), + upn_suffix=str(ldap_yaml.get("upn_suffix", "")), + user_object_classes=list( + ldap_yaml.get( + "user_object_classes", + ["top", "person", "organizationalPerson", "user", "posixAccount"], + ) + ), + user_rdn_attr=str(ldap_yaml.get("user_rdn_attr", "CN")), + ) + + +def _merge_defaults_config(yaml_data: Dict[str, Any]) -> DefaultsConfig: + defaults_yaml = yaml_data.get("defaults", {}) or {} + return DefaultsConfig( + base_group=str(defaults_yaml.get("base_group", "staff")), + initial_uid_number=int(defaults_yaml.get("initial_uid_number", 2106)), + initial_password=str(defaults_yaml.get("initial_password", "1234.com")), + ) + + +def _merge_paths_config(yaml_data: Dict[str, Any]) -> PathsConfig: + paths_yaml = yaml_data.get("paths", {}) or {} + return PathsConfig( + uid_state_file=str(paths_yaml.get("uid_state_file", "state/uid_state.json")), + group_gid_map_file=str(paths_yaml.get("group_gid_map_file", "state/group_gid_map.yaml")), + batch_result_file=str(paths_yaml.get("batch_result_file", "state/last_batch_result.csv")), + log_file=str(paths_yaml.get("log_file", "state/run.log")), + ) + + +def _merge_behavior_config(yaml_data: Dict[str, Any], cli_dry_run: Optional[bool]) -> BehaviorConfig: + behavior_yaml = yaml_data.get("behavior", {}) or {} + base_dry_run = _parse_bool(behavior_yaml.get("dry_run"), False) + dry_run = cli_dry_run if cli_dry_run is not None else base_dry_run + return BehaviorConfig( + skip_if_user_exists=_parse_bool(behavior_yaml.get("skip_if_user_exists"), True), + skip_missing_optional_groups=_parse_bool(behavior_yaml.get("skip_missing_optional_groups"), True), + dry_run=dry_run, + require_ldaps_for_password=_parse_bool(behavior_yaml.get("require_ldaps_for_password"), True), + ) + + +def _resolve_paths(config: AppConfig, workspace_root: Path) -> AppConfig: + def make_abs(path_text: str) -> str: + path = Path(path_text) + if path.is_absolute(): + return str(path) + return str((workspace_root / path).resolve()) + + config.paths.uid_state_file = make_abs(config.paths.uid_state_file) + config.paths.group_gid_map_file = make_abs(config.paths.group_gid_map_file) + config.paths.batch_result_file = make_abs(config.paths.batch_result_file) + config.paths.log_file = make_abs(config.paths.log_file) + return config + + +def load_config( + config_path: str = "config/config.yaml", + cli_dry_run: Optional[bool] = None, + workspace_root: Optional[str] = None, +) -> AppConfig: + root = Path(workspace_root or os.getcwd()).resolve() + yaml_full_path = Path(config_path) + if not yaml_full_path.is_absolute(): + yaml_full_path = (root / yaml_full_path).resolve() + + yaml_data = _read_yaml(yaml_full_path) + + app_config = AppConfig( + ldap=_merge_ldap_config(yaml_data), + defaults=_merge_defaults_config(yaml_data), + paths=_merge_paths_config(yaml_data), + behavior=_merge_behavior_config(yaml_data, cli_dry_run=cli_dry_run), + ) + app_config = _resolve_paths(app_config, root) + if app_config.behavior.require_ldaps_for_password and not app_config.ldap.use_ssl: + raise ConfigError("启用密码设置时必须使用 LDAPS,请将 ldap.use_ssl 设置为 true") + return app_config diff --git a/ad_user_creator/entry.py b/ad_user_creator/entry.py new file mode 100644 index 0000000..e6b3e92 --- /dev/null +++ b/ad_user_creator/entry.py @@ -0,0 +1,82 @@ +from __future__ import annotations + +import sys +from pathlib import Path + +from ad_user_creator.main import execute_command + + +def _ask_yes_no(prompt: str, default: bool) -> bool: + default_text = "Y/n" if default else "y/N" + value = input(f"{prompt} [{default_text}]: ").strip().lower() + if not value: + return default + return value in {"y", "yes", "1", "true"} + + +def _clean_path(path_text: str) -> str: + text = path_text.strip() + if len(text) >= 2 and ((text[0] == "'" and text[-1] == "'") or (text[0] == '"' and text[-1] == '"')): + text = text[1:-1] + return text + + +def _run_interactive(config_path: str) -> int: + dry_run = _ask_yes_no("是否启用 dry-run(不写入 LDAP)", default=False) + return execute_command(command="interactive", config_path=config_path, dry_run=dry_run) + + +def _run_batch(config_path: str) -> int: + input_path = _clean_path(input("请输入批量文件路径 (.csv/.xlsx): ")) + if not input_path: + print("未提供文件路径。") + return 1 + suffix = Path(input_path).suffix.lower() + if suffix not in {".csv", ".xlsx"}: + print(f"文件格式错误,仅支持 .csv 或 .xlsx: {input_path}") + return 1 + + dry_run = _ask_yes_no("是否启用 dry-run(不写入 LDAP)", default=False) + continue_on_error = _ask_yes_no("遇到错误是否继续处理后续记录", default=True) + return execute_command( + command="batch", + config_path=config_path, + dry_run=dry_run, + input_path=input_path, + continue_on_error=continue_on_error, + ) + + +def menu() -> int: + config_path = "config/config.yaml" + while True: + print("\n=== AD User Creator ===") + print(f"当前配置文件: {config_path}") + print("1) 交互式创建") + print("2) 批量导入") + print("3) 修改配置文件路径") + print("q) 退出") + choice = input("请选择模式: ").strip().lower() + + if choice == "1": + code = _run_interactive(config_path) + print(f"执行完成,返回码: {code}") + elif choice == "2": + code = _run_batch(config_path) + print(f"执行完成,返回码: {code}") + elif choice == "3": + new_path = _clean_path(input("请输入新的 config.yaml 路径: ")) + if not new_path: + print("配置路径未变更。") + else: + config_path = new_path + print(f"已更新配置路径: {config_path}") + elif choice in {"q", "quit", "exit"}: + print("已退出。") + return 0 + else: + print("无效选项,请输入 1/2/3/q。") + + +if __name__ == "__main__": + sys.exit(menu()) diff --git a/ad_user_creator/exceptions.py b/ad_user_creator/exceptions.py new file mode 100644 index 0000000..f1a915a --- /dev/null +++ b/ad_user_creator/exceptions.py @@ -0,0 +1,22 @@ +class AppError(Exception): + """Base error type for application-specific exceptions.""" + + +class ConfigError(AppError): + """Raised when configuration is invalid or missing.""" + + +class InputValidationError(AppError): + """Raised when input records fail validation.""" + + +class LdapConnectionError(AppError): + """Raised when LDAP connection or bind fails.""" + + +class LdapOperationError(AppError): + """Raised for LDAP operation failures.""" + + +class StatePersistenceError(AppError): + """Raised when state files cannot be read or written.""" diff --git a/ad_user_creator/input_parser.py b/ad_user_creator/input_parser.py new file mode 100644 index 0000000..135415b --- /dev/null +++ b/ad_user_creator/input_parser.py @@ -0,0 +1,114 @@ +from __future__ import annotations + +import re +from pathlib import Path +from typing import Dict, List, Tuple + +import pandas as pd + +from ad_user_creator.exceptions import InputValidationError +from ad_user_creator.models import UserInputRecord + +REQUIRED_HEADERS = ["姓名", "用户名", "邮箱", "部门 OU", "基础组", "项目组", "资源组"] +USERNAME_PATTERN = re.compile(r"^[A-Za-z0-9_-]+$") +EMAIL_PATTERN = re.compile(r"^[^@\s]+@[^@\s]+\.[^@\s]+$") + + +def _split_groups(value: object) -> List[str]: + if value is None: + return [] + text = str(value).strip() + if not text or text.lower() == "nan": + return [] + normalized = text.replace(",", ",") + groups = [item.strip() for item in normalized.split(",") if item.strip()] + deduped: List[str] = [] + seen = set() + for group in groups: + if group not in seen: + deduped.append(group) + seen.add(group) + return deduped + + +def _read_table(input_path: str) -> pd.DataFrame: + file_path = Path(input_path) + if not file_path.exists(): + raise InputValidationError(f"输入文件不存在: {input_path}") + suffix = file_path.suffix.lower() + if suffix not in {".csv", ".xlsx"}: + raise InputValidationError(f"仅支持 .csv 和 .xlsx,当前为: {suffix}") + + if suffix == ".csv": + try: + return pd.read_csv(file_path, encoding="utf-8-sig") + except UnicodeDecodeError: + return pd.read_csv(file_path, encoding="utf-8") + return pd.read_excel(file_path, engine="openpyxl") + + +def _validate_headers(df: pd.DataFrame) -> None: + missing = [header for header in REQUIRED_HEADERS if header not in df.columns] + if missing: + raise InputValidationError(f"输入文件缺少列: {', '.join(missing)}") + + +def parse_input_file(input_path: str) -> List[Tuple[UserInputRecord, Dict[str, str]]]: + df = _read_table(input_path) + _validate_headers(df) + df = df.fillna("") + + parsed: List[Tuple[UserInputRecord, Dict[str, str]]] = [] + for index, row in df.iterrows(): + line_no = index + 2 + display_name = str(row["姓名"]).strip() + sam_account_name = str(row["用户名"]).strip() + email = str(row["邮箱"]).strip() + dept_ou = str(row["部门 OU"]).strip() + base_group = str(row["基础组"]).strip() + project_groups = _split_groups(row["项目组"]) + resource_groups = _split_groups(row["资源组"]) + + required_missing = [] + if not display_name: + required_missing.append("姓名") + if not sam_account_name: + required_missing.append("用户名") + if not email: + required_missing.append("邮箱") + if not dept_ou: + required_missing.append("部门 OU") + if not base_group: + required_missing.append("基础组") + if required_missing: + raise InputValidationError( + f"第 {line_no} 行缺少必填字段: {', '.join(required_missing)}" + ) + if not USERNAME_PATTERN.match(sam_account_name): + raise InputValidationError( + f"第 {line_no} 行用户名非法: {sam_account_name},只允许字母数字下划线短横线" + ) + if not EMAIL_PATTERN.match(email): + raise InputValidationError(f"第 {line_no} 行邮箱格式非法: {email}") + + record = UserInputRecord( + display_name=display_name, + sam_account_name=sam_account_name, + email=email, + dept_ou=dept_ou, + base_group=base_group, + project_groups=project_groups, + resource_groups=resource_groups, + ) + raw = { + "姓名": display_name, + "用户名": sam_account_name, + "邮箱": email, + "部门 OU": dept_ou, + "基础组": base_group, + "项目组": ",".join(project_groups), + "资源组": ",".join(resource_groups), + } + parsed.append((record, raw)) + + return parsed diff --git a/ad_user_creator/interactive.py b/ad_user_creator/interactive.py new file mode 100644 index 0000000..01e328d --- /dev/null +++ b/ad_user_creator/interactive.py @@ -0,0 +1,58 @@ +from __future__ import annotations + +from typing import List + +from ad_user_creator.models import UserInputRecord +from ad_user_creator.user_service import UserService + + +def _split_optional_groups(text: str) -> List[str]: + if not text.strip(): + return [] + items = [item.strip() for item in text.replace(",", ",").split(",")] + return [item for item in items if item] + + +def run_interactive_create(user_service: UserService, default_base_group: str, dry_run: bool = False) -> None: + print("请输入 AD 用户信息:") + display_name = input("显示名称(姓名): ").strip() + sam_account_name = input("用户名(sAMAccountName): ").strip() + email = input("邮箱(mail): ").strip() + dept_ou = input("部门 OU (例如 CEO 或 RnD/tm_hardware): ").strip() + base_group_input = input(f"基础组(默认 {default_base_group}): ").strip() + base_group = base_group_input or default_base_group + project_groups = _split_optional_groups(input("项目组(逗号分隔,可空): ")) + resource_groups = _split_optional_groups(input("资源组(逗号分隔,可空): ")) + + record = UserInputRecord( + display_name=display_name, + sam_account_name=sam_account_name, + email=email, + dept_ou=dept_ou, + base_group=base_group, + project_groups=project_groups, + resource_groups=resource_groups, + ) + plan = user_service.preview_plan(record) + + print("\n预览:") + print(f"- 显示名称: {plan.display_name}") + print(f"- 用户名: {plan.sam_account_name}") + print(f"- 邮箱: {plan.email}") + print(f"- 部门 OU: {record.dept_ou}") + print(f"- 用户 DN: {plan.user_dn}") + print(f"- 基础组: {plan.base_group}") + print(f"- 项目组: {', '.join(plan.project_groups) if plan.project_groups else '(空)'}") + print(f"- 资源组: {', '.join(plan.resource_groups) if plan.resource_groups else '(空)'}") + print(f"- uid: {plan.uid}") + print(f"- uidNumber: {plan.uid_number}") + print(f"- gidNumber: {plan.gid_number}") + print(f"- unixHomeDirectory: {plan.unix_home_directory}") + + confirm = input("\n确认创建? [y/N]: ").strip().lower() + if confirm not in {"y", "yes"}: + print("已取消。") + return + + result = user_service.process_user(record, dry_run=dry_run) + print(f"执行结果: {result.status} {result.reason}") diff --git a/ad_user_creator/ldap_client.py b/ad_user_creator/ldap_client.py new file mode 100644 index 0000000..f43ac5a --- /dev/null +++ b/ad_user_creator/ldap_client.py @@ -0,0 +1,156 @@ +from __future__ import annotations + +from typing import Dict, Optional + +from ldap3 import ALL, BASE, Connection, MODIFY_REPLACE, Server +from ldap3.core.exceptions import LDAPException +from ldap3.utils.conv import escape_filter_chars + +from ad_user_creator.exceptions import LdapConnectionError, LdapOperationError +from ad_user_creator.models import LdapConfig + + +class LdapClient: + def __init__(self, config: LdapConfig) -> None: + self.config = config + self.server: Optional[Server] = None + self.conn: Optional[Connection] = None + + def connect(self) -> None: + try: + self.server = Server(self.config.host, port=self.config.port, use_ssl=self.config.use_ssl, get_info=ALL) + self.conn = Connection( + self.server, + user=self.config.bind_dn, + password=self.config.bind_password, + auto_bind=True, + ) + except LDAPException as exc: + raise LdapConnectionError(f"LDAP 连接或绑定失败: {exc}") from exc + + def ensure_connected(self) -> None: + if self.conn is None or not self.conn.bound: + self.connect() + + def close(self) -> None: + if self.conn is not None and self.conn.bound: + self.conn.unbind() + + def user_exists(self, sam_account_name: str) -> bool: + self.ensure_connected() + assert self.conn is not None + escaped = escape_filter_chars(sam_account_name) + search_filter = f"(sAMAccountName={escaped})" + ok = self.conn.search(self.config.base_dn, search_filter, attributes=["distinguishedName"]) + if not ok: + return False + return len(self.conn.entries) > 0 + + def find_user_dn_by_sam(self, sam_account_name: str) -> Optional[str]: + self.ensure_connected() + assert self.conn is not None + escaped = escape_filter_chars(sam_account_name) + search_filter = f"(sAMAccountName={escaped})" + ok = self.conn.search(self.config.base_dn, search_filter, attributes=["distinguishedName"]) + if not ok or len(self.conn.entries) == 0: + return None + return str(self.conn.entries[0].distinguishedName.value) + + def group_exists(self, group_name: str) -> bool: + self.ensure_connected() + assert self.conn is not None + escaped = escape_filter_chars(group_name) + search_filter = f"(&(objectClass=group)(cn={escaped}))" + ok = self.conn.search(self.config.groups_base_dn, search_filter, attributes=["distinguishedName"]) + if not ok: + return False + return len(self.conn.entries) > 0 + + def get_group_dn(self, group_name: str) -> str: + self.ensure_connected() + assert self.conn is not None + escaped = escape_filter_chars(group_name) + search_filter = f"(&(objectClass=group)(cn={escaped}))" + ok = self.conn.search(self.config.groups_base_dn, search_filter, attributes=["distinguishedName"]) + if not ok or len(self.conn.entries) == 0: + raise LdapOperationError(f"组不存在: {group_name}") + return str(self.conn.entries[0].distinguishedName.value) + + def create_user(self, user_dn: str, attributes: Dict[str, object]) -> None: + self.ensure_connected() + assert self.conn is not None + ok = self.conn.add(user_dn, object_class=self.config.user_object_classes, attributes=attributes) + if not ok: + raise LdapOperationError(f"创建用户失败: {self.conn.result}") + + def set_user_password(self, user_dn: str, new_password: str) -> None: + self.ensure_connected() + assert self.conn is not None + ok = self.conn.extend.microsoft.modify_password(user_dn, new_password) + if not ok: + raise LdapOperationError(f"设置用户密码失败 user={user_dn} result={self.conn.result}") + + def set_user_enabled(self, user_dn: str, enabled: bool) -> None: + self.ensure_connected() + assert self.conn is not None + value = "512" if enabled else "514" + ok = self.conn.modify(user_dn, {"userAccountControl": [(MODIFY_REPLACE, [value])]}) + if not ok: + action = "启用" if enabled else "禁用" + raise LdapOperationError(f"{action}用户失败 user={user_dn} result={self.conn.result}") + + def add_user_to_group(self, user_dn: str, group_dn: str) -> None: + self.ensure_connected() + assert self.conn is not None + ok = self.conn.extend.microsoft.add_members_to_groups(user_dn, group_dn) + if not ok: + raise LdapOperationError( + f"添加组成员失败 user={user_dn} group={group_dn} result={self.conn.result}" + ) + + def get_user_attributes(self, user_dn: str, attrs: list[str]) -> Dict[str, str]: + self.ensure_connected() + assert self.conn is not None + ok = self.conn.search(search_base=user_dn, search_filter="(objectClass=*)", search_scope=BASE, attributes=attrs) + if not ok or len(self.conn.entries) == 0: + raise LdapOperationError(f"读取用户属性失败 user={user_dn} result={self.conn.result}") + entry = self.conn.entries[0] + result: Dict[str, str] = {} + for attr in attrs: + if hasattr(entry, attr): + value = getattr(entry, attr).value + if value is None: + result[attr] = "" + elif isinstance(value, list): + result[attr] = ",".join(str(v) for v in value) + else: + result[attr] = str(value) + else: + result[attr] = "" + return result + + def modify_user_attributes(self, user_dn: str, changes: Dict[str, str]) -> None: + self.ensure_connected() + assert self.conn is not None + operations = {key: [(MODIFY_REPLACE, [value])] for key, value in changes.items()} + ok = self.conn.modify(user_dn, operations) + if not ok: + raise LdapOperationError(f"更新用户属性失败 user={user_dn} result={self.conn.result}") + + def add_user_to_group_if_missing(self, user_dn: str, group_dn: str) -> bool: + self.ensure_connected() + assert self.conn is not None + ok = self.conn.search( + search_base=group_dn, + search_filter="(objectClass=group)", + search_scope=BASE, + attributes=["member"], + ) + if not ok or len(self.conn.entries) == 0: + raise LdapOperationError(f"读取组成员失败 group={group_dn} result={self.conn.result}") + members = self.conn.entries[0].member.values if hasattr(self.conn.entries[0], "member") else [] + normalized_members = {str(item).lower() for item in members} + if user_dn.lower() in normalized_members: + return False + self.add_user_to_group(user_dn, group_dn) + return True diff --git a/ad_user_creator/logging_setup.py b/ad_user_creator/logging_setup.py new file mode 100644 index 0000000..a4831a6 --- /dev/null +++ b/ad_user_creator/logging_setup.py @@ -0,0 +1,25 @@ +from __future__ import annotations + +import logging +from pathlib import Path + + +def setup_logging(log_file: str) -> logging.Logger: + log_path = Path(log_file) + log_path.parent.mkdir(parents=True, exist_ok=True) + + logger = logging.getLogger("ad_user_creator") + logger.setLevel(logging.INFO) + logger.handlers.clear() + + formatter = logging.Formatter("%(asctime)s [%(levelname)s] %(message)s") + + stream_handler = logging.StreamHandler() + stream_handler.setFormatter(formatter) + logger.addHandler(stream_handler) + + file_handler = logging.FileHandler(log_path, encoding="utf-8") + file_handler.setFormatter(formatter) + logger.addHandler(file_handler) + + return logger diff --git a/ad_user_creator/main.py b/ad_user_creator/main.py new file mode 100644 index 0000000..19c0b37 --- /dev/null +++ b/ad_user_creator/main.py @@ -0,0 +1,172 @@ +from __future__ import annotations + +import csv +import sys +from pathlib import Path +from typing import Dict, List, Optional + +from ad_user_creator.cli import build_parser +from ad_user_creator.config import load_config +from ad_user_creator.exceptions import AppError, ConfigError, InputValidationError, LdapConnectionError +from ad_user_creator.input_parser import parse_input_file +from ad_user_creator.interactive import run_interactive_create +from ad_user_creator.ldap_client import LdapClient +from ad_user_creator.logging_setup import setup_logging +from ad_user_creator.models import UserProcessResult +from ad_user_creator.persistence import StateStore +from ad_user_creator.user_service import UserService + + +def _write_batch_results(path: str, rows: List[Dict[str, str]]) -> None: + output = Path(path) + output.parent.mkdir(parents=True, exist_ok=True) + headers = ["姓名", "用户名", "邮箱", "部门 OU", "基础组", "项目组", "资源组", "状态", "原因", "用户DN", "uidNumber"] + with output.open("w", encoding="utf-8-sig", newline="") as handle: + writer = csv.DictWriter(handle, fieldnames=headers) + writer.writeheader() + for row in rows: + writer.writerow(row) + + +def _to_bool_text(value: str) -> bool: + return value.lower() == "true" + + +def _result_to_row(raw: Dict[str, str], result: UserProcessResult) -> Dict[str, str]: + return { + "姓名": raw.get("姓名", ""), + "用户名": raw.get("用户名", ""), + "邮箱": raw.get("邮箱", ""), + "部门 OU": raw.get("部门 OU", ""), + "基础组": raw.get("基础组", ""), + "项目组": raw.get("项目组", ""), + "资源组": raw.get("资源组", ""), + "状态": result.status, + "原因": result.reason, + "用户DN": result.user_dn, + "uidNumber": "" if result.uid_number is None else str(result.uid_number), + } + + +def execute_command( + command: str, + config_path: str = "config/config.yaml", + dry_run: bool = False, + input_path: Optional[str] = None, + continue_on_error: bool = True, +) -> int: + try: + config = load_config(config_path=config_path, cli_dry_run=dry_run) + except ConfigError as exc: + print(f"[FATAL] 配置错误: {exc}") + return 2 + + logger = setup_logging(config.paths.log_file) + logger.info("配置加载完成") + + state = StateStore( + uid_state_file=config.paths.uid_state_file, + group_gid_map_file=config.paths.group_gid_map_file, + initial_uid_number=config.defaults.initial_uid_number, + ) + + if command == "init-state": + if dry_run: + print(f"[DRY-RUN] 将初始化: {config.paths.uid_state_file} 和 {config.paths.group_gid_map_file}") + return 0 + state.ensure_state_files() + print("状态文件初始化完成。") + return 0 + + state.ensure_state_files() + ldap_client = LdapClient(config.ldap) + if not config.behavior.dry_run: + try: + ldap_client.connect() + logger.info("LDAP 连接成功") + except LdapConnectionError as exc: + print(f"[FATAL] LDAP 连接失败: {exc}") + return 2 + + service = UserService(config=config, state_store=state, ldap_client=ldap_client) + try: + if command == "interactive": + try: + run_interactive_create( + user_service=service, + default_base_group=config.defaults.base_group, + dry_run=config.behavior.dry_run, + ) + return 0 + except (InputValidationError, AppError) as exc: + print(f"[ERROR] 交互式执行失败: {exc}") + return 1 + + if command == "batch": + if not input_path: + print("[ERROR] batch 模式需要提供输入文件路径") + return 1 + try: + records = parse_input_file(input_path) + except InputValidationError as exc: + print(f"[ERROR] 输入文件校验失败: {exc}") + return 1 + + created = 0 + updated = 0 + skipped = 0 + failed = 0 + result_rows: List[Dict[str, str]] = [] + + for idx, (record, raw) in enumerate(records, start=1): + logger.info("处理第 %s 条: %s", idx, record.sam_account_name) + try: + result = service.process_user(record, dry_run=config.behavior.dry_run) + except (InputValidationError, AppError) as exc: + result = UserProcessResult(status="FAILED", reason=str(exc), raw=raw) + + if result.status == "CREATED": + created += 1 + elif result.status == "UPDATED": + updated += 1 + elif result.status in {"SKIPPED_EXISTS", "SKIPPED_NO_CHANGE"}: + skipped += 1 + else: + failed += 1 + + result_rows.append(_result_to_row(raw, result)) + print(f"[{idx}/{len(records)}] {raw.get('用户名', '')} -> {result.status} {result.reason}") + + if result.status == "FAILED" and not continue_on_error: + break + + _write_batch_results(config.paths.batch_result_file, result_rows) + total = len(result_rows) + print( + f"完成: total={total}, created={created}, updated={updated}, skipped={skipped}, failed={failed}, " + f"result={config.paths.batch_result_file}" + ) + return 1 if failed > 0 else 0 + finally: + ldap_client.close() + + return 0 + + +def run() -> int: + parser = build_parser() + args = parser.parse_args() + dry_run = bool(getattr(args, "dry_run", False)) + input_path = getattr(args, "input", None) + continue_on_error = _to_bool_text(getattr(args, "continue_on_error", "true")) + return execute_command( + command=args.command, + config_path=args.config, + dry_run=dry_run, + input_path=input_path, + continue_on_error=continue_on_error, + ) + + +if __name__ == "__main__": + sys.exit(run()) diff --git a/ad_user_creator/models.py b/ad_user_creator/models.py new file mode 100644 index 0000000..87bafc9 --- /dev/null +++ b/ad_user_creator/models.py @@ -0,0 +1,86 @@ +from __future__ import annotations + +from dataclasses import dataclass, field +from typing import Dict, List, Optional + + +@dataclass +class UserInputRecord: + display_name: str + sam_account_name: str + email: str + dept_ou: str + base_group: str + project_groups: List[str] = field(default_factory=list) + resource_groups: List[str] = field(default_factory=list) + + +@dataclass +class ResolvedUserPlan: + user_dn: str + display_name: str + sam_account_name: str + email: str + uid: str + uid_number: int + gid_number: int + unix_home_directory: str + base_group: str + project_groups: List[str] + resource_groups: List[str] + optional_missing_groups: List[str] = field(default_factory=list) + + +@dataclass +class LdapConfig: + host: str + port: int + use_ssl: bool + bind_dn: str + bind_password: str + base_dn: str + people_base_dn: str + groups_base_dn: str + upn_suffix: str = "" + user_object_classes: List[str] = field(default_factory=list) + user_rdn_attr: str = "CN" + + +@dataclass +class DefaultsConfig: + base_group: str = "staff" + initial_uid_number: int = 2106 + initial_password: str = "1234.com" + + +@dataclass +class PathsConfig: + uid_state_file: str = "state/uid_state.json" + group_gid_map_file: str = "state/group_gid_map.yaml" + batch_result_file: str = "state/last_batch_result.csv" + log_file: str = "state/run.log" + + +@dataclass +class BehaviorConfig: + skip_if_user_exists: bool = True + skip_missing_optional_groups: bool = True + dry_run: bool = False + require_ldaps_for_password: bool = True + + +@dataclass +class AppConfig: + ldap: LdapConfig + defaults: DefaultsConfig = field(default_factory=DefaultsConfig) + paths: PathsConfig = field(default_factory=PathsConfig) + behavior: BehaviorConfig = field(default_factory=BehaviorConfig) + + +@dataclass +class UserProcessResult: + status: str + reason: str = "" + user_dn: str = "" + uid_number: Optional[int] = None + raw: Optional[Dict[str, str]] = None diff --git a/ad_user_creator/persistence.py b/ad_user_creator/persistence.py new file mode 100644 index 0000000..cbe4bc3 --- /dev/null +++ b/ad_user_creator/persistence.py @@ -0,0 +1,83 @@ +from __future__ import annotations + +import json +from datetime import datetime, timezone +from pathlib import Path +from typing import Dict + +import yaml +from filelock import FileLock + +from ad_user_creator.exceptions import StatePersistenceError + + +class StateStore: + def __init__(self, uid_state_file: str, group_gid_map_file: str, initial_uid_number: int = 2106) -> None: + self.uid_state_path = Path(uid_state_file) + self.group_gid_map_path = Path(group_gid_map_file) + self.initial_uid_number = initial_uid_number + self._uid_lock = FileLock(str(self.uid_state_path) + ".lock") + + def ensure_state_files(self) -> None: + self.uid_state_path.parent.mkdir(parents=True, exist_ok=True) + self.group_gid_map_path.parent.mkdir(parents=True, exist_ok=True) + + if not self.uid_state_path.exists(): + self._write_uid_state({"next_uid_number": self.initial_uid_number, "updated_at": self._now_iso()}) + if not self.group_gid_map_path.exists(): + self._write_group_gid_map({"staff": 3000}) + + def get_next_uid_number(self) -> int: + with self._uid_lock: + state = self._read_uid_state() + return int(state["next_uid_number"]) + + def commit_next_uid_number(self) -> int: + with self._uid_lock: + state = self._read_uid_state() + current = int(state["next_uid_number"]) + next_value = current + 1 + self._write_uid_state({"next_uid_number": next_value, "updated_at": self._now_iso()}) + return current + + def load_group_gid_map(self) -> Dict[str, int]: + if not self.group_gid_map_path.exists(): + raise StatePersistenceError(f"gid 映射文件不存在: {self.group_gid_map_path}") + try: + with self.group_gid_map_path.open("r", encoding="utf-8") as handle: + data = yaml.safe_load(handle) or {} + if not isinstance(data, dict): + raise StatePersistenceError("gid 映射文件内容必须是字典") + return {str(k): int(v) for k, v in data.items()} + except (yaml.YAMLError, ValueError, TypeError) as exc: + raise StatePersistenceError(f"读取 gid 映射失败: {exc}") from exc + + def _read_uid_state(self) -> Dict[str, object]: + if not self.uid_state_path.exists(): + raise StatePersistenceError(f"uid 状态文件不存在: {self.uid_state_path}") + try: + with self.uid_state_path.open("r", encoding="utf-8") as handle: + data = json.load(handle) + if "next_uid_number" not in data: + raise StatePersistenceError("uid 状态缺少 next_uid_number") + return data + except json.JSONDecodeError as exc: + raise StatePersistenceError(f"uid 状态解析失败: {exc}") from exc + + def _write_uid_state(self, payload: Dict[str, object]) -> None: + try: + with self.uid_state_path.open("w", encoding="utf-8") as handle: + json.dump(payload, handle, ensure_ascii=True, indent=2) + except OSError as exc: + raise StatePersistenceError(f"写入 uid 状态失败: {exc}") from exc + + def _write_group_gid_map(self, payload: Dict[str, int]) -> None: + try: + with self.group_gid_map_path.open("w", encoding="utf-8") as handle: + yaml.safe_dump(payload, handle, allow_unicode=False, sort_keys=True) + except OSError as exc: + raise StatePersistenceError(f"写入 gid 映射失败: {exc}") from exc + + @staticmethod + def _now_iso() -> str: + return datetime.now(tz=timezone.utc).replace(microsecond=0).isoformat() diff --git a/ad_user_creator/user_service.py b/ad_user_creator/user_service.py new file mode 100644 index 0000000..ddde508 --- /dev/null +++ b/ad_user_creator/user_service.py @@ -0,0 +1,278 @@ +from __future__ import annotations + +from dataclasses import asdict +from typing import Dict, List, Tuple + +from ad_user_creator.exceptions import InputValidationError, LdapOperationError +from ad_user_creator.ldap_client import LdapClient +from ad_user_creator.models import AppConfig, ResolvedUserPlan, UserInputRecord, UserProcessResult +from ad_user_creator.persistence import StateStore + + +def build_department_dn_fragment(dept_ou: str) -> str: + parts = [part.strip() for part in dept_ou.split("/") if part.strip()] + if not parts: + raise InputValidationError("部门 OU 不能为空") + return ",".join(f"OU={part}" for part in reversed(parts)) + + +def build_user_dn(display_name: str, dept_ou: str, people_base_dn: str) -> str: + dept_fragment = build_department_dn_fragment(dept_ou) + return f"CN={display_name},{dept_fragment},{people_base_dn}" + + +class UserService: + def __init__(self, config: AppConfig, state_store: StateStore, ldap_client: LdapClient) -> None: + self.config = config + self.state_store = state_store + self.ldap_client = ldap_client + self.group_gid_map = self.state_store.load_group_gid_map() + + def preview_plan(self, record: UserInputRecord) -> ResolvedUserPlan: + gid_number = self._resolve_base_gid(record.base_group) + next_uid_number = self.state_store.get_next_uid_number() + return self._resolve_plan(record, next_uid_number, gid_number, optional_missing_groups=[]) + + def process_user(self, record: UserInputRecord, dry_run: bool = False) -> UserProcessResult: + gid_number = self._resolve_base_gid(record.base_group) + + optional_missing_groups: List[str] = [] + if not dry_run: + base_ok, missing_optional = self._validate_groups(record) + optional_missing_groups = missing_optional + if not base_ok: + return UserProcessResult( + status="FAILED", + reason=f"基础组不存在: {record.base_group}", + raw=asdict(record), + ) + if missing_optional and not self.config.behavior.skip_missing_optional_groups: + return UserProcessResult( + status="FAILED", + reason=f"可选组不存在且配置不允许跳过: {','.join(missing_optional)}", + raw=asdict(record), + ) + + if not dry_run: + existing_user_dn = self.ldap_client.find_user_dn_by_sam(record.sam_account_name) + if existing_user_dn: + return self._process_existing_user( + record=record, + existing_user_dn=existing_user_dn, + gid_number=gid_number, + optional_missing_groups=optional_missing_groups, + ) + + uid_number = self.state_store.get_next_uid_number() if dry_run else self.state_store.commit_next_uid_number() + plan = self._resolve_plan(record, uid_number, gid_number, optional_missing_groups=optional_missing_groups) + + if dry_run: + reason = "dry-run 未写入 LDAP(将执行: 创建用户->设置初始密码->启用用户->加组)" + if optional_missing_groups: + reason += f";可选组缺失: {','.join(optional_missing_groups)}" + return UserProcessResult( + status="CREATED", + reason=reason, + user_dn=plan.user_dn, + uid_number=plan.uid_number, + raw=asdict(record), + ) + + attrs = self._build_ldap_attributes(plan) + try: + self.ldap_client.create_user(plan.user_dn, attrs) + except LdapOperationError as exc: + return UserProcessResult( + status="FAILED", + reason=f"create-user-failed: {exc}", + user_dn=plan.user_dn, + raw=asdict(record), + ) + + try: + self.ldap_client.set_user_password(plan.user_dn, self.config.defaults.initial_password) + except LdapOperationError as exc: + return UserProcessResult( + status="FAILED", + reason=f"password-set-failed: {exc}", + user_dn=plan.user_dn, + raw=asdict(record), + ) + + try: + self.ldap_client.set_user_enabled(plan.user_dn, enabled=True) + except LdapOperationError as exc: + return UserProcessResult( + status="FAILED", + reason=f"enable-user-failed: {exc}", + user_dn=plan.user_dn, + raw=asdict(record), + ) + + try: + added_groups = self._ensure_groups(plan.user_dn, plan.base_group, plan.project_groups, plan.resource_groups, plan.optional_missing_groups) + except LdapOperationError as exc: + return UserProcessResult( + status="FAILED", + reason=f"add-group-failed: {exc}", + user_dn=plan.user_dn, + raw=asdict(record), + ) + + reason = "创建成功" + if optional_missing_groups: + reason += f";可选组已跳过: {','.join(optional_missing_groups)}" + if added_groups: + reason += f";新增组成员: {','.join(added_groups)}" + return UserProcessResult( + status="CREATED", + reason=reason, + user_dn=plan.user_dn, + uid_number=plan.uid_number, + raw=asdict(record), + ) + + def _resolve_base_gid(self, base_group: str) -> int: + if base_group not in self.group_gid_map: + raise InputValidationError(f"基础组未配置 gidNumber: {base_group}") + return int(self.group_gid_map[base_group]) + + def _resolve_plan( + self, + record: UserInputRecord, + uid_number: int, + gid_number: int, + optional_missing_groups: List[str], + ) -> ResolvedUserPlan: + user_dn = build_user_dn(record.display_name, record.dept_ou, self.config.ldap.people_base_dn) + return ResolvedUserPlan( + user_dn=user_dn, + display_name=record.display_name, + sam_account_name=record.sam_account_name, + email=record.email, + uid=record.sam_account_name, + uid_number=uid_number, + gid_number=gid_number, + unix_home_directory=f"/home/{record.sam_account_name}", + base_group=record.base_group, + project_groups=record.project_groups, + resource_groups=record.resource_groups, + optional_missing_groups=optional_missing_groups, + ) + + def _validate_groups(self, record: UserInputRecord) -> Tuple[bool, List[str]]: + if not self.ldap_client.group_exists(record.base_group): + return False, [] + optional_missing: List[str] = [] + for group in record.project_groups + record.resource_groups: + if not self.ldap_client.group_exists(group): + optional_missing.append(group) + return True, optional_missing + + def _build_ldap_attributes(self, plan: ResolvedUserPlan) -> Dict[str, object]: + attrs: Dict[str, object] = { + "cn": plan.display_name, + "displayName": plan.display_name, + "sAMAccountName": plan.sam_account_name, + "mail": plan.email, + "uid": plan.uid, + "uidNumber": str(plan.uid_number), + "gidNumber": str(plan.gid_number), + "unixHomeDirectory": plan.unix_home_directory, + "userAccountControl": "514", + } + if self.config.ldap.upn_suffix: + attrs["userPrincipalName"] = f"{plan.sam_account_name}@{self.config.ldap.upn_suffix}" + return attrs + + def _build_desired_update_attrs(self, record: UserInputRecord, gid_number: int) -> Dict[str, str]: + desired = { + "displayName": record.display_name, + "mail": record.email, + "uid": record.sam_account_name, + "unixHomeDirectory": f"/home/{record.sam_account_name}", + "gidNumber": str(gid_number), + } + if self.config.ldap.upn_suffix: + desired["userPrincipalName"] = f"{record.sam_account_name}@{self.config.ldap.upn_suffix}" + return desired + + def _calculate_attr_changes(self, current: Dict[str, str], desired: Dict[str, str]) -> Dict[str, str]: + changes: Dict[str, str] = {} + for key, desired_value in desired.items(): + current_value = str(current.get(key, "") or "").strip() + if current_value != str(desired_value).strip(): + changes[key] = desired_value + return changes + + def _ensure_groups( + self, + user_dn: str, + base_group: str, + project_groups: List[str], + resource_groups: List[str], + optional_missing_groups: List[str], + ) -> List[str]: + added_groups: List[str] = [] + base_group_dn = self.ldap_client.get_group_dn(base_group) + if self.ldap_client.add_user_to_group_if_missing(user_dn, base_group_dn): + added_groups.append(base_group) + + optional_groups = list(project_groups) + list(resource_groups) + skip_set = set(optional_missing_groups) + for group in optional_groups: + if group in skip_set: + continue + group_dn = self.ldap_client.get_group_dn(group) + if self.ldap_client.add_user_to_group_if_missing(user_dn, group_dn): + added_groups.append(group) + return added_groups + + def _process_existing_user( + self, + record: UserInputRecord, + existing_user_dn: str, + gid_number: int, + optional_missing_groups: List[str], + ) -> UserProcessResult: + attrs_to_read = ["displayName", "mail", "uid", "unixHomeDirectory", "gidNumber"] + if self.config.ldap.upn_suffix: + attrs_to_read.append("userPrincipalName") + + try: + current_attrs = self.ldap_client.get_user_attributes(existing_user_dn, attrs_to_read) + desired_attrs = self._build_desired_update_attrs(record, gid_number) + changes = self._calculate_attr_changes(current_attrs, desired_attrs) + if changes: + self.ldap_client.modify_user_attributes(existing_user_dn, changes) + + added_groups = self._ensure_groups( + user_dn=existing_user_dn, + base_group=record.base_group, + project_groups=record.project_groups, + resource_groups=record.resource_groups, + optional_missing_groups=optional_missing_groups, + ) + except LdapOperationError as exc: + return UserProcessResult( + status="FAILED", + reason=f"update-user-failed: {exc}", + user_dn=existing_user_dn, + raw=asdict(record), + ) + + if changes: + reason = f"已更新字段: {','.join(changes.keys())}" + if added_groups: + reason += f";新增组成员: {','.join(added_groups)}" + if optional_missing_groups: + reason += f";可选组已跳过: {','.join(optional_missing_groups)}" + return UserProcessResult(status="UPDATED", reason=reason, user_dn=existing_user_dn, raw=asdict(record)) + + reason = "用户已存在且字段无变化" + if added_groups: + reason += f";新增组成员: {','.join(added_groups)}" + return UserProcessResult(status="UPDATED", reason=reason, user_dn=existing_user_dn, raw=asdict(record)) + if optional_missing_groups: + reason += f";可选组已跳过: {','.join(optional_missing_groups)}" + return UserProcessResult(status="SKIPPED_NO_CHANGE", reason=reason, user_dn=existing_user_dn, raw=asdict(record)) diff --git a/build/ad_user_creator.spec b/build/ad_user_creator.spec new file mode 100644 index 0000000..6b9897b --- /dev/null +++ b/build/ad_user_creator.spec @@ -0,0 +1,44 @@ +# -*- mode: python ; coding: utf-8 -*- + +from PyInstaller.utils.hooks import collect_submodules + +hiddenimports = [] +hiddenimports += collect_submodules("pandas") +hiddenimports += collect_submodules("openpyxl") +hiddenimports += collect_submodules("ldap3") + +a = Analysis( + ["../ad_user_creator/entry.py"], + pathex=[], + binaries=[], + datas=[("../config/config.yaml.example", "config")], + hiddenimports=hiddenimports, + hookspath=[], + hooksconfig={}, + runtime_hooks=[], + excludes=[], + noarchive=False, + optimize=0, +) +pyz = PYZ(a.pure) + +exe = EXE( + pyz, + a.scripts, + a.binaries, + a.datas, + [], + name="ad-user-creator", + debug=False, + bootloader_ignore_signals=False, + strip=False, + upx=True, + upx_exclude=[], + runtime_tmpdir=None, + console=True, + disable_windowed_traceback=False, + argv_emulation=False, + target_arch=None, + codesign_identity=None, + entitlements_file=None, +) diff --git a/build/ad_user_creator/Analysis-00.toc b/build/ad_user_creator/Analysis-00.toc new file mode 100644 index 0000000..2d59831 --- /dev/null +++ b/build/ad_user_creator/Analysis-00.toc @@ -0,0 +1,12864 @@ +(['/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/entry.py'], + ['/Users/marsway/Workspace/Aflowx/AD-User-Creator'], + ['pandas', + 'pandas._config', + 'pandas._config.config', + 'pandas._config.dates', + 'pandas._config.display', + 'pandas._config.localization', + 'pandas._libs', + 'pandas._libs.algos', + 'pandas._libs.arrays', + 'pandas._libs.byteswap', + 'pandas._libs.groupby', + 'pandas._libs.hashing', + 'pandas._libs.hashtable', + 'pandas._libs.index', + 'pandas._libs.indexing', + 'pandas._libs.internals', + 'pandas._libs.interval', + 'pandas._libs.join', + 'pandas._libs.json', + 'pandas._libs.lib', + 'pandas._libs.missing', + 'pandas._libs.ops', + 'pandas._libs.ops_dispatch', + 'pandas._libs.pandas_datetime', + 'pandas._libs.pandas_parser', + 'pandas._libs.parsers', + 'pandas._libs.properties', + 'pandas._libs.reshape', + 'pandas._libs.sas', + 'pandas._libs.sparse', + 'pandas._libs.testing', + 'pandas._libs.tslib', + 'pandas._libs.tslibs', + 'pandas._libs.tslibs.base', + 'pandas._libs.tslibs.ccalendar', + 'pandas._libs.tslibs.conversion', + 'pandas._libs.tslibs.dtypes', + 'pandas._libs.tslibs.fields', + 'pandas._libs.tslibs.nattype', + 'pandas._libs.tslibs.np_datetime', + 'pandas._libs.tslibs.offsets', + 'pandas._libs.tslibs.parsing', + 'pandas._libs.tslibs.period', + 'pandas._libs.tslibs.strptime', + 'pandas._libs.tslibs.timedeltas', + 'pandas._libs.tslibs.timestamps', + 'pandas._libs.tslibs.timezones', + 'pandas._libs.tslibs.tzconversion', + 'pandas._libs.tslibs.vectorized', + 'pandas._libs.window', + 'pandas._libs.window.aggregations', + 'pandas._libs.window.indexers', + 'pandas._libs.writers', + 'pandas._testing', + 'pandas._testing._hypothesis', + 'pandas._testing._io', + 'pandas._testing._warnings', + 'pandas._testing.asserters', + 'pandas._testing.compat', + 'pandas._testing.contexts', + 'pandas._typing', + 'pandas._version', + 'pandas._version_meson', + 'pandas.api', + 'pandas.api.extensions', + 'pandas.api.indexers', + 'pandas.api.interchange', + 'pandas.api.types', + 'pandas.api.typing', + 'pandas.arrays', + 'pandas.compat', + 'pandas.compat._constants', + 'pandas.compat._optional', + 'pandas.compat.compressors', + 'pandas.compat.numpy', + 'pandas.compat.numpy.function', + 'pandas.compat.pickle_compat', + 'pandas.compat.pyarrow', + 'pandas.conftest', + 'pandas.core', + 'pandas.core._numba', + 'pandas.core._numba.executor', + 'pandas.core._numba.extensions', + 'pandas.core.accessor', + 'pandas.core.algorithms', + 'pandas.core.api', + 'pandas.core.apply', + 'pandas.core.array_algos', + 'pandas.core.array_algos.datetimelike_accumulations', + 'pandas.core.array_algos.masked_accumulations', + 'pandas.core.array_algos.masked_reductions', + 'pandas.core.array_algos.putmask', + 'pandas.core.array_algos.quantile', + 'pandas.core.array_algos.replace', + 'pandas.core.array_algos.take', + 'pandas.core.array_algos.transforms', + 'pandas.core.arraylike', + 'pandas.core.arrays', + 'pandas.core.arrays._arrow_string_mixins', + 'pandas.core.arrays._mixins', + 'pandas.core.arrays._ranges', + 'pandas.core.arrays._utils', + 'pandas.core.arrays.arrow', + 'pandas.core.arrays.arrow._arrow_utils', + 'pandas.core.arrays.arrow.accessors', + 'pandas.core.arrays.arrow.array', + 'pandas.core.arrays.arrow.extension_types', + 'pandas.core.arrays.base', + 'pandas.core.arrays.boolean', + 'pandas.core.arrays.categorical', + 'pandas.core.arrays.datetimelike', + 'pandas.core.arrays.datetimes', + 'pandas.core.arrays.floating', + 'pandas.core.arrays.integer', + 'pandas.core.arrays.interval', + 'pandas.core.arrays.masked', + 'pandas.core.arrays.numeric', + 'pandas.core.arrays.numpy_', + 'pandas.core.arrays.period', + 'pandas.core.arrays.sparse', + 'pandas.core.arrays.sparse.accessor', + 'pandas.core.arrays.sparse.array', + 'pandas.core.arrays.sparse.scipy_sparse', + 'pandas.core.arrays.string_', + 'pandas.core.arrays.string_arrow', + 'pandas.core.arrays.timedeltas', + 'pandas.core.base', + 'pandas.core.common', + 'pandas.core.computation', + 'pandas.core.computation.align', + 'pandas.core.computation.api', + 'pandas.core.computation.check', + 'pandas.core.computation.common', + 'pandas.core.computation.engines', + 'pandas.core.computation.eval', + 'pandas.core.computation.expr', + 'pandas.core.computation.expressions', + 'pandas.core.computation.ops', + 'pandas.core.computation.parsing', + 'pandas.core.computation.pytables', + 'pandas.core.computation.scope', + 'pandas.core.config_init', + 'pandas.core.construction', + 'pandas.core.dtypes', + 'pandas.core.dtypes.api', + 'pandas.core.dtypes.astype', + 'pandas.core.dtypes.base', + 'pandas.core.dtypes.cast', + 'pandas.core.dtypes.common', + 'pandas.core.dtypes.concat', + 'pandas.core.dtypes.dtypes', + 'pandas.core.dtypes.generic', + 'pandas.core.dtypes.inference', + 'pandas.core.dtypes.missing', + 'pandas.core.flags', + 'pandas.core.frame', + 'pandas.core.generic', + 'pandas.core.groupby', + 'pandas.core.groupby.base', + 'pandas.core.groupby.categorical', + 'pandas.core.groupby.generic', + 'pandas.core.groupby.groupby', + 'pandas.core.groupby.grouper', + 'pandas.core.groupby.indexing', + 'pandas.core.groupby.numba_', + 'pandas.core.groupby.ops', + 'pandas.core.indexers', + 'pandas.core.indexers.objects', + 'pandas.core.indexers.utils', + 'pandas.core.indexes', + 'pandas.core.indexes.accessors', + 'pandas.core.indexes.api', + 'pandas.core.indexes.base', + 'pandas.core.indexes.category', + 'pandas.core.indexes.datetimelike', + 'pandas.core.indexes.datetimes', + 'pandas.core.indexes.extension', + 'pandas.core.indexes.frozen', + 'pandas.core.indexes.interval', + 'pandas.core.indexes.multi', + 'pandas.core.indexes.period', + 'pandas.core.indexes.range', + 'pandas.core.indexes.timedeltas', + 'pandas.core.indexing', + 'pandas.core.interchange', + 'pandas.core.interchange.buffer', + 'pandas.core.interchange.column', + 'pandas.core.interchange.dataframe', + 'pandas.core.interchange.dataframe_protocol', + 'pandas.core.interchange.from_dataframe', + 'pandas.core.interchange.utils', + 'pandas.core.internals', + 'pandas.core.internals.api', + 'pandas.core.internals.array_manager', + 'pandas.core.internals.base', + 'pandas.core.internals.blocks', + 'pandas.core.internals.concat', + 'pandas.core.internals.construction', + 'pandas.core.internals.managers', + 'pandas.core.internals.ops', + 'pandas.core.methods', + 'pandas.core.methods.describe', + 'pandas.core.methods.selectn', + 'pandas.core.methods.to_dict', + 'pandas.core.missing', + 'pandas.core.nanops', + 'pandas.core.ops', + 'pandas.core.ops.array_ops', + 'pandas.core.ops.common', + 'pandas.core.ops.dispatch', + 'pandas.core.ops.docstrings', + 'pandas.core.ops.invalid', + 'pandas.core.ops.mask_ops', + 'pandas.core.ops.missing', + 'pandas.core.resample', + 'pandas.core.reshape', + 'pandas.core.reshape.api', + 'pandas.core.reshape.concat', + 'pandas.core.reshape.encoding', + 'pandas.core.reshape.melt', + 'pandas.core.reshape.merge', + 'pandas.core.reshape.pivot', + 'pandas.core.reshape.reshape', + 'pandas.core.reshape.tile', + 'pandas.core.reshape.util', + 'pandas.core.roperator', + 'pandas.core.sample', + 'pandas.core.series', + 'pandas.core.shared_docs', + 'pandas.core.sorting', + 'pandas.core.sparse', + 'pandas.core.sparse.api', + 'pandas.core.strings', + 'pandas.core.strings.accessor', + 'pandas.core.strings.base', + 'pandas.core.strings.object_array', + 'pandas.core.tools', + 'pandas.core.tools.datetimes', + 'pandas.core.tools.numeric', + 'pandas.core.tools.timedeltas', + 'pandas.core.tools.times', + 'pandas.core.util', + 'pandas.core.util.hashing', + 'pandas.core.util.numba_', + 'pandas.core.window', + 'pandas.core.window.common', + 'pandas.core.window.doc', + 'pandas.core.window.ewm', + 'pandas.core.window.expanding', + 'pandas.core.window.numba_', + 'pandas.core.window.online', + 'pandas.core.window.rolling', + 'pandas.errors', + 'pandas.io', + 'pandas.io._util', + 'pandas.io.api', + 'pandas.io.clipboard', + 'pandas.io.clipboards', + 'pandas.io.common', + 'pandas.io.excel', + 'pandas.io.excel._base', + 'pandas.io.excel._calamine', + 'pandas.io.excel._odfreader', + 'pandas.io.excel._odswriter', + 'pandas.io.excel._openpyxl', + 'pandas.io.excel._pyxlsb', + 'pandas.io.excel._util', + 'pandas.io.excel._xlrd', + 'pandas.io.excel._xlsxwriter', + 'pandas.io.feather_format', + 'pandas.io.formats', + 'pandas.io.formats._color_data', + 'pandas.io.formats.console', + 'pandas.io.formats.css', + 'pandas.io.formats.csvs', + 'pandas.io.formats.excel', + 'pandas.io.formats.format', + 'pandas.io.formats.html', + 'pandas.io.formats.info', + 'pandas.io.formats.printing', + 'pandas.io.formats.string', + 'pandas.io.formats.style', + 'pandas.io.formats.style_render', + 'pandas.io.formats.xml', + 'pandas.io.gbq', + 'pandas.io.html', + 'pandas.io.json', + 'pandas.io.json._json', + 'pandas.io.json._normalize', + 'pandas.io.json._table_schema', + 'pandas.io.orc', + 'pandas.io.parquet', + 'pandas.io.parsers', + 'pandas.io.parsers.arrow_parser_wrapper', + 'pandas.io.parsers.base_parser', + 'pandas.io.parsers.c_parser_wrapper', + 'pandas.io.parsers.python_parser', + 'pandas.io.parsers.readers', + 'pandas.io.pickle', + 'pandas.io.pytables', + 'pandas.io.sas', + 'pandas.io.sas.sas7bdat', + 'pandas.io.sas.sas_constants', + 'pandas.io.sas.sas_xport', + 'pandas.io.sas.sasreader', + 'pandas.io.spss', + 'pandas.io.sql', + 'pandas.io.stata', + 'pandas.io.xml', + 'pandas.plotting', + 'pandas.plotting._core', + 'pandas.plotting._misc', + 'pandas.testing', + 'pandas.tests', + 'pandas.tests.api', + 'pandas.tests.api.test_api', + 'pandas.tests.api.test_types', + 'pandas.tests.apply', + 'pandas.tests.apply.common', + 'pandas.tests.apply.test_frame_apply', + 'pandas.tests.apply.test_frame_apply_relabeling', + 'pandas.tests.apply.test_frame_transform', + 'pandas.tests.apply.test_invalid_arg', + 'pandas.tests.apply.test_numba', + 'pandas.tests.apply.test_series_apply', + 'pandas.tests.apply.test_series_apply_relabeling', + 'pandas.tests.apply.test_series_transform', + 'pandas.tests.apply.test_str', + 'pandas.tests.arithmetic', + 'pandas.tests.arithmetic.common', + 'pandas.tests.arithmetic.conftest', + 'pandas.tests.arithmetic.test_array_ops', + 'pandas.tests.arithmetic.test_categorical', + 'pandas.tests.arithmetic.test_datetime64', + 'pandas.tests.arithmetic.test_interval', + 'pandas.tests.arithmetic.test_numeric', + 'pandas.tests.arithmetic.test_object', + 'pandas.tests.arithmetic.test_period', + 'pandas.tests.arithmetic.test_timedelta64', + 'pandas.tests.arrays', + 'pandas.tests.arrays.boolean', + 'pandas.tests.arrays.boolean.test_arithmetic', + 'pandas.tests.arrays.boolean.test_astype', + 'pandas.tests.arrays.boolean.test_comparison', + 'pandas.tests.arrays.boolean.test_construction', + 'pandas.tests.arrays.boolean.test_function', + 'pandas.tests.arrays.boolean.test_indexing', + 'pandas.tests.arrays.boolean.test_logical', + 'pandas.tests.arrays.boolean.test_ops', + 'pandas.tests.arrays.boolean.test_reduction', + 'pandas.tests.arrays.boolean.test_repr', + 'pandas.tests.arrays.categorical', + 'pandas.tests.arrays.categorical.test_algos', + 'pandas.tests.arrays.categorical.test_analytics', + 'pandas.tests.arrays.categorical.test_api', + 'pandas.tests.arrays.categorical.test_astype', + 'pandas.tests.arrays.categorical.test_constructors', + 'pandas.tests.arrays.categorical.test_dtypes', + 'pandas.tests.arrays.categorical.test_indexing', + 'pandas.tests.arrays.categorical.test_map', + 'pandas.tests.arrays.categorical.test_missing', + 'pandas.tests.arrays.categorical.test_operators', + 'pandas.tests.arrays.categorical.test_replace', + 'pandas.tests.arrays.categorical.test_repr', + 'pandas.tests.arrays.categorical.test_sorting', + 'pandas.tests.arrays.categorical.test_subclass', + 'pandas.tests.arrays.categorical.test_take', + 'pandas.tests.arrays.categorical.test_warnings', + 'pandas.tests.arrays.datetimes', + 'pandas.tests.arrays.datetimes.test_constructors', + 'pandas.tests.arrays.datetimes.test_cumulative', + 'pandas.tests.arrays.datetimes.test_reductions', + 'pandas.tests.arrays.floating', + 'pandas.tests.arrays.floating.conftest', + 'pandas.tests.arrays.floating.test_arithmetic', + 'pandas.tests.arrays.floating.test_astype', + 'pandas.tests.arrays.floating.test_comparison', + 'pandas.tests.arrays.floating.test_concat', + 'pandas.tests.arrays.floating.test_construction', + 'pandas.tests.arrays.floating.test_contains', + 'pandas.tests.arrays.floating.test_function', + 'pandas.tests.arrays.floating.test_repr', + 'pandas.tests.arrays.floating.test_to_numpy', + 'pandas.tests.arrays.integer', + 'pandas.tests.arrays.integer.conftest', + 'pandas.tests.arrays.integer.test_arithmetic', + 'pandas.tests.arrays.integer.test_comparison', + 'pandas.tests.arrays.integer.test_concat', + 'pandas.tests.arrays.integer.test_construction', + 'pandas.tests.arrays.integer.test_dtypes', + 'pandas.tests.arrays.integer.test_function', + 'pandas.tests.arrays.integer.test_indexing', + 'pandas.tests.arrays.integer.test_reduction', + 'pandas.tests.arrays.integer.test_repr', + 'pandas.tests.arrays.interval', + 'pandas.tests.arrays.interval.test_astype', + 'pandas.tests.arrays.interval.test_formats', + 'pandas.tests.arrays.interval.test_interval', + 'pandas.tests.arrays.interval.test_interval_pyarrow', + 'pandas.tests.arrays.interval.test_overlaps', + 'pandas.tests.arrays.masked', + 'pandas.tests.arrays.masked.test_arithmetic', + 'pandas.tests.arrays.masked.test_arrow_compat', + 'pandas.tests.arrays.masked.test_function', + 'pandas.tests.arrays.masked.test_indexing', + 'pandas.tests.arrays.masked_shared', + 'pandas.tests.arrays.numpy_', + 'pandas.tests.arrays.numpy_.test_indexing', + 'pandas.tests.arrays.numpy_.test_numpy', + 'pandas.tests.arrays.period', + 'pandas.tests.arrays.period.test_arrow_compat', + 'pandas.tests.arrays.period.test_astype', + 'pandas.tests.arrays.period.test_constructors', + 'pandas.tests.arrays.period.test_reductions', + 'pandas.tests.arrays.sparse', + 'pandas.tests.arrays.sparse.test_accessor', + 'pandas.tests.arrays.sparse.test_arithmetics', + 'pandas.tests.arrays.sparse.test_array', + 'pandas.tests.arrays.sparse.test_astype', + 'pandas.tests.arrays.sparse.test_combine_concat', + 'pandas.tests.arrays.sparse.test_constructors', + 'pandas.tests.arrays.sparse.test_dtype', + 'pandas.tests.arrays.sparse.test_indexing', + 'pandas.tests.arrays.sparse.test_libsparse', + 'pandas.tests.arrays.sparse.test_reductions', + 'pandas.tests.arrays.sparse.test_unary', + 'pandas.tests.arrays.string_', + 'pandas.tests.arrays.string_.test_string', + 'pandas.tests.arrays.string_.test_string_arrow', + 'pandas.tests.arrays.test_array', + 'pandas.tests.arrays.test_datetimelike', + 'pandas.tests.arrays.test_datetimes', + 'pandas.tests.arrays.test_ndarray_backed', + 'pandas.tests.arrays.test_period', + 'pandas.tests.arrays.test_timedeltas', + 'pandas.tests.arrays.timedeltas', + 'pandas.tests.arrays.timedeltas.test_constructors', + 'pandas.tests.arrays.timedeltas.test_cumulative', + 'pandas.tests.arrays.timedeltas.test_reductions', + 'pandas.tests.base', + 'pandas.tests.base.common', + 'pandas.tests.base.test_constructors', + 'pandas.tests.base.test_conversion', + 'pandas.tests.base.test_fillna', + 'pandas.tests.base.test_misc', + 'pandas.tests.base.test_transpose', + 'pandas.tests.base.test_unique', + 'pandas.tests.base.test_value_counts', + 'pandas.tests.computation', + 'pandas.tests.computation.test_compat', + 'pandas.tests.computation.test_eval', + 'pandas.tests.config', + 'pandas.tests.config.test_config', + 'pandas.tests.config.test_localization', + 'pandas.tests.construction', + 'pandas.tests.construction.test_extract_array', + 'pandas.tests.copy_view', + 'pandas.tests.copy_view.index', + 'pandas.tests.copy_view.index.test_datetimeindex', + 'pandas.tests.copy_view.index.test_index', + 'pandas.tests.copy_view.index.test_periodindex', + 'pandas.tests.copy_view.index.test_timedeltaindex', + 'pandas.tests.copy_view.test_array', + 'pandas.tests.copy_view.test_astype', + 'pandas.tests.copy_view.test_chained_assignment_deprecation', + 'pandas.tests.copy_view.test_clip', + 'pandas.tests.copy_view.test_constructors', + 'pandas.tests.copy_view.test_core_functionalities', + 'pandas.tests.copy_view.test_functions', + 'pandas.tests.copy_view.test_indexing', + 'pandas.tests.copy_view.test_internals', + 'pandas.tests.copy_view.test_interp_fillna', + 'pandas.tests.copy_view.test_methods', + 'pandas.tests.copy_view.test_replace', + 'pandas.tests.copy_view.test_setitem', + 'pandas.tests.copy_view.test_util', + 'pandas.tests.copy_view.util', + 'pandas.tests.dtypes', + 'pandas.tests.dtypes.cast', + 'pandas.tests.dtypes.cast.test_can_hold_element', + 'pandas.tests.dtypes.cast.test_construct_from_scalar', + 'pandas.tests.dtypes.cast.test_construct_ndarray', + 'pandas.tests.dtypes.cast.test_construct_object_arr', + 'pandas.tests.dtypes.cast.test_dict_compat', + 'pandas.tests.dtypes.cast.test_downcast', + 'pandas.tests.dtypes.cast.test_find_common_type', + 'pandas.tests.dtypes.cast.test_infer_datetimelike', + 'pandas.tests.dtypes.cast.test_infer_dtype', + 'pandas.tests.dtypes.cast.test_maybe_box_native', + 'pandas.tests.dtypes.cast.test_promote', + 'pandas.tests.dtypes.test_common', + 'pandas.tests.dtypes.test_concat', + 'pandas.tests.dtypes.test_dtypes', + 'pandas.tests.dtypes.test_generic', + 'pandas.tests.dtypes.test_inference', + 'pandas.tests.dtypes.test_missing', + 'pandas.tests.extension', + 'pandas.tests.extension.array_with_attr', + 'pandas.tests.extension.array_with_attr.array', + 'pandas.tests.extension.array_with_attr.test_array_with_attr', + 'pandas.tests.extension.conftest', + 'pandas.tests.extension.date', + 'pandas.tests.extension.date.array', + 'pandas.tests.extension.decimal', + 'pandas.tests.extension.decimal.array', + 'pandas.tests.extension.decimal.test_decimal', + 'pandas.tests.extension.json', + 'pandas.tests.extension.json.array', + 'pandas.tests.extension.json.test_json', + 'pandas.tests.extension.list', + 'pandas.tests.extension.list.array', + 'pandas.tests.extension.list.test_list', + 'pandas.tests.extension.test_arrow', + 'pandas.tests.extension.test_categorical', + 'pandas.tests.extension.test_common', + 'pandas.tests.extension.test_datetime', + 'pandas.tests.extension.test_extension', + 'pandas.tests.extension.test_interval', + 'pandas.tests.extension.test_masked', + 'pandas.tests.extension.test_numpy', + 'pandas.tests.extension.test_period', + 'pandas.tests.extension.test_sparse', + 'pandas.tests.extension.test_string', + 'pandas.tests.frame', + 'pandas.tests.frame.common', + 'pandas.tests.frame.conftest', + 'pandas.tests.frame.constructors', + 'pandas.tests.frame.constructors.test_from_dict', + 'pandas.tests.frame.constructors.test_from_records', + 'pandas.tests.frame.indexing', + 'pandas.tests.frame.indexing.test_coercion', + 'pandas.tests.frame.indexing.test_delitem', + 'pandas.tests.frame.indexing.test_get', + 'pandas.tests.frame.indexing.test_get_value', + 'pandas.tests.frame.indexing.test_getitem', + 'pandas.tests.frame.indexing.test_indexing', + 'pandas.tests.frame.indexing.test_insert', + 'pandas.tests.frame.indexing.test_mask', + 'pandas.tests.frame.indexing.test_set_value', + 'pandas.tests.frame.indexing.test_setitem', + 'pandas.tests.frame.indexing.test_take', + 'pandas.tests.frame.indexing.test_where', + 'pandas.tests.frame.indexing.test_xs', + 'pandas.tests.frame.methods', + 'pandas.tests.frame.methods.test_add_prefix_suffix', + 'pandas.tests.frame.methods.test_align', + 'pandas.tests.frame.methods.test_asfreq', + 'pandas.tests.frame.methods.test_asof', + 'pandas.tests.frame.methods.test_assign', + 'pandas.tests.frame.methods.test_astype', + 'pandas.tests.frame.methods.test_at_time', + 'pandas.tests.frame.methods.test_between_time', + 'pandas.tests.frame.methods.test_clip', + 'pandas.tests.frame.methods.test_combine', + 'pandas.tests.frame.methods.test_combine_first', + 'pandas.tests.frame.methods.test_compare', + 'pandas.tests.frame.methods.test_convert_dtypes', + 'pandas.tests.frame.methods.test_copy', + 'pandas.tests.frame.methods.test_count', + 'pandas.tests.frame.methods.test_cov_corr', + 'pandas.tests.frame.methods.test_describe', + 'pandas.tests.frame.methods.test_diff', + 'pandas.tests.frame.methods.test_dot', + 'pandas.tests.frame.methods.test_drop', + 'pandas.tests.frame.methods.test_drop_duplicates', + 'pandas.tests.frame.methods.test_droplevel', + 'pandas.tests.frame.methods.test_dropna', + 'pandas.tests.frame.methods.test_dtypes', + 'pandas.tests.frame.methods.test_duplicated', + 'pandas.tests.frame.methods.test_equals', + 'pandas.tests.frame.methods.test_explode', + 'pandas.tests.frame.methods.test_fillna', + 'pandas.tests.frame.methods.test_filter', + 'pandas.tests.frame.methods.test_first_and_last', + 'pandas.tests.frame.methods.test_first_valid_index', + 'pandas.tests.frame.methods.test_get_numeric_data', + 'pandas.tests.frame.methods.test_head_tail', + 'pandas.tests.frame.methods.test_infer_objects', + 'pandas.tests.frame.methods.test_info', + 'pandas.tests.frame.methods.test_interpolate', + 'pandas.tests.frame.methods.test_is_homogeneous_dtype', + 'pandas.tests.frame.methods.test_isetitem', + 'pandas.tests.frame.methods.test_isin', + 'pandas.tests.frame.methods.test_iterrows', + 'pandas.tests.frame.methods.test_join', + 'pandas.tests.frame.methods.test_map', + 'pandas.tests.frame.methods.test_matmul', + 'pandas.tests.frame.methods.test_nlargest', + 'pandas.tests.frame.methods.test_pct_change', + 'pandas.tests.frame.methods.test_pipe', + 'pandas.tests.frame.methods.test_pop', + 'pandas.tests.frame.methods.test_quantile', + 'pandas.tests.frame.methods.test_rank', + 'pandas.tests.frame.methods.test_reindex', + 'pandas.tests.frame.methods.test_reindex_like', + 'pandas.tests.frame.methods.test_rename', + 'pandas.tests.frame.methods.test_rename_axis', + 'pandas.tests.frame.methods.test_reorder_levels', + 'pandas.tests.frame.methods.test_replace', + 'pandas.tests.frame.methods.test_reset_index', + 'pandas.tests.frame.methods.test_round', + 'pandas.tests.frame.methods.test_sample', + 'pandas.tests.frame.methods.test_select_dtypes', + 'pandas.tests.frame.methods.test_set_axis', + 'pandas.tests.frame.methods.test_set_index', + 'pandas.tests.frame.methods.test_shift', + 'pandas.tests.frame.methods.test_size', + 'pandas.tests.frame.methods.test_sort_index', + 'pandas.tests.frame.methods.test_sort_values', + 'pandas.tests.frame.methods.test_swapaxes', + 'pandas.tests.frame.methods.test_swaplevel', + 'pandas.tests.frame.methods.test_to_csv', + 'pandas.tests.frame.methods.test_to_dict', + 'pandas.tests.frame.methods.test_to_dict_of_blocks', + 'pandas.tests.frame.methods.test_to_numpy', + 'pandas.tests.frame.methods.test_to_period', + 'pandas.tests.frame.methods.test_to_records', + 'pandas.tests.frame.methods.test_to_timestamp', + 'pandas.tests.frame.methods.test_transpose', + 'pandas.tests.frame.methods.test_truncate', + 'pandas.tests.frame.methods.test_tz_convert', + 'pandas.tests.frame.methods.test_tz_localize', + 'pandas.tests.frame.methods.test_update', + 'pandas.tests.frame.methods.test_value_counts', + 'pandas.tests.frame.methods.test_values', + 'pandas.tests.frame.test_alter_axes', + 'pandas.tests.frame.test_api', + 'pandas.tests.frame.test_arithmetic', + 'pandas.tests.frame.test_arrow_interface', + 'pandas.tests.frame.test_block_internals', + 'pandas.tests.frame.test_constructors', + 'pandas.tests.frame.test_cumulative', + 'pandas.tests.frame.test_iteration', + 'pandas.tests.frame.test_logical_ops', + 'pandas.tests.frame.test_nonunique_indexes', + 'pandas.tests.frame.test_npfuncs', + 'pandas.tests.frame.test_query_eval', + 'pandas.tests.frame.test_reductions', + 'pandas.tests.frame.test_repr', + 'pandas.tests.frame.test_stack_unstack', + 'pandas.tests.frame.test_subclass', + 'pandas.tests.frame.test_ufunc', + 'pandas.tests.frame.test_unary', + 'pandas.tests.frame.test_validate', + 'pandas.tests.generic', + 'pandas.tests.generic.test_duplicate_labels', + 'pandas.tests.generic.test_finalize', + 'pandas.tests.generic.test_frame', + 'pandas.tests.generic.test_generic', + 'pandas.tests.generic.test_label_or_level_utils', + 'pandas.tests.generic.test_series', + 'pandas.tests.generic.test_to_xarray', + 'pandas.tests.groupby', + 'pandas.tests.groupby.aggregate', + 'pandas.tests.groupby.aggregate.test_aggregate', + 'pandas.tests.groupby.aggregate.test_cython', + 'pandas.tests.groupby.aggregate.test_numba', + 'pandas.tests.groupby.aggregate.test_other', + 'pandas.tests.groupby.conftest', + 'pandas.tests.groupby.methods', + 'pandas.tests.groupby.methods.test_corrwith', + 'pandas.tests.groupby.methods.test_describe', + 'pandas.tests.groupby.methods.test_groupby_shift_diff', + 'pandas.tests.groupby.methods.test_is_monotonic', + 'pandas.tests.groupby.methods.test_nlargest_nsmallest', + 'pandas.tests.groupby.methods.test_nth', + 'pandas.tests.groupby.methods.test_quantile', + 'pandas.tests.groupby.methods.test_rank', + 'pandas.tests.groupby.methods.test_sample', + 'pandas.tests.groupby.methods.test_size', + 'pandas.tests.groupby.methods.test_skew', + 'pandas.tests.groupby.methods.test_value_counts', + 'pandas.tests.groupby.test_all_methods', + 'pandas.tests.groupby.test_api', + 'pandas.tests.groupby.test_apply', + 'pandas.tests.groupby.test_apply_mutate', + 'pandas.tests.groupby.test_bin_groupby', + 'pandas.tests.groupby.test_categorical', + 'pandas.tests.groupby.test_counting', + 'pandas.tests.groupby.test_cumulative', + 'pandas.tests.groupby.test_filters', + 'pandas.tests.groupby.test_groupby', + 'pandas.tests.groupby.test_groupby_dropna', + 'pandas.tests.groupby.test_groupby_subclass', + 'pandas.tests.groupby.test_grouping', + 'pandas.tests.groupby.test_index_as_string', + 'pandas.tests.groupby.test_indexing', + 'pandas.tests.groupby.test_libgroupby', + 'pandas.tests.groupby.test_missing', + 'pandas.tests.groupby.test_numba', + 'pandas.tests.groupby.test_numeric_only', + 'pandas.tests.groupby.test_pipe', + 'pandas.tests.groupby.test_raises', + 'pandas.tests.groupby.test_reductions', + 'pandas.tests.groupby.test_timegrouper', + 'pandas.tests.groupby.transform', + 'pandas.tests.groupby.transform.test_numba', + 'pandas.tests.groupby.transform.test_transform', + 'pandas.tests.indexes', + 'pandas.tests.indexes.base_class', + 'pandas.tests.indexes.base_class.test_constructors', + 'pandas.tests.indexes.base_class.test_formats', + 'pandas.tests.indexes.base_class.test_indexing', + 'pandas.tests.indexes.base_class.test_pickle', + 'pandas.tests.indexes.base_class.test_reshape', + 'pandas.tests.indexes.base_class.test_setops', + 'pandas.tests.indexes.base_class.test_where', + 'pandas.tests.indexes.categorical', + 'pandas.tests.indexes.categorical.test_append', + 'pandas.tests.indexes.categorical.test_astype', + 'pandas.tests.indexes.categorical.test_category', + 'pandas.tests.indexes.categorical.test_constructors', + 'pandas.tests.indexes.categorical.test_equals', + 'pandas.tests.indexes.categorical.test_fillna', + 'pandas.tests.indexes.categorical.test_formats', + 'pandas.tests.indexes.categorical.test_indexing', + 'pandas.tests.indexes.categorical.test_map', + 'pandas.tests.indexes.categorical.test_reindex', + 'pandas.tests.indexes.categorical.test_setops', + 'pandas.tests.indexes.conftest', + 'pandas.tests.indexes.datetimelike_', + 'pandas.tests.indexes.datetimelike_.test_drop_duplicates', + 'pandas.tests.indexes.datetimelike_.test_equals', + 'pandas.tests.indexes.datetimelike_.test_indexing', + 'pandas.tests.indexes.datetimelike_.test_is_monotonic', + 'pandas.tests.indexes.datetimelike_.test_nat', + 'pandas.tests.indexes.datetimelike_.test_sort_values', + 'pandas.tests.indexes.datetimelike_.test_value_counts', + 'pandas.tests.indexes.datetimes', + 'pandas.tests.indexes.datetimes.methods', + 'pandas.tests.indexes.datetimes.methods.test_asof', + 'pandas.tests.indexes.datetimes.methods.test_astype', + 'pandas.tests.indexes.datetimes.methods.test_delete', + 'pandas.tests.indexes.datetimes.methods.test_factorize', + 'pandas.tests.indexes.datetimes.methods.test_fillna', + 'pandas.tests.indexes.datetimes.methods.test_insert', + 'pandas.tests.indexes.datetimes.methods.test_isocalendar', + 'pandas.tests.indexes.datetimes.methods.test_map', + 'pandas.tests.indexes.datetimes.methods.test_normalize', + 'pandas.tests.indexes.datetimes.methods.test_repeat', + 'pandas.tests.indexes.datetimes.methods.test_resolution', + 'pandas.tests.indexes.datetimes.methods.test_round', + 'pandas.tests.indexes.datetimes.methods.test_shift', + 'pandas.tests.indexes.datetimes.methods.test_snap', + 'pandas.tests.indexes.datetimes.methods.test_to_frame', + 'pandas.tests.indexes.datetimes.methods.test_to_julian_date', + 'pandas.tests.indexes.datetimes.methods.test_to_period', + 'pandas.tests.indexes.datetimes.methods.test_to_pydatetime', + 'pandas.tests.indexes.datetimes.methods.test_to_series', + 'pandas.tests.indexes.datetimes.methods.test_tz_convert', + 'pandas.tests.indexes.datetimes.methods.test_tz_localize', + 'pandas.tests.indexes.datetimes.methods.test_unique', + 'pandas.tests.indexes.datetimes.test_arithmetic', + 'pandas.tests.indexes.datetimes.test_constructors', + 'pandas.tests.indexes.datetimes.test_date_range', + 'pandas.tests.indexes.datetimes.test_datetime', + 'pandas.tests.indexes.datetimes.test_formats', + 'pandas.tests.indexes.datetimes.test_freq_attr', + 'pandas.tests.indexes.datetimes.test_indexing', + 'pandas.tests.indexes.datetimes.test_iter', + 'pandas.tests.indexes.datetimes.test_join', + 'pandas.tests.indexes.datetimes.test_npfuncs', + 'pandas.tests.indexes.datetimes.test_ops', + 'pandas.tests.indexes.datetimes.test_partial_slicing', + 'pandas.tests.indexes.datetimes.test_pickle', + 'pandas.tests.indexes.datetimes.test_reindex', + 'pandas.tests.indexes.datetimes.test_scalar_compat', + 'pandas.tests.indexes.datetimes.test_setops', + 'pandas.tests.indexes.datetimes.test_timezones', + 'pandas.tests.indexes.interval', + 'pandas.tests.indexes.interval.test_astype', + 'pandas.tests.indexes.interval.test_constructors', + 'pandas.tests.indexes.interval.test_equals', + 'pandas.tests.indexes.interval.test_formats', + 'pandas.tests.indexes.interval.test_indexing', + 'pandas.tests.indexes.interval.test_interval', + 'pandas.tests.indexes.interval.test_interval_range', + 'pandas.tests.indexes.interval.test_interval_tree', + 'pandas.tests.indexes.interval.test_join', + 'pandas.tests.indexes.interval.test_pickle', + 'pandas.tests.indexes.interval.test_setops', + 'pandas.tests.indexes.multi', + 'pandas.tests.indexes.multi.conftest', + 'pandas.tests.indexes.multi.test_analytics', + 'pandas.tests.indexes.multi.test_astype', + 'pandas.tests.indexes.multi.test_compat', + 'pandas.tests.indexes.multi.test_constructors', + 'pandas.tests.indexes.multi.test_conversion', + 'pandas.tests.indexes.multi.test_copy', + 'pandas.tests.indexes.multi.test_drop', + 'pandas.tests.indexes.multi.test_duplicates', + 'pandas.tests.indexes.multi.test_equivalence', + 'pandas.tests.indexes.multi.test_formats', + 'pandas.tests.indexes.multi.test_get_level_values', + 'pandas.tests.indexes.multi.test_get_set', + 'pandas.tests.indexes.multi.test_indexing', + 'pandas.tests.indexes.multi.test_integrity', + 'pandas.tests.indexes.multi.test_isin', + 'pandas.tests.indexes.multi.test_join', + 'pandas.tests.indexes.multi.test_lexsort', + 'pandas.tests.indexes.multi.test_missing', + 'pandas.tests.indexes.multi.test_monotonic', + 'pandas.tests.indexes.multi.test_names', + 'pandas.tests.indexes.multi.test_partial_indexing', + 'pandas.tests.indexes.multi.test_pickle', + 'pandas.tests.indexes.multi.test_reindex', + 'pandas.tests.indexes.multi.test_reshape', + 'pandas.tests.indexes.multi.test_setops', + 'pandas.tests.indexes.multi.test_sorting', + 'pandas.tests.indexes.multi.test_take', + 'pandas.tests.indexes.numeric', + 'pandas.tests.indexes.numeric.test_astype', + 'pandas.tests.indexes.numeric.test_indexing', + 'pandas.tests.indexes.numeric.test_join', + 'pandas.tests.indexes.numeric.test_numeric', + 'pandas.tests.indexes.numeric.test_setops', + 'pandas.tests.indexes.object', + 'pandas.tests.indexes.object.test_astype', + 'pandas.tests.indexes.object.test_indexing', + 'pandas.tests.indexes.period', + 'pandas.tests.indexes.period.methods', + 'pandas.tests.indexes.period.methods.test_asfreq', + 'pandas.tests.indexes.period.methods.test_astype', + 'pandas.tests.indexes.period.methods.test_factorize', + 'pandas.tests.indexes.period.methods.test_fillna', + 'pandas.tests.indexes.period.methods.test_insert', + 'pandas.tests.indexes.period.methods.test_is_full', + 'pandas.tests.indexes.period.methods.test_repeat', + 'pandas.tests.indexes.period.methods.test_shift', + 'pandas.tests.indexes.period.methods.test_to_timestamp', + 'pandas.tests.indexes.period.test_constructors', + 'pandas.tests.indexes.period.test_formats', + 'pandas.tests.indexes.period.test_freq_attr', + 'pandas.tests.indexes.period.test_indexing', + 'pandas.tests.indexes.period.test_join', + 'pandas.tests.indexes.period.test_monotonic', + 'pandas.tests.indexes.period.test_partial_slicing', + 'pandas.tests.indexes.period.test_period', + 'pandas.tests.indexes.period.test_period_range', + 'pandas.tests.indexes.period.test_pickle', + 'pandas.tests.indexes.period.test_resolution', + 'pandas.tests.indexes.period.test_scalar_compat', + 'pandas.tests.indexes.period.test_searchsorted', + 'pandas.tests.indexes.period.test_setops', + 'pandas.tests.indexes.period.test_tools', + 'pandas.tests.indexes.ranges', + 'pandas.tests.indexes.ranges.test_constructors', + 'pandas.tests.indexes.ranges.test_indexing', + 'pandas.tests.indexes.ranges.test_join', + 'pandas.tests.indexes.ranges.test_range', + 'pandas.tests.indexes.ranges.test_setops', + 'pandas.tests.indexes.test_any_index', + 'pandas.tests.indexes.test_base', + 'pandas.tests.indexes.test_common', + 'pandas.tests.indexes.test_datetimelike', + 'pandas.tests.indexes.test_engines', + 'pandas.tests.indexes.test_frozen', + 'pandas.tests.indexes.test_index_new', + 'pandas.tests.indexes.test_indexing', + 'pandas.tests.indexes.test_numpy_compat', + 'pandas.tests.indexes.test_old_base', + 'pandas.tests.indexes.test_setops', + 'pandas.tests.indexes.test_subclass', + 'pandas.tests.indexes.timedeltas', + 'pandas.tests.indexes.timedeltas.methods', + 'pandas.tests.indexes.timedeltas.methods.test_astype', + 'pandas.tests.indexes.timedeltas.methods.test_factorize', + 'pandas.tests.indexes.timedeltas.methods.test_fillna', + 'pandas.tests.indexes.timedeltas.methods.test_insert', + 'pandas.tests.indexes.timedeltas.methods.test_repeat', + 'pandas.tests.indexes.timedeltas.methods.test_shift', + 'pandas.tests.indexes.timedeltas.test_arithmetic', + 'pandas.tests.indexes.timedeltas.test_constructors', + 'pandas.tests.indexes.timedeltas.test_delete', + 'pandas.tests.indexes.timedeltas.test_formats', + 'pandas.tests.indexes.timedeltas.test_freq_attr', + 'pandas.tests.indexes.timedeltas.test_indexing', + 'pandas.tests.indexes.timedeltas.test_join', + 'pandas.tests.indexes.timedeltas.test_ops', + 'pandas.tests.indexes.timedeltas.test_pickle', + 'pandas.tests.indexes.timedeltas.test_scalar_compat', + 'pandas.tests.indexes.timedeltas.test_searchsorted', + 'pandas.tests.indexes.timedeltas.test_setops', + 'pandas.tests.indexes.timedeltas.test_timedelta', + 'pandas.tests.indexes.timedeltas.test_timedelta_range', + 'pandas.tests.indexing', + 'pandas.tests.indexing.common', + 'pandas.tests.indexing.conftest', + 'pandas.tests.indexing.interval', + 'pandas.tests.indexing.interval.test_interval', + 'pandas.tests.indexing.interval.test_interval_new', + 'pandas.tests.indexing.multiindex', + 'pandas.tests.indexing.multiindex.test_chaining_and_caching', + 'pandas.tests.indexing.multiindex.test_datetime', + 'pandas.tests.indexing.multiindex.test_getitem', + 'pandas.tests.indexing.multiindex.test_iloc', + 'pandas.tests.indexing.multiindex.test_indexing_slow', + 'pandas.tests.indexing.multiindex.test_loc', + 'pandas.tests.indexing.multiindex.test_multiindex', + 'pandas.tests.indexing.multiindex.test_partial', + 'pandas.tests.indexing.multiindex.test_setitem', + 'pandas.tests.indexing.multiindex.test_slice', + 'pandas.tests.indexing.multiindex.test_sorted', + 'pandas.tests.indexing.test_at', + 'pandas.tests.indexing.test_categorical', + 'pandas.tests.indexing.test_chaining_and_caching', + 'pandas.tests.indexing.test_check_indexer', + 'pandas.tests.indexing.test_coercion', + 'pandas.tests.indexing.test_datetime', + 'pandas.tests.indexing.test_floats', + 'pandas.tests.indexing.test_iat', + 'pandas.tests.indexing.test_iloc', + 'pandas.tests.indexing.test_indexers', + 'pandas.tests.indexing.test_indexing', + 'pandas.tests.indexing.test_loc', + 'pandas.tests.indexing.test_na_indexing', + 'pandas.tests.indexing.test_partial', + 'pandas.tests.indexing.test_scalar', + 'pandas.tests.interchange', + 'pandas.tests.interchange.test_impl', + 'pandas.tests.interchange.test_spec_conformance', + 'pandas.tests.interchange.test_utils', + 'pandas.tests.internals', + 'pandas.tests.internals.test_api', + 'pandas.tests.internals.test_internals', + 'pandas.tests.internals.test_managers', + 'pandas.tests.io', + 'pandas.tests.io.conftest', + 'pandas.tests.io.excel', + 'pandas.tests.io.excel.test_odf', + 'pandas.tests.io.excel.test_odswriter', + 'pandas.tests.io.excel.test_openpyxl', + 'pandas.tests.io.excel.test_readers', + 'pandas.tests.io.excel.test_style', + 'pandas.tests.io.excel.test_writers', + 'pandas.tests.io.excel.test_xlrd', + 'pandas.tests.io.excel.test_xlsxwriter', + 'pandas.tests.io.formats', + 'pandas.tests.io.formats.style', + 'pandas.tests.io.formats.style.test_bar', + 'pandas.tests.io.formats.style.test_exceptions', + 'pandas.tests.io.formats.style.test_format', + 'pandas.tests.io.formats.style.test_highlight', + 'pandas.tests.io.formats.style.test_html', + 'pandas.tests.io.formats.style.test_matplotlib', + 'pandas.tests.io.formats.style.test_non_unique', + 'pandas.tests.io.formats.style.test_style', + 'pandas.tests.io.formats.style.test_to_latex', + 'pandas.tests.io.formats.style.test_to_string', + 'pandas.tests.io.formats.style.test_tooltip', + 'pandas.tests.io.formats.test_console', + 'pandas.tests.io.formats.test_css', + 'pandas.tests.io.formats.test_eng_formatting', + 'pandas.tests.io.formats.test_format', + 'pandas.tests.io.formats.test_ipython_compat', + 'pandas.tests.io.formats.test_printing', + 'pandas.tests.io.formats.test_to_csv', + 'pandas.tests.io.formats.test_to_excel', + 'pandas.tests.io.formats.test_to_html', + 'pandas.tests.io.formats.test_to_latex', + 'pandas.tests.io.formats.test_to_markdown', + 'pandas.tests.io.formats.test_to_string', + 'pandas.tests.io.generate_legacy_storage_files', + 'pandas.tests.io.json', + 'pandas.tests.io.json.conftest', + 'pandas.tests.io.json.test_compression', + 'pandas.tests.io.json.test_deprecated_kwargs', + 'pandas.tests.io.json.test_json_table_schema', + 'pandas.tests.io.json.test_json_table_schema_ext_dtype', + 'pandas.tests.io.json.test_normalize', + 'pandas.tests.io.json.test_pandas', + 'pandas.tests.io.json.test_readlines', + 'pandas.tests.io.json.test_ujson', + 'pandas.tests.io.parser', + 'pandas.tests.io.parser.common', + 'pandas.tests.io.parser.common.test_chunksize', + 'pandas.tests.io.parser.common.test_common_basic', + 'pandas.tests.io.parser.common.test_data_list', + 'pandas.tests.io.parser.common.test_decimal', + 'pandas.tests.io.parser.common.test_file_buffer_url', + 'pandas.tests.io.parser.common.test_float', + 'pandas.tests.io.parser.common.test_index', + 'pandas.tests.io.parser.common.test_inf', + 'pandas.tests.io.parser.common.test_ints', + 'pandas.tests.io.parser.common.test_iterator', + 'pandas.tests.io.parser.common.test_read_errors', + 'pandas.tests.io.parser.common.test_verbose', + 'pandas.tests.io.parser.conftest', + 'pandas.tests.io.parser.dtypes', + 'pandas.tests.io.parser.dtypes.test_categorical', + 'pandas.tests.io.parser.dtypes.test_dtypes_basic', + 'pandas.tests.io.parser.dtypes.test_empty', + 'pandas.tests.io.parser.test_c_parser_only', + 'pandas.tests.io.parser.test_comment', + 'pandas.tests.io.parser.test_compression', + 'pandas.tests.io.parser.test_concatenate_chunks', + 'pandas.tests.io.parser.test_converters', + 'pandas.tests.io.parser.test_dialect', + 'pandas.tests.io.parser.test_encoding', + 'pandas.tests.io.parser.test_header', + 'pandas.tests.io.parser.test_index_col', + 'pandas.tests.io.parser.test_mangle_dupes', + 'pandas.tests.io.parser.test_multi_thread', + 'pandas.tests.io.parser.test_na_values', + 'pandas.tests.io.parser.test_network', + 'pandas.tests.io.parser.test_parse_dates', + 'pandas.tests.io.parser.test_python_parser_only', + 'pandas.tests.io.parser.test_quoting', + 'pandas.tests.io.parser.test_read_fwf', + 'pandas.tests.io.parser.test_skiprows', + 'pandas.tests.io.parser.test_textreader', + 'pandas.tests.io.parser.test_unsupported', + 'pandas.tests.io.parser.test_upcast', + 'pandas.tests.io.parser.usecols', + 'pandas.tests.io.parser.usecols.test_parse_dates', + 'pandas.tests.io.parser.usecols.test_strings', + 'pandas.tests.io.parser.usecols.test_usecols_basic', + 'pandas.tests.io.pytables', + 'pandas.tests.io.pytables.common', + 'pandas.tests.io.pytables.conftest', + 'pandas.tests.io.pytables.test_append', + 'pandas.tests.io.pytables.test_categorical', + 'pandas.tests.io.pytables.test_compat', + 'pandas.tests.io.pytables.test_complex', + 'pandas.tests.io.pytables.test_errors', + 'pandas.tests.io.pytables.test_file_handling', + 'pandas.tests.io.pytables.test_keys', + 'pandas.tests.io.pytables.test_put', + 'pandas.tests.io.pytables.test_pytables_missing', + 'pandas.tests.io.pytables.test_read', + 'pandas.tests.io.pytables.test_retain_attributes', + 'pandas.tests.io.pytables.test_round_trip', + 'pandas.tests.io.pytables.test_select', + 'pandas.tests.io.pytables.test_store', + 'pandas.tests.io.pytables.test_subclass', + 'pandas.tests.io.pytables.test_time_series', + 'pandas.tests.io.pytables.test_timezones', + 'pandas.tests.io.sas', + 'pandas.tests.io.sas.test_byteswap', + 'pandas.tests.io.sas.test_sas', + 'pandas.tests.io.sas.test_sas7bdat', + 'pandas.tests.io.sas.test_xport', + 'pandas.tests.io.test_clipboard', + 'pandas.tests.io.test_common', + 'pandas.tests.io.test_compression', + 'pandas.tests.io.test_feather', + 'pandas.tests.io.test_fsspec', + 'pandas.tests.io.test_gbq', + 'pandas.tests.io.test_gcs', + 'pandas.tests.io.test_html', + 'pandas.tests.io.test_http_headers', + 'pandas.tests.io.test_orc', + 'pandas.tests.io.test_parquet', + 'pandas.tests.io.test_pickle', + 'pandas.tests.io.test_s3', + 'pandas.tests.io.test_spss', + 'pandas.tests.io.test_sql', + 'pandas.tests.io.test_stata', + 'pandas.tests.io.xml', + 'pandas.tests.io.xml.conftest', + 'pandas.tests.io.xml.test_to_xml', + 'pandas.tests.io.xml.test_xml', + 'pandas.tests.io.xml.test_xml_dtypes', + 'pandas.tests.libs', + 'pandas.tests.libs.test_hashtable', + 'pandas.tests.libs.test_join', + 'pandas.tests.libs.test_lib', + 'pandas.tests.libs.test_libalgos', + 'pandas.tests.plotting', + 'pandas.tests.plotting.common', + 'pandas.tests.plotting.conftest', + 'pandas.tests.plotting.frame', + 'pandas.tests.plotting.frame.test_frame', + 'pandas.tests.plotting.frame.test_frame_color', + 'pandas.tests.plotting.frame.test_frame_groupby', + 'pandas.tests.plotting.frame.test_frame_legend', + 'pandas.tests.plotting.frame.test_frame_subplots', + 'pandas.tests.plotting.frame.test_hist_box_by', + 'pandas.tests.plotting.test_backend', + 'pandas.tests.plotting.test_boxplot_method', + 'pandas.tests.plotting.test_common', + 'pandas.tests.plotting.test_converter', + 'pandas.tests.plotting.test_datetimelike', + 'pandas.tests.plotting.test_groupby', + 'pandas.tests.plotting.test_hist_method', + 'pandas.tests.plotting.test_misc', + 'pandas.tests.plotting.test_series', + 'pandas.tests.plotting.test_style', + 'pandas.tests.reductions', + 'pandas.tests.reductions.test_reductions', + 'pandas.tests.reductions.test_stat_reductions', + 'pandas.tests.resample', + 'pandas.tests.resample.conftest', + 'pandas.tests.resample.test_base', + 'pandas.tests.resample.test_datetime_index', + 'pandas.tests.resample.test_period_index', + 'pandas.tests.resample.test_resample_api', + 'pandas.tests.resample.test_resampler_grouper', + 'pandas.tests.resample.test_time_grouper', + 'pandas.tests.resample.test_timedelta', + 'pandas.tests.reshape', + 'pandas.tests.reshape.concat', + 'pandas.tests.reshape.concat.conftest', + 'pandas.tests.reshape.concat.test_append', + 'pandas.tests.reshape.concat.test_append_common', + 'pandas.tests.reshape.concat.test_categorical', + 'pandas.tests.reshape.concat.test_concat', + 'pandas.tests.reshape.concat.test_dataframe', + 'pandas.tests.reshape.concat.test_datetimes', + 'pandas.tests.reshape.concat.test_empty', + 'pandas.tests.reshape.concat.test_index', + 'pandas.tests.reshape.concat.test_invalid', + 'pandas.tests.reshape.concat.test_series', + 'pandas.tests.reshape.concat.test_sort', + 'pandas.tests.reshape.merge', + 'pandas.tests.reshape.merge.test_join', + 'pandas.tests.reshape.merge.test_merge', + 'pandas.tests.reshape.merge.test_merge_asof', + 'pandas.tests.reshape.merge.test_merge_cross', + 'pandas.tests.reshape.merge.test_merge_index_as_string', + 'pandas.tests.reshape.merge.test_merge_ordered', + 'pandas.tests.reshape.merge.test_multi', + 'pandas.tests.reshape.test_crosstab', + 'pandas.tests.reshape.test_cut', + 'pandas.tests.reshape.test_from_dummies', + 'pandas.tests.reshape.test_get_dummies', + 'pandas.tests.reshape.test_melt', + 'pandas.tests.reshape.test_pivot', + 'pandas.tests.reshape.test_pivot_multilevel', + 'pandas.tests.reshape.test_qcut', + 'pandas.tests.reshape.test_union_categoricals', + 'pandas.tests.reshape.test_util', + 'pandas.tests.scalar', + 'pandas.tests.scalar.interval', + 'pandas.tests.scalar.interval.test_arithmetic', + 'pandas.tests.scalar.interval.test_constructors', + 'pandas.tests.scalar.interval.test_contains', + 'pandas.tests.scalar.interval.test_formats', + 'pandas.tests.scalar.interval.test_interval', + 'pandas.tests.scalar.interval.test_overlaps', + 'pandas.tests.scalar.period', + 'pandas.tests.scalar.period.test_arithmetic', + 'pandas.tests.scalar.period.test_asfreq', + 'pandas.tests.scalar.period.test_period', + 'pandas.tests.scalar.test_na_scalar', + 'pandas.tests.scalar.test_nat', + 'pandas.tests.scalar.timedelta', + 'pandas.tests.scalar.timedelta.methods', + 'pandas.tests.scalar.timedelta.methods.test_as_unit', + 'pandas.tests.scalar.timedelta.methods.test_round', + 'pandas.tests.scalar.timedelta.test_arithmetic', + 'pandas.tests.scalar.timedelta.test_constructors', + 'pandas.tests.scalar.timedelta.test_formats', + 'pandas.tests.scalar.timedelta.test_timedelta', + 'pandas.tests.scalar.timestamp', + 'pandas.tests.scalar.timestamp.methods', + 'pandas.tests.scalar.timestamp.methods.test_as_unit', + 'pandas.tests.scalar.timestamp.methods.test_normalize', + 'pandas.tests.scalar.timestamp.methods.test_replace', + 'pandas.tests.scalar.timestamp.methods.test_round', + 'pandas.tests.scalar.timestamp.methods.test_timestamp_method', + 'pandas.tests.scalar.timestamp.methods.test_to_julian_date', + 'pandas.tests.scalar.timestamp.methods.test_to_pydatetime', + 'pandas.tests.scalar.timestamp.methods.test_tz_convert', + 'pandas.tests.scalar.timestamp.methods.test_tz_localize', + 'pandas.tests.scalar.timestamp.test_arithmetic', + 'pandas.tests.scalar.timestamp.test_comparisons', + 'pandas.tests.scalar.timestamp.test_constructors', + 'pandas.tests.scalar.timestamp.test_formats', + 'pandas.tests.scalar.timestamp.test_timestamp', + 'pandas.tests.scalar.timestamp.test_timezones', + 'pandas.tests.series', + 'pandas.tests.series.accessors', + 'pandas.tests.series.accessors.test_cat_accessor', + 'pandas.tests.series.accessors.test_dt_accessor', + 'pandas.tests.series.accessors.test_list_accessor', + 'pandas.tests.series.accessors.test_sparse_accessor', + 'pandas.tests.series.accessors.test_str_accessor', + 'pandas.tests.series.accessors.test_struct_accessor', + 'pandas.tests.series.indexing', + 'pandas.tests.series.indexing.test_datetime', + 'pandas.tests.series.indexing.test_delitem', + 'pandas.tests.series.indexing.test_get', + 'pandas.tests.series.indexing.test_getitem', + 'pandas.tests.series.indexing.test_indexing', + 'pandas.tests.series.indexing.test_mask', + 'pandas.tests.series.indexing.test_set_value', + 'pandas.tests.series.indexing.test_setitem', + 'pandas.tests.series.indexing.test_take', + 'pandas.tests.series.indexing.test_where', + 'pandas.tests.series.indexing.test_xs', + 'pandas.tests.series.methods', + 'pandas.tests.series.methods.test_add_prefix_suffix', + 'pandas.tests.series.methods.test_align', + 'pandas.tests.series.methods.test_argsort', + 'pandas.tests.series.methods.test_asof', + 'pandas.tests.series.methods.test_astype', + 'pandas.tests.series.methods.test_autocorr', + 'pandas.tests.series.methods.test_between', + 'pandas.tests.series.methods.test_case_when', + 'pandas.tests.series.methods.test_clip', + 'pandas.tests.series.methods.test_combine', + 'pandas.tests.series.methods.test_combine_first', + 'pandas.tests.series.methods.test_compare', + 'pandas.tests.series.methods.test_convert_dtypes', + 'pandas.tests.series.methods.test_copy', + 'pandas.tests.series.methods.test_count', + 'pandas.tests.series.methods.test_cov_corr', + 'pandas.tests.series.methods.test_describe', + 'pandas.tests.series.methods.test_diff', + 'pandas.tests.series.methods.test_drop', + 'pandas.tests.series.methods.test_drop_duplicates', + 'pandas.tests.series.methods.test_dropna', + 'pandas.tests.series.methods.test_dtypes', + 'pandas.tests.series.methods.test_duplicated', + 'pandas.tests.series.methods.test_equals', + 'pandas.tests.series.methods.test_explode', + 'pandas.tests.series.methods.test_fillna', + 'pandas.tests.series.methods.test_get_numeric_data', + 'pandas.tests.series.methods.test_head_tail', + 'pandas.tests.series.methods.test_infer_objects', + 'pandas.tests.series.methods.test_info', + 'pandas.tests.series.methods.test_interpolate', + 'pandas.tests.series.methods.test_is_monotonic', + 'pandas.tests.series.methods.test_is_unique', + 'pandas.tests.series.methods.test_isin', + 'pandas.tests.series.methods.test_isna', + 'pandas.tests.series.methods.test_item', + 'pandas.tests.series.methods.test_map', + 'pandas.tests.series.methods.test_matmul', + 'pandas.tests.series.methods.test_nlargest', + 'pandas.tests.series.methods.test_nunique', + 'pandas.tests.series.methods.test_pct_change', + 'pandas.tests.series.methods.test_pop', + 'pandas.tests.series.methods.test_quantile', + 'pandas.tests.series.methods.test_rank', + 'pandas.tests.series.methods.test_reindex', + 'pandas.tests.series.methods.test_reindex_like', + 'pandas.tests.series.methods.test_rename', + 'pandas.tests.series.methods.test_rename_axis', + 'pandas.tests.series.methods.test_repeat', + 'pandas.tests.series.methods.test_replace', + 'pandas.tests.series.methods.test_reset_index', + 'pandas.tests.series.methods.test_round', + 'pandas.tests.series.methods.test_searchsorted', + 'pandas.tests.series.methods.test_set_name', + 'pandas.tests.series.methods.test_size', + 'pandas.tests.series.methods.test_sort_index', + 'pandas.tests.series.methods.test_sort_values', + 'pandas.tests.series.methods.test_to_csv', + 'pandas.tests.series.methods.test_to_dict', + 'pandas.tests.series.methods.test_to_frame', + 'pandas.tests.series.methods.test_to_numpy', + 'pandas.tests.series.methods.test_tolist', + 'pandas.tests.series.methods.test_truncate', + 'pandas.tests.series.methods.test_tz_localize', + 'pandas.tests.series.methods.test_unique', + 'pandas.tests.series.methods.test_unstack', + 'pandas.tests.series.methods.test_update', + 'pandas.tests.series.methods.test_value_counts', + 'pandas.tests.series.methods.test_values', + 'pandas.tests.series.methods.test_view', + 'pandas.tests.series.test_api', + 'pandas.tests.series.test_arithmetic', + 'pandas.tests.series.test_constructors', + 'pandas.tests.series.test_cumulative', + 'pandas.tests.series.test_formats', + 'pandas.tests.series.test_iteration', + 'pandas.tests.series.test_logical_ops', + 'pandas.tests.series.test_missing', + 'pandas.tests.series.test_npfuncs', + 'pandas.tests.series.test_reductions', + 'pandas.tests.series.test_subclass', + 'pandas.tests.series.test_ufunc', + 'pandas.tests.series.test_unary', + 'pandas.tests.series.test_validate', + 'pandas.tests.strings', + 'pandas.tests.strings.conftest', + 'pandas.tests.strings.test_api', + 'pandas.tests.strings.test_case_justify', + 'pandas.tests.strings.test_cat', + 'pandas.tests.strings.test_extract', + 'pandas.tests.strings.test_find_replace', + 'pandas.tests.strings.test_get_dummies', + 'pandas.tests.strings.test_split_partition', + 'pandas.tests.strings.test_string_array', + 'pandas.tests.strings.test_strings', + 'pandas.tests.test_aggregation', + 'pandas.tests.test_algos', + 'pandas.tests.test_common', + 'pandas.tests.test_downstream', + 'pandas.tests.test_errors', + 'pandas.tests.test_expressions', + 'pandas.tests.test_flags', + 'pandas.tests.test_multilevel', + 'pandas.tests.test_nanops', + 'pandas.tests.test_optional_dependency', + 'pandas.tests.test_register_accessor', + 'pandas.tests.test_sorting', + 'pandas.tests.test_take', + 'pandas.tests.tools', + 'pandas.tests.tools.test_to_datetime', + 'pandas.tests.tools.test_to_numeric', + 'pandas.tests.tools.test_to_time', + 'pandas.tests.tools.test_to_timedelta', + 'pandas.tests.tseries', + 'pandas.tests.tseries.frequencies', + 'pandas.tests.tseries.frequencies.test_freq_code', + 'pandas.tests.tseries.frequencies.test_frequencies', + 'pandas.tests.tseries.frequencies.test_inference', + 'pandas.tests.tseries.holiday', + 'pandas.tests.tseries.holiday.test_calendar', + 'pandas.tests.tseries.holiday.test_federal', + 'pandas.tests.tseries.holiday.test_holiday', + 'pandas.tests.tseries.holiday.test_observance', + 'pandas.tests.tseries.offsets', + 'pandas.tests.tseries.offsets.common', + 'pandas.tests.tseries.offsets.test_business_day', + 'pandas.tests.tseries.offsets.test_business_hour', + 'pandas.tests.tseries.offsets.test_business_month', + 'pandas.tests.tseries.offsets.test_business_quarter', + 'pandas.tests.tseries.offsets.test_business_year', + 'pandas.tests.tseries.offsets.test_common', + 'pandas.tests.tseries.offsets.test_custom_business_day', + 'pandas.tests.tseries.offsets.test_custom_business_hour', + 'pandas.tests.tseries.offsets.test_custom_business_month', + 'pandas.tests.tseries.offsets.test_dst', + 'pandas.tests.tseries.offsets.test_easter', + 'pandas.tests.tseries.offsets.test_fiscal', + 'pandas.tests.tseries.offsets.test_index', + 'pandas.tests.tseries.offsets.test_month', + 'pandas.tests.tseries.offsets.test_offsets', + 'pandas.tests.tseries.offsets.test_offsets_properties', + 'pandas.tests.tseries.offsets.test_quarter', + 'pandas.tests.tseries.offsets.test_ticks', + 'pandas.tests.tseries.offsets.test_week', + 'pandas.tests.tseries.offsets.test_year', + 'pandas.tests.tslibs', + 'pandas.tests.tslibs.test_api', + 'pandas.tests.tslibs.test_array_to_datetime', + 'pandas.tests.tslibs.test_ccalendar', + 'pandas.tests.tslibs.test_conversion', + 'pandas.tests.tslibs.test_fields', + 'pandas.tests.tslibs.test_libfrequencies', + 'pandas.tests.tslibs.test_liboffsets', + 'pandas.tests.tslibs.test_np_datetime', + 'pandas.tests.tslibs.test_npy_units', + 'pandas.tests.tslibs.test_parse_iso8601', + 'pandas.tests.tslibs.test_parsing', + 'pandas.tests.tslibs.test_period', + 'pandas.tests.tslibs.test_resolution', + 'pandas.tests.tslibs.test_strptime', + 'pandas.tests.tslibs.test_timedeltas', + 'pandas.tests.tslibs.test_timezones', + 'pandas.tests.tslibs.test_to_offset', + 'pandas.tests.tslibs.test_tzconversion', + 'pandas.tests.util', + 'pandas.tests.util.conftest', + 'pandas.tests.util.test_assert_almost_equal', + 'pandas.tests.util.test_assert_attr_equal', + 'pandas.tests.util.test_assert_categorical_equal', + 'pandas.tests.util.test_assert_extension_array_equal', + 'pandas.tests.util.test_assert_frame_equal', + 'pandas.tests.util.test_assert_index_equal', + 'pandas.tests.util.test_assert_interval_array_equal', + 'pandas.tests.util.test_assert_numpy_array_equal', + 'pandas.tests.util.test_assert_produces_warning', + 'pandas.tests.util.test_assert_series_equal', + 'pandas.tests.util.test_deprecate', + 'pandas.tests.util.test_deprecate_kwarg', + 'pandas.tests.util.test_deprecate_nonkeyword_arguments', + 'pandas.tests.util.test_doc', + 'pandas.tests.util.test_hashing', + 'pandas.tests.util.test_numba', + 'pandas.tests.util.test_rewrite_warning', + 'pandas.tests.util.test_shares_memory', + 'pandas.tests.util.test_show_versions', + 'pandas.tests.util.test_util', + 'pandas.tests.util.test_validate_args', + 'pandas.tests.util.test_validate_args_and_kwargs', + 'pandas.tests.util.test_validate_inclusive', + 'pandas.tests.util.test_validate_kwargs', + 'pandas.tests.window', + 'pandas.tests.window.conftest', + 'pandas.tests.window.moments', + 'pandas.tests.window.moments.conftest', + 'pandas.tests.window.moments.test_moments_consistency_ewm', + 'pandas.tests.window.moments.test_moments_consistency_expanding', + 'pandas.tests.window.moments.test_moments_consistency_rolling', + 'pandas.tests.window.test_api', + 'pandas.tests.window.test_apply', + 'pandas.tests.window.test_base_indexer', + 'pandas.tests.window.test_cython_aggregations', + 'pandas.tests.window.test_dtypes', + 'pandas.tests.window.test_ewm', + 'pandas.tests.window.test_expanding', + 'pandas.tests.window.test_groupby', + 'pandas.tests.window.test_numba', + 'pandas.tests.window.test_online', + 'pandas.tests.window.test_pairwise', + 'pandas.tests.window.test_rolling', + 'pandas.tests.window.test_rolling_functions', + 'pandas.tests.window.test_rolling_quantile', + 'pandas.tests.window.test_rolling_skew_kurt', + 'pandas.tests.window.test_timeseries_window', + 'pandas.tests.window.test_win_type', + 'pandas.tseries', + 'pandas.tseries.api', + 'pandas.tseries.frequencies', + 'pandas.tseries.holiday', + 'pandas.tseries.offsets', + 'pandas.util', + 'pandas.util._decorators', + 'pandas.util._doctools', + 'pandas.util._exceptions', + 'pandas.util._print_versions', + 'pandas.util._test_decorators', + 'pandas.util._tester', + 'pandas.util._validators', + 'pandas.util.version', + 'openpyxl', + 'openpyxl._constants', + 'openpyxl.cell', + 'openpyxl.cell._writer', + 'openpyxl.cell.cell', + 'openpyxl.cell.read_only', + 'openpyxl.cell.rich_text', + 'openpyxl.cell.text', + 'openpyxl.chart', + 'openpyxl.chart._3d', + 'openpyxl.chart._chart', + 'openpyxl.chart.area_chart', + 'openpyxl.chart.axis', + 'openpyxl.chart.bar_chart', + 'openpyxl.chart.bubble_chart', + 'openpyxl.chart.chartspace', + 'openpyxl.chart.data_source', + 'openpyxl.chart.descriptors', + 'openpyxl.chart.error_bar', + 'openpyxl.chart.label', + 'openpyxl.chart.layout', + 'openpyxl.chart.legend', + 'openpyxl.chart.line_chart', + 'openpyxl.chart.marker', + 'openpyxl.chart.picture', + 'openpyxl.chart.pie_chart', + 'openpyxl.chart.pivot', + 'openpyxl.chart.plotarea', + 'openpyxl.chart.print_settings', + 'openpyxl.chart.radar_chart', + 'openpyxl.chart.reader', + 'openpyxl.chart.reference', + 'openpyxl.chart.scatter_chart', + 'openpyxl.chart.series', + 'openpyxl.chart.series_factory', + 'openpyxl.chart.shapes', + 'openpyxl.chart.stock_chart', + 'openpyxl.chart.surface_chart', + 'openpyxl.chart.text', + 'openpyxl.chart.title', + 'openpyxl.chart.trendline', + 'openpyxl.chart.updown_bars', + 'openpyxl.chartsheet', + 'openpyxl.chartsheet.chartsheet', + 'openpyxl.chartsheet.custom', + 'openpyxl.chartsheet.properties', + 'openpyxl.chartsheet.protection', + 'openpyxl.chartsheet.publish', + 'openpyxl.chartsheet.relation', + 'openpyxl.chartsheet.views', + 'openpyxl.comments', + 'openpyxl.comments.author', + 'openpyxl.comments.comment_sheet', + 'openpyxl.comments.comments', + 'openpyxl.comments.shape_writer', + 'openpyxl.compat', + 'openpyxl.compat.abc', + 'openpyxl.compat.numbers', + 'openpyxl.compat.product', + 'openpyxl.compat.singleton', + 'openpyxl.compat.strings', + 'openpyxl.descriptors', + 'openpyxl.descriptors.base', + 'openpyxl.descriptors.container', + 'openpyxl.descriptors.excel', + 'openpyxl.descriptors.namespace', + 'openpyxl.descriptors.nested', + 'openpyxl.descriptors.sequence', + 'openpyxl.descriptors.serialisable', + 'openpyxl.descriptors.slots', + 'openpyxl.drawing', + 'openpyxl.drawing.colors', + 'openpyxl.drawing.connector', + 'openpyxl.drawing.drawing', + 'openpyxl.drawing.effect', + 'openpyxl.drawing.fill', + 'openpyxl.drawing.geometry', + 'openpyxl.drawing.graphic', + 'openpyxl.drawing.image', + 'openpyxl.drawing.line', + 'openpyxl.drawing.picture', + 'openpyxl.drawing.properties', + 'openpyxl.drawing.relation', + 'openpyxl.drawing.spreadsheet_drawing', + 'openpyxl.drawing.text', + 'openpyxl.drawing.xdr', + 'openpyxl.formatting', + 'openpyxl.formatting.formatting', + 'openpyxl.formatting.rule', + 'openpyxl.formula', + 'openpyxl.formula.tokenizer', + 'openpyxl.formula.translate', + 'openpyxl.packaging', + 'openpyxl.packaging.core', + 'openpyxl.packaging.custom', + 'openpyxl.packaging.extended', + 'openpyxl.packaging.interface', + 'openpyxl.packaging.manifest', + 'openpyxl.packaging.relationship', + 'openpyxl.packaging.workbook', + 'openpyxl.pivot', + 'openpyxl.pivot.cache', + 'openpyxl.pivot.fields', + 'openpyxl.pivot.record', + 'openpyxl.pivot.table', + 'openpyxl.reader', + 'openpyxl.reader.drawings', + 'openpyxl.reader.excel', + 'openpyxl.reader.strings', + 'openpyxl.reader.workbook', + 'openpyxl.styles', + 'openpyxl.styles.alignment', + 'openpyxl.styles.borders', + 'openpyxl.styles.builtins', + 'openpyxl.styles.cell_style', + 'openpyxl.styles.colors', + 'openpyxl.styles.differential', + 'openpyxl.styles.fills', + 'openpyxl.styles.fonts', + 'openpyxl.styles.named_styles', + 'openpyxl.styles.numbers', + 'openpyxl.styles.protection', + 'openpyxl.styles.proxy', + 'openpyxl.styles.styleable', + 'openpyxl.styles.stylesheet', + 'openpyxl.styles.table', + 'openpyxl.utils', + 'openpyxl.utils.bound_dictionary', + 'openpyxl.utils.cell', + 'openpyxl.utils.dataframe', + 'openpyxl.utils.datetime', + 'openpyxl.utils.escape', + 'openpyxl.utils.exceptions', + 'openpyxl.utils.formulas', + 'openpyxl.utils.indexed_list', + 'openpyxl.utils.inference', + 'openpyxl.utils.protection', + 'openpyxl.utils.units', + 'openpyxl.workbook', + 'openpyxl.workbook._writer', + 'openpyxl.workbook.child', + 'openpyxl.workbook.defined_name', + 'openpyxl.workbook.external_link', + 'openpyxl.workbook.external_link.external', + 'openpyxl.workbook.external_reference', + 'openpyxl.workbook.function_group', + 'openpyxl.workbook.properties', + 'openpyxl.workbook.protection', + 'openpyxl.workbook.smart_tags', + 'openpyxl.workbook.views', + 'openpyxl.workbook.web', + 'openpyxl.workbook.workbook', + 'openpyxl.worksheet', + 'openpyxl.worksheet._read_only', + 'openpyxl.worksheet._reader', + 'openpyxl.worksheet._write_only', + 'openpyxl.worksheet._writer', + 'openpyxl.worksheet.cell_range', + 'openpyxl.worksheet.cell_watch', + 'openpyxl.worksheet.controls', + 'openpyxl.worksheet.copier', + 'openpyxl.worksheet.custom', + 'openpyxl.worksheet.datavalidation', + 'openpyxl.worksheet.dimensions', + 'openpyxl.worksheet.drawing', + 'openpyxl.worksheet.errors', + 'openpyxl.worksheet.filters', + 'openpyxl.worksheet.formula', + 'openpyxl.worksheet.header_footer', + 'openpyxl.worksheet.hyperlink', + 'openpyxl.worksheet.merge', + 'openpyxl.worksheet.ole', + 'openpyxl.worksheet.page', + 'openpyxl.worksheet.pagebreak', + 'openpyxl.worksheet.picture', + 'openpyxl.worksheet.print_settings', + 'openpyxl.worksheet.properties', + 'openpyxl.worksheet.protection', + 'openpyxl.worksheet.related', + 'openpyxl.worksheet.scenario', + 'openpyxl.worksheet.smart_tag', + 'openpyxl.worksheet.table', + 'openpyxl.worksheet.views', + 'openpyxl.worksheet.worksheet', + 'openpyxl.writer', + 'openpyxl.writer.excel', + 'openpyxl.writer.theme', + 'openpyxl.xml', + 'openpyxl.xml.constants', + 'openpyxl.xml.functions', + 'ldap3', + 'ldap3.abstract', + 'ldap3.abstract.attrDef', + 'ldap3.abstract.attribute', + 'ldap3.abstract.cursor', + 'ldap3.abstract.entry', + 'ldap3.abstract.objectDef', + 'ldap3.core', + 'ldap3.core.connection', + 'ldap3.core.exceptions', + 'ldap3.core.pooling', + 'ldap3.core.rdns', + 'ldap3.core.results', + 'ldap3.core.server', + 'ldap3.core.timezone', + 'ldap3.core.tls', + 'ldap3.core.usage', + 'ldap3.extend', + 'ldap3.extend.microsoft', + 'ldap3.extend.microsoft.addMembersToGroups', + 'ldap3.extend.microsoft.dirSync', + 'ldap3.extend.microsoft.modifyPassword', + 'ldap3.extend.microsoft.persistentSearch', + 'ldap3.extend.microsoft.removeMembersFromGroups', + 'ldap3.extend.microsoft.unlockAccount', + 'ldap3.extend.novell', + 'ldap3.extend.novell.addMembersToGroups', + 'ldap3.extend.novell.checkGroupsMemberships', + 'ldap3.extend.novell.endTransaction', + 'ldap3.extend.novell.getBindDn', + 'ldap3.extend.novell.listReplicas', + 'ldap3.extend.novell.nmasGetUniversalPassword', + 'ldap3.extend.novell.nmasSetUniversalPassword', + 'ldap3.extend.novell.partition_entry_count', + 'ldap3.extend.novell.removeMembersFromGroups', + 'ldap3.extend.novell.replicaInfo', + 'ldap3.extend.novell.startTransaction', + 'ldap3.extend.operation', + 'ldap3.extend.standard', + 'ldap3.extend.standard.PagedSearch', + 'ldap3.extend.standard.PersistentSearch', + 'ldap3.extend.standard.modifyPassword', + 'ldap3.extend.standard.whoAmI', + 'ldap3.operation', + 'ldap3.operation.abandon', + 'ldap3.operation.add', + 'ldap3.operation.bind', + 'ldap3.operation.compare', + 'ldap3.operation.delete', + 'ldap3.operation.extended', + 'ldap3.operation.modify', + 'ldap3.operation.modifyDn', + 'ldap3.operation.search', + 'ldap3.operation.unbind', + 'ldap3.protocol', + 'ldap3.protocol.controls', + 'ldap3.protocol.convert', + 'ldap3.protocol.formatters', + 'ldap3.protocol.formatters.formatters', + 'ldap3.protocol.formatters.standard', + 'ldap3.protocol.formatters.validators', + 'ldap3.protocol.microsoft', + 'ldap3.protocol.novell', + 'ldap3.protocol.oid', + 'ldap3.protocol.persistentSearch', + 'ldap3.protocol.rfc2696', + 'ldap3.protocol.rfc2849', + 'ldap3.protocol.rfc3062', + 'ldap3.protocol.rfc4511', + 'ldap3.protocol.rfc4512', + 'ldap3.protocol.rfc4527', + 'ldap3.protocol.sasl', + 'ldap3.protocol.sasl.digestMd5', + 'ldap3.protocol.sasl.external', + 'ldap3.protocol.sasl.kerberos', + 'ldap3.protocol.sasl.plain', + 'ldap3.protocol.sasl.sasl', + 'ldap3.protocol.schemas', + 'ldap3.protocol.schemas.ad2012R2', + 'ldap3.protocol.schemas.ds389', + 'ldap3.protocol.schemas.edir888', + 'ldap3.protocol.schemas.edir914', + 'ldap3.protocol.schemas.slapd24', + 'ldap3.strategy', + 'ldap3.strategy.asyncStream', + 'ldap3.strategy.asynchronous', + 'ldap3.strategy.base', + 'ldap3.strategy.ldifProducer', + 'ldap3.strategy.mockAsync', + 'ldap3.strategy.mockBase', + 'ldap3.strategy.mockSync', + 'ldap3.strategy.restartable', + 'ldap3.strategy.reusable', + 'ldap3.strategy.safeRestartable', + 'ldap3.strategy.safeSync', + 'ldap3.strategy.sync', + 'ldap3.utils', + 'ldap3.utils.asn1', + 'ldap3.utils.ciDict', + 'ldap3.utils.config', + 'ldap3.utils.conv', + 'ldap3.utils.dn', + 'ldap3.utils.hashed', + 'ldap3.utils.log', + 'ldap3.utils.ntlm', + 'ldap3.utils.ordDict', + 'ldap3.utils.port_validators', + 'ldap3.utils.repr', + 'ldap3.utils.tls_backport', + 'ldap3.utils.uri', + 'ldap3.version'], + [('/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/playwright/_impl/__pyinstaller', + 0), + ('/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_pyinstaller', + 0), + ('/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/_pyinstaller_hooks_contrib/stdhooks', + -1000), + ('/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/_pyinstaller_hooks_contrib', + -1000)], + {}, + [], + [], + False, + {}, + 0, + [], + [('config/config.yaml.example', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/config/config.yaml.example', + 'DATA')], + '3.12.9 | packaged by Anaconda, Inc. | (main, Feb 6 2025, 12:55:12) [Clang ' + '14.0.6 ]', + [('pyi_rth_inspect', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PyInstaller/hooks/rthooks/pyi_rth_inspect.py', + 'PYSOURCE'), + ('pyi_rth_pkgutil', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py', + 'PYSOURCE'), + ('pyi_rth_multiprocessing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PyInstaller/hooks/rthooks/pyi_rth_multiprocessing.py', + 'PYSOURCE'), + ('pyi_rth_setuptools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PyInstaller/hooks/rthooks/pyi_rth_setuptools.py', + 'PYSOURCE'), + ('pyi_rth_pkgres', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgres.py', + 'PYSOURCE'), + ('pyi_rth_cryptography_openssl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/_pyinstaller_hooks_contrib/rthooks/pyi_rth_cryptography_openssl.py', + 'PYSOURCE'), + ('entry', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/entry.py', + 'PYSOURCE')], + [('pkg_resources', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pkg_resources/__init__.py', + 'PYMODULE'), + ('packaging.tags', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/tags.py', + 'PYMODULE'), + ('subprocess', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/subprocess.py', + 'PYMODULE'), + ('signal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/signal.py', + 'PYMODULE'), + ('selectors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/selectors.py', + 'PYMODULE'), + ('contextlib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/contextlib.py', + 'PYMODULE'), + ('threading', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/threading.py', + 'PYMODULE'), + ('_threading_local', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_threading_local.py', + 'PYMODULE'), + ('struct', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/struct.py', + 'PYMODULE'), + ('logging', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/logging/__init__.py', + 'PYMODULE'), + ('pickle', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/pickle.py', + 'PYMODULE'), + ('pprint', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/pprint.py', + 'PYMODULE'), + ('dataclasses', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/dataclasses.py', + 'PYMODULE'), + ('copy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/copy.py', + 'PYMODULE'), + ('_compat_pickle', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_compat_pickle.py', + 'PYMODULE'), + ('string', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/string.py', + 'PYMODULE'), + ('packaging.metadata', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/metadata.py', + 'PYMODULE'), + ('email.policy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/policy.py', + 'PYMODULE'), + ('email', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/__init__.py', + 'PYMODULE'), + ('email._header_value_parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/_header_value_parser.py', + 'PYMODULE'), + ('email._encoded_words', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/_encoded_words.py', + 'PYMODULE'), + ('base64', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/base64.py', + 'PYMODULE'), + ('getopt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/getopt.py', + 'PYMODULE'), + ('gettext', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/gettext.py', + 'PYMODULE'), + ('urllib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/urllib/__init__.py', + 'PYMODULE'), + ('email.charset', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/charset.py', + 'PYMODULE'), + ('email.encoders', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/encoders.py', + 'PYMODULE'), + ('quopri', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/quopri.py', + 'PYMODULE'), + ('email.quoprimime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/quoprimime.py', + 'PYMODULE'), + ('email.base64mime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/base64mime.py', + 'PYMODULE'), + ('email.errors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/errors.py', + 'PYMODULE'), + ('email.contentmanager', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/contentmanager.py', + 'PYMODULE'), + ('email.headerregistry', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/headerregistry.py', + 'PYMODULE'), + ('email.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/utils.py', + 'PYMODULE'), + ('email._parseaddr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/_parseaddr.py', + 'PYMODULE'), + ('calendar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/calendar.py', + 'PYMODULE'), + ('argparse', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/argparse.py', + 'PYMODULE'), + ('shutil', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/shutil.py', + 'PYMODULE'), + ('tarfile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/tarfile.py', + 'PYMODULE'), + ('gzip', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/gzip.py', + 'PYMODULE'), + ('_compression', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_compression.py', + 'PYMODULE'), + ('lzma', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lzma.py', + 'PYMODULE'), + ('bz2', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/bz2.py', + 'PYMODULE'), + ('fnmatch', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/fnmatch.py', + 'PYMODULE'), + ('urllib.parse', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/urllib/parse.py', + 'PYMODULE'), + ('ipaddress', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ipaddress.py', + 'PYMODULE'), + ('datetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/datetime.py', + 'PYMODULE'), + ('_pydatetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_pydatetime.py', + 'PYMODULE'), + ('_strptime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_strptime.py', + 'PYMODULE'), + ('socket', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/socket.py', + 'PYMODULE'), + ('random', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/random.py', + 'PYMODULE'), + ('statistics', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/statistics.py', + 'PYMODULE'), + ('decimal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/decimal.py', + 'PYMODULE'), + ('_pydecimal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_pydecimal.py', + 'PYMODULE'), + ('contextvars', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/contextvars.py', + 'PYMODULE'), + ('fractions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/fractions.py', + 'PYMODULE'), + ('numbers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/numbers.py', + 'PYMODULE'), + ('hashlib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/hashlib.py', + 'PYMODULE'), + ('bisect', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/bisect.py', + 'PYMODULE'), + ('email._policybase', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/_policybase.py', + 'PYMODULE'), + ('email.message', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/message.py', + 'PYMODULE'), + ('email.iterators', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/iterators.py', + 'PYMODULE'), + ('email.generator', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/generator.py', + 'PYMODULE'), + ('email.header', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/header.py', + 'PYMODULE'), + ('email.feedparser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/feedparser.py', + 'PYMODULE'), + ('packaging.licenses._spdx', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/licenses/_spdx.py', + 'PYMODULE'), + ('packaging.licenses', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/licenses/__init__.py', + 'PYMODULE'), + ('packaging._tokenizer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/_tokenizer.py', + 'PYMODULE'), + ('packaging._structures', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/_structures.py', + 'PYMODULE'), + ('packaging._parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/_parser.py', + 'PYMODULE'), + ('ast', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ast.py', + 'PYMODULE'), + ('packaging._musllinux', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/_musllinux.py', + 'PYMODULE'), + ('packaging._manylinux', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/_manylinux.py', + 'PYMODULE'), + ('ctypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ctypes/__init__.py', + 'PYMODULE'), + ('ctypes._endian', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ctypes/_endian.py', + 'PYMODULE'), + ('packaging._elffile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/_elffile.py', + 'PYMODULE'), + ('packaging', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/__init__.py', + 'PYMODULE'), + ('sysconfig', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/sysconfig.py', + 'PYMODULE'), + ('_sysconfigdata__darwin_darwin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_sysconfigdata__darwin_darwin.py', + 'PYMODULE'), + ('_aix_support', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_aix_support.py', + 'PYMODULE'), + ('_osx_support', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_osx_support.py', + 'PYMODULE'), + ('typing_extensions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/typing_extensions.py', + 'PYMODULE'), + ('platformdirs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/platformdirs/__init__.py', + 'PYMODULE'), + ('platformdirs.android', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/platformdirs/android.py', + 'PYMODULE'), + ('platformdirs.unix', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/platformdirs/unix.py', + 'PYMODULE'), + ('configparser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/configparser.py', + 'PYMODULE'), + ('platformdirs.macos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/platformdirs/macos.py', + 'PYMODULE'), + ('platformdirs.windows', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/platformdirs/windows.py', + 'PYMODULE'), + ('platformdirs.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/platformdirs/version.py', + 'PYMODULE'), + ('platformdirs.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/platformdirs/api.py', + 'PYMODULE'), + ('setuptools._vendor.jaraco.text', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__init__.py', + 'PYMODULE'), + ('setuptools._vendor.jaraco', '-', 'PYMODULE'), + ('setuptools._vendor', '-', 'PYMODULE'), + ('setuptools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/__init__.py', + 'PYMODULE'), + ('setuptools.msvc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/msvc.py', + 'PYMODULE'), + ('setuptools._vendor.more_itertools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__init__.py', + 'PYMODULE'), + ('setuptools._vendor.more_itertools.recipes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/recipes.py', + 'PYMODULE'), + ('setuptools._vendor.more_itertools.more', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/more.py', + 'PYMODULE'), + ('queue', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/queue.py', + 'PYMODULE'), + ('json', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/json/__init__.py', + 'PYMODULE'), + ('json.encoder', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/json/encoder.py', + 'PYMODULE'), + ('json.decoder', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/json/decoder.py', + 'PYMODULE'), + ('json.scanner', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/json/scanner.py', + 'PYMODULE'), + ('setuptools._distutils.command.build_ext', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/command/build_ext.py', + 'PYMODULE'), + ('setuptools._distutils.command', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/command/__init__.py', + 'PYMODULE'), + ('setuptools._distutils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/__init__.py', + 'PYMODULE'), + ('setuptools._distutils.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/version.py', + 'PYMODULE'), + ('setuptools._distutils.archive_util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/archive_util.py', + 'PYMODULE'), + ('setuptools._distutils.spawn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/spawn.py', + 'PYMODULE'), + ('setuptools._distutils.debug', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/debug.py', + 'PYMODULE'), + ('setuptools._distutils.dir_util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/dir_util.py', + 'PYMODULE'), + ('setuptools._distutils.file_util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/file_util.py', + 'PYMODULE'), + ('setuptools._distutils._msvccompiler', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/_msvccompiler.py', + 'PYMODULE'), + ('unittest.mock', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/mock.py', + 'PYMODULE'), + ('unittest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/__init__.py', + 'PYMODULE'), + ('unittest.async_case', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/async_case.py', + 'PYMODULE'), + ('unittest.signals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/signals.py', + 'PYMODULE'), + ('unittest.main', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/main.py', + 'PYMODULE'), + ('unittest.runner', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/runner.py', + 'PYMODULE'), + ('unittest.loader', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/loader.py', + 'PYMODULE'), + ('unittest.suite', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/suite.py', + 'PYMODULE'), + ('unittest.case', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/case.py', + 'PYMODULE'), + ('unittest._log', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/_log.py', + 'PYMODULE'), + ('difflib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/difflib.py', + 'PYMODULE'), + ('unittest.result', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/result.py', + 'PYMODULE'), + ('unittest.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/util.py', + 'PYMODULE'), + ('asyncio', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/__init__.py', + 'PYMODULE'), + ('asyncio.unix_events', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/unix_events.py', + 'PYMODULE'), + ('asyncio.log', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/log.py', + 'PYMODULE'), + ('asyncio.windows_events', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/windows_events.py', + 'PYMODULE'), + ('asyncio.windows_utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/windows_utils.py', + 'PYMODULE'), + ('asyncio.selector_events', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/selector_events.py', + 'PYMODULE'), + ('ssl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ssl.py', + 'PYMODULE'), + ('asyncio.proactor_events', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/proactor_events.py', + 'PYMODULE'), + ('asyncio.base_subprocess', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/base_subprocess.py', + 'PYMODULE'), + ('asyncio.threads', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/threads.py', + 'PYMODULE'), + ('asyncio.taskgroups', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/taskgroups.py', + 'PYMODULE'), + ('asyncio.subprocess', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/subprocess.py', + 'PYMODULE'), + ('asyncio.streams', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/streams.py', + 'PYMODULE'), + ('asyncio.queues', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/queues.py', + 'PYMODULE'), + ('asyncio.runners', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/runners.py', + 'PYMODULE'), + ('asyncio.base_events', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/base_events.py', + 'PYMODULE'), + ('asyncio.trsock', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/trsock.py', + 'PYMODULE'), + ('asyncio.staggered', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/staggered.py', + 'PYMODULE'), + ('asyncio.timeouts', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/timeouts.py', + 'PYMODULE'), + ('asyncio.tasks', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/tasks.py', + 'PYMODULE'), + ('asyncio.base_tasks', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/base_tasks.py', + 'PYMODULE'), + ('asyncio.locks', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/locks.py', + 'PYMODULE'), + ('asyncio.mixins', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/mixins.py', + 'PYMODULE'), + ('asyncio.sslproto', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/sslproto.py', + 'PYMODULE'), + ('asyncio.transports', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/transports.py', + 'PYMODULE'), + ('asyncio.protocols', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/protocols.py', + 'PYMODULE'), + ('asyncio.futures', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/futures.py', + 'PYMODULE'), + ('asyncio.base_futures', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/base_futures.py', + 'PYMODULE'), + ('asyncio.exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/exceptions.py', + 'PYMODULE'), + ('asyncio.events', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/events.py', + 'PYMODULE'), + ('asyncio.format_helpers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/format_helpers.py', + 'PYMODULE'), + ('asyncio.coroutines', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/coroutines.py', + 'PYMODULE'), + ('asyncio.constants', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/constants.py', + 'PYMODULE'), + ('concurrent.futures', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/concurrent/futures/__init__.py', + 'PYMODULE'), + ('concurrent.futures.thread', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/concurrent/futures/thread.py', + 'PYMODULE'), + ('concurrent.futures.process', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/concurrent/futures/process.py', + 'PYMODULE'), + ('multiprocessing.synchronize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/synchronize.py', + 'PYMODULE'), + ('multiprocessing.heap', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/heap.py', + 'PYMODULE'), + ('multiprocessing.resource_tracker', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/resource_tracker.py', + 'PYMODULE'), + ('multiprocessing.spawn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/spawn.py', + 'PYMODULE'), + ('runpy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/runpy.py', + 'PYMODULE'), + ('importlib.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/util.py', + 'PYMODULE'), + ('importlib._bootstrap_external', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/_bootstrap_external.py', + 'PYMODULE'), + ('importlib.metadata', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/metadata/__init__.py', + 'PYMODULE'), + ('importlib.metadata._itertools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/metadata/_itertools.py', + 'PYMODULE'), + ('importlib.metadata._functools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/metadata/_functools.py', + 'PYMODULE'), + ('importlib.metadata._collections', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/metadata/_collections.py', + 'PYMODULE'), + ('importlib.metadata._meta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/metadata/_meta.py', + 'PYMODULE'), + ('importlib.metadata._adapters', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/metadata/_adapters.py', + 'PYMODULE'), + ('importlib.metadata._text', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/metadata/_text.py', + 'PYMODULE'), + ('csv', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/csv.py', + 'PYMODULE'), + ('importlib.readers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/readers.py', + 'PYMODULE'), + ('importlib.resources.readers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/resources/readers.py', + 'PYMODULE'), + ('importlib.resources._itertools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/resources/_itertools.py', + 'PYMODULE'), + ('importlib.resources.abc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/resources/abc.py', + 'PYMODULE'), + ('tokenize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/tokenize.py', + 'PYMODULE'), + ('token', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/token.py', + 'PYMODULE'), + ('importlib._bootstrap', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/_bootstrap.py', + 'PYMODULE'), + ('importlib._abc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/_abc.py', + 'PYMODULE'), + ('multiprocessing.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/util.py', + 'PYMODULE'), + ('multiprocessing.forkserver', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/forkserver.py', + 'PYMODULE'), + ('multiprocessing.process', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/process.py', + 'PYMODULE'), + ('multiprocessing.context', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/context.py', + 'PYMODULE'), + ('multiprocessing.popen_spawn_win32', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/popen_spawn_win32.py', + 'PYMODULE'), + ('multiprocessing.popen_forkserver', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/popen_forkserver.py', + 'PYMODULE'), + ('multiprocessing.popen_spawn_posix', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/popen_spawn_posix.py', + 'PYMODULE'), + ('multiprocessing.popen_fork', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/popen_fork.py', + 'PYMODULE'), + ('multiprocessing.sharedctypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/sharedctypes.py', + 'PYMODULE'), + ('multiprocessing.pool', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/pool.py', + 'PYMODULE'), + ('multiprocessing.dummy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/dummy/__init__.py', + 'PYMODULE'), + ('multiprocessing.dummy.connection', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/dummy/connection.py', + 'PYMODULE'), + ('multiprocessing.managers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/managers.py', + 'PYMODULE'), + ('multiprocessing.shared_memory', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/shared_memory.py', + 'PYMODULE'), + ('secrets', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/secrets.py', + 'PYMODULE'), + ('hmac', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/hmac.py', + 'PYMODULE'), + ('multiprocessing.reduction', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/reduction.py', + 'PYMODULE'), + ('multiprocessing.resource_sharer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/resource_sharer.py', + 'PYMODULE'), + ('multiprocessing.queues', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/queues.py', + 'PYMODULE'), + ('multiprocessing.connection', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/connection.py', + 'PYMODULE'), + ('xmlrpc.client', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xmlrpc/client.py', + 'PYMODULE'), + ('xmlrpc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xmlrpc/__init__.py', + 'PYMODULE'), + ('xmlrpc.server', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xmlrpc/server.py', + 'PYMODULE'), + ('pydoc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/pydoc.py', + 'PYMODULE'), + ('webbrowser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/webbrowser.py', + 'PYMODULE'), + ('shlex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/shlex.py', + 'PYMODULE'), + ('pydoc_data.topics', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/pydoc_data/topics.py', + 'PYMODULE'), + ('pydoc_data', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/pydoc_data/__init__.py', + 'PYMODULE'), + ('tty', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/tty.py', + 'PYMODULE'), + ('socketserver', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/socketserver.py', + 'PYMODULE'), + ('html', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/html/__init__.py', + 'PYMODULE'), + ('html.entities', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/html/entities.py', + 'PYMODULE'), + ('http.server', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/http/server.py', + 'PYMODULE'), + ('http', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/http/__init__.py', + 'PYMODULE'), + ('mimetypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/mimetypes.py', + 'PYMODULE'), + ('xml.parsers.expat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/parsers/expat.py', + 'PYMODULE'), + ('xml.parsers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/parsers/__init__.py', + 'PYMODULE'), + ('xml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/__init__.py', + 'PYMODULE'), + ('xml.sax.expatreader', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/sax/expatreader.py', + 'PYMODULE'), + ('xml.sax.saxutils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/sax/saxutils.py', + 'PYMODULE'), + ('urllib.request', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/urllib/request.py', + 'PYMODULE'), + ('getpass', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/getpass.py', + 'PYMODULE'), + ('nturl2path', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/nturl2path.py', + 'PYMODULE'), + ('ftplib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ftplib.py', + 'PYMODULE'), + ('netrc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/netrc.py', + 'PYMODULE'), + ('http.cookiejar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/http/cookiejar.py', + 'PYMODULE'), + ('urllib.response', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/urllib/response.py', + 'PYMODULE'), + ('urllib.error', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/urllib/error.py', + 'PYMODULE'), + ('xml.sax', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/sax/__init__.py', + 'PYMODULE'), + ('xml.sax.handler', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/sax/handler.py', + 'PYMODULE'), + ('xml.sax._exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/sax/_exceptions.py', + 'PYMODULE'), + ('xml.sax.xmlreader', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/sax/xmlreader.py', + 'PYMODULE'), + ('http.client', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/http/client.py', + 'PYMODULE'), + ('multiprocessing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/__init__.py', + 'PYMODULE'), + ('concurrent.futures._base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/concurrent/futures/_base.py', + 'PYMODULE'), + ('concurrent', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/concurrent/__init__.py', + 'PYMODULE'), + ('setuptools._distutils.ccompiler', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/ccompiler.py', + 'PYMODULE'), + ('setuptools._distutils.fancy_getopt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/fancy_getopt.py', + 'PYMODULE'), + ('setuptools._distutils.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/util.py', + 'PYMODULE'), + ('py_compile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/py_compile.py', + 'PYMODULE'), + ('setuptools._distutils.sysconfig', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/sysconfig.py', + 'PYMODULE'), + ('setuptools._distutils.text_file', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/text_file.py', + 'PYMODULE'), + ('setuptools._distutils.compat.py39', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/compat/py39.py', + 'PYMODULE'), + ('setuptools._distutils.compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/compat/__init__.py', + 'PYMODULE'), + ('setuptools._distutils.extension', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/extension.py', + 'PYMODULE'), + ('setuptools._distutils._modified', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/_modified.py', + 'PYMODULE'), + ('site', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site.py', + 'PYMODULE'), + ('rlcompleter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/rlcompleter.py', + 'PYMODULE'), + ('_sitebuiltins', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_sitebuiltins.py', + 'PYMODULE'), + ('setuptools._distutils._log', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/_log.py', + 'PYMODULE'), + ('setuptools._distutils.errors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/errors.py', + 'PYMODULE'), + ('setuptools._distutils.core', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/core.py', + 'PYMODULE'), + ('setuptools._distutils.dist', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/dist.py', + 'PYMODULE'), + ('setuptools._distutils.versionpredicate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/versionpredicate.py', + 'PYMODULE'), + ('setuptools._distutils.cmd', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/cmd.py', + 'PYMODULE'), + ('setuptools.warnings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/warnings.py', + 'PYMODULE'), + ('setuptools.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/version.py', + 'PYMODULE'), + ('setuptools._importlib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_importlib.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__init__.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._adapters', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._text', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_text.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._itertools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._functools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_functools.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_compat.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._collections', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_collections.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata.compat.py311', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py311.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata.compat.py39', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py39.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata.compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__init__.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._meta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_meta.py', + 'PYMODULE'), + ('setuptools._vendor.zipp', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/zipp/__init__.py', + 'PYMODULE'), + ('setuptools._vendor.zipp.glob', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/zipp/glob.py', + 'PYMODULE'), + ('setuptools._vendor.zipp.compat.py310', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/py310.py', + 'PYMODULE'), + ('setuptools._vendor.zipp.compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__init__.py', + 'PYMODULE'), + ('setuptools.extension', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/extension.py', + 'PYMODULE'), + ('setuptools._path', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_path.py', + 'PYMODULE'), + ('setuptools.dist', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/dist.py', + 'PYMODULE'), + ('setuptools.command.bdist_wheel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/command/bdist_wheel.py', + 'PYMODULE'), + ('wheel.macosx_libfile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/macosx_libfile.py', + 'PYMODULE'), + ('wheel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/__init__.py', + 'PYMODULE'), + ('setuptools.command.egg_info', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/command/egg_info.py', + 'PYMODULE'), + ('setuptools._distutils.filelist', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/filelist.py', + 'PYMODULE'), + ('setuptools.command._requirestxt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/command/_requirestxt.py', + 'PYMODULE'), + ('setuptools.glob', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/glob.py', + 'PYMODULE'), + ('setuptools.command.setopt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/command/setopt.py', + 'PYMODULE'), + ('setuptools.command.sdist', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/command/sdist.py', + 'PYMODULE'), + ('setuptools._distutils.command.sdist', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/command/sdist.py', + 'PYMODULE'), + ('setuptools.command.build', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/command/build.py', + 'PYMODULE'), + ('setuptools._distutils.command.build', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/command/build.py', + 'PYMODULE'), + ('setuptools.command.bdist_egg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/command/bdist_egg.py', + 'PYMODULE'), + ('setuptools.unicode_utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/unicode_utils.py', + 'PYMODULE'), + ('setuptools.compat.py39', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/compat/py39.py', + 'PYMODULE'), + ('setuptools.compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/compat/__init__.py', + 'PYMODULE'), + ('setuptools.compat.py311', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/compat/py311.py', + 'PYMODULE'), + ('wheel.wheelfile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/wheelfile.py', + 'PYMODULE'), + ('wheel.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/util.py', + 'PYMODULE'), + ('wheel.cli', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/cli/__init__.py', + 'PYMODULE'), + ('wheel.cli.tags', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/cli/tags.py', + 'PYMODULE'), + ('wheel.cli.convert', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/cli/convert.py', + 'PYMODULE'), + ('wheel.vendored.packaging.tags', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/tags.py', + 'PYMODULE'), + ('wheel.vendored.packaging._musllinux', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/_musllinux.py', + 'PYMODULE'), + ('wheel.vendored.packaging._elffile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/_elffile.py', + 'PYMODULE'), + ('wheel.vendored.packaging._manylinux', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/_manylinux.py', + 'PYMODULE'), + ('wheel.vendored.packaging', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/__init__.py', + 'PYMODULE'), + ('wheel.vendored', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/__init__.py', + 'PYMODULE'), + ('wheel.metadata', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/metadata.py', + 'PYMODULE'), + ('wheel.vendored.packaging.requirements', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/requirements.py', + 'PYMODULE'), + ('wheel.vendored.packaging.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/utils.py', + 'PYMODULE'), + ('wheel.vendored.packaging.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/version.py', + 'PYMODULE'), + ('wheel.vendored.packaging._structures', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/_structures.py', + 'PYMODULE'), + ('wheel.vendored.packaging.specifiers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/specifiers.py', + 'PYMODULE'), + ('wheel.vendored.packaging.markers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/markers.py', + 'PYMODULE'), + ('wheel.vendored.packaging._tokenizer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/_tokenizer.py', + 'PYMODULE'), + ('wheel.vendored.packaging._parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/_parser.py', + 'PYMODULE'), + ('wheel.cli.pack', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/cli/pack.py', + 'PYMODULE'), + ('wheel.cli.unpack', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/cli/unpack.py', + 'PYMODULE'), + ('setuptools.installer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/installer.py', + 'PYMODULE'), + ('setuptools.wheel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/wheel.py', + 'PYMODULE'), + ('setuptools.archive_util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/archive_util.py', + 'PYMODULE'), + ('setuptools._distutils.log', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/log.py', + 'PYMODULE'), + ('setuptools.config.setupcfg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/config/setupcfg.py', + 'PYMODULE'), + ('setuptools.config.expand', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/config/expand.py', + 'PYMODULE'), + ('setuptools.errors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/errors.py', + 'PYMODULE'), + ('setuptools.config.pyprojecttoml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/config/pyprojecttoml.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__init__.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject.fastjsonschema_validations', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject.fastjsonschema_exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject.extra_validations', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/extra_validations.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject.error_reporting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/error_reporting.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject.formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/formats.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.requirements', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/requirements.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/utils.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/version.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._structures', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/_structures.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.tags', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/tags.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._musllinux', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/_musllinux.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._elffile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/_elffile.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._manylinux', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/_manylinux.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.specifiers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/specifiers.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.markers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/markers.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._tokenizer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/_tokenizer.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/_parser.py', + 'PYMODULE'), + ('setuptools._vendor.packaging', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/__init__.py', + 'PYMODULE'), + ('setuptools.compat.py310', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/compat/py310.py', + 'PYMODULE'), + ('setuptools._vendor.tomli', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/tomli/__init__.py', + 'PYMODULE'), + ('setuptools._vendor.tomli._parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/tomli/_parser.py', + 'PYMODULE'), + ('setuptools._vendor.tomli._types', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/tomli/_types.py', + 'PYMODULE'), + ('setuptools._vendor.tomli._re', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/tomli/_re.py', + 'PYMODULE'), + ('tomllib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/tomllib/__init__.py', + 'PYMODULE'), + ('tomllib._parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/tomllib/_parser.py', + 'PYMODULE'), + ('tomllib._types', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/tomllib/_types.py', + 'PYMODULE'), + ('tomllib._re', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/tomllib/_re.py', + 'PYMODULE'), + ('setuptools.config._apply_pyprojecttoml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py', + 'PYMODULE'), + ('setuptools.config', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/config/__init__.py', + 'PYMODULE'), + ('setuptools._static', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_static.py', + 'PYMODULE'), + ('glob', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/glob.py', + 'PYMODULE'), + ('setuptools._shutil', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_shutil.py', + 'PYMODULE'), + ('setuptools.windows_support', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/windows_support.py', + 'PYMODULE'), + ('ctypes.wintypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ctypes/wintypes.py', + 'PYMODULE'), + ('setuptools.command', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/command/__init__.py', + 'PYMODULE'), + ('setuptools._distutils.command.bdist', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/command/bdist.py', + 'PYMODULE'), + ('setuptools._entry_points', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_entry_points.py', + 'PYMODULE'), + ('setuptools._itertools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_itertools.py', + 'PYMODULE'), + ('setuptools.discovery', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/discovery.py', + 'PYMODULE'), + ('setuptools.depends', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/depends.py', + 'PYMODULE'), + ('dis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/dis.py', + 'PYMODULE'), + ('opcode', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/opcode.py', + 'PYMODULE'), + ('setuptools._imp', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_imp.py', + 'PYMODULE'), + ('setuptools.logging', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/logging.py', + 'PYMODULE'), + ('setuptools.monkey', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/monkey.py', + 'PYMODULE'), + ('setuptools._core_metadata', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_core_metadata.py', + 'PYMODULE'), + ('setuptools._reqs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_reqs.py', + 'PYMODULE'), + ('setuptools._normalization', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_normalization.py', + 'PYMODULE'), + ('_distutils_hack.override', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/_distutils_hack/override.py', + 'PYMODULE'), + ('_distutils_hack', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/_distutils_hack/__init__.py', + 'PYMODULE'), + ('setuptools._vendor.jaraco.context', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/jaraco/context.py', + 'PYMODULE'), + ('setuptools._vendor.backports.tarfile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__init__.py', + 'PYMODULE'), + ('setuptools._vendor.backports', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/backports/__init__.py', + 'PYMODULE'), + ('setuptools._vendor.backports.tarfile.compat.py38', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/py38.py', + 'PYMODULE'), + ('setuptools._vendor.backports.tarfile.compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__init__.py', + 'PYMODULE'), + ('setuptools._vendor.jaraco.functools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__init__.py', + 'PYMODULE'), + ('importlib.resources', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/resources/__init__.py', + 'PYMODULE'), + ('importlib.resources._legacy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/resources/_legacy.py', + 'PYMODULE'), + ('importlib.resources._common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/resources/_common.py', + 'PYMODULE'), + ('importlib.resources._adapters', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/resources/_adapters.py', + 'PYMODULE'), + ('packaging.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/version.py', + 'PYMODULE'), + ('packaging.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/utils.py', + 'PYMODULE'), + ('packaging.specifiers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/specifiers.py', + 'PYMODULE'), + ('packaging.requirements', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/requirements.py', + 'PYMODULE'), + ('packaging.markers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/markers.py', + 'PYMODULE'), + ('typing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/typing.py', + 'PYMODULE'), + ('zipimport', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/zipimport.py', + 'PYMODULE'), + ('zipfile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/zipfile/__init__.py', + 'PYMODULE'), + ('zipfile._path', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/zipfile/_path/__init__.py', + 'PYMODULE'), + ('zipfile._path.glob', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/zipfile/_path/glob.py', + 'PYMODULE'), + ('textwrap', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/textwrap.py', + 'PYMODULE'), + ('tempfile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/tempfile.py', + 'PYMODULE'), + ('plistlib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/plistlib.py', + 'PYMODULE'), + ('platform', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/platform.py', + 'PYMODULE'), + ('pkgutil', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/pkgutil.py', + 'PYMODULE'), + ('inspect', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/inspect.py', + 'PYMODULE'), + ('importlib.machinery', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/machinery.py', + 'PYMODULE'), + ('importlib.abc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/abc.py', + 'PYMODULE'), + ('importlib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/__init__.py', + 'PYMODULE'), + ('email.parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/parser.py', + 'PYMODULE'), + ('ldap3.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/version.py', + 'PYMODULE'), + ('ldap3.utils.uri', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/uri.py', + 'PYMODULE'), + ('ldap3.utils.tls_backport', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/tls_backport.py', + 'PYMODULE'), + ('ldap3.utils.repr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/repr.py', + 'PYMODULE'), + ('ldap3.utils.port_validators', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/port_validators.py', + 'PYMODULE'), + ('ldap3.utils.ordDict', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/ordDict.py', + 'PYMODULE'), + ('ldap3.utils.ntlm', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/ntlm.py', + 'PYMODULE'), + ('Crypto.Hash.MD4', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/MD4.py', + 'PYMODULE'), + ('Crypto.Util._raw_api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Util/_raw_api.py', + 'PYMODULE'), + ('Crypto.Util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Util/__init__.py', + 'PYMODULE'), + ('Crypto', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/__init__.py', + 'PYMODULE'), + ('ctypes.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ctypes/util.py', + 'PYMODULE'), + ('ctypes._aix', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ctypes/_aix.py', + 'PYMODULE'), + ('ctypes.macholib.dyld', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ctypes/macholib/dyld.py', + 'PYMODULE'), + ('ctypes.macholib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ctypes/macholib/__init__.py', + 'PYMODULE'), + ('ctypes.macholib.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ctypes/macholib/dylib.py', + 'PYMODULE'), + ('ctypes.macholib.framework', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ctypes/macholib/framework.py', + 'PYMODULE'), + ('cffi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/__init__.py', + 'PYMODULE'), + ('cffi.error', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/error.py', + 'PYMODULE'), + ('cffi.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/api.py', + 'PYMODULE'), + ('cffi.recompiler', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/recompiler.py', + 'PYMODULE'), + ('cffi.cffi_opcode', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/cffi_opcode.py', + 'PYMODULE'), + ('cffi._shimmed_dist_utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/_shimmed_dist_utils.py', + 'PYMODULE'), + ('cffi.verifier', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/verifier.py', + 'PYMODULE'), + ('cffi.lock', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/lock.py', + 'PYMODULE'), + ('cffi.pkgconfig', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/pkgconfig.py', + 'PYMODULE'), + ('cffi.vengine_cpy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/vengine_cpy.py', + 'PYMODULE'), + ('cffi._imp_emulation', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/_imp_emulation.py', + 'PYMODULE'), + ('cffi.vengine_gen', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/vengine_gen.py', + 'PYMODULE'), + ('cffi.ffiplatform', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/ffiplatform.py', + 'PYMODULE'), + ('cffi.cparser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/cparser.py', + 'PYMODULE'), + ('pycparser.lextab', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pycparser/lextab.py', + 'PYMODULE'), + ('pycparser.yacctab', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pycparser/yacctab.py', + 'PYMODULE'), + ('pycparser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pycparser/__init__.py', + 'PYMODULE'), + ('pycparser.c_parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pycparser/c_parser.py', + 'PYMODULE'), + ('pycparser.ast_transforms', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pycparser/ast_transforms.py', + 'PYMODULE'), + ('pycparser.plyparser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pycparser/plyparser.py', + 'PYMODULE'), + ('pycparser.c_lexer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pycparser/c_lexer.py', + 'PYMODULE'), + ('pycparser.ply.lex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pycparser/ply/lex.py', + 'PYMODULE'), + ('pycparser.ply.yacc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pycparser/ply/yacc.py', + 'PYMODULE'), + ('pycparser.ply', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pycparser/ply/__init__.py', + 'PYMODULE'), + ('pycparser.c_ast', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pycparser/c_ast.py', + 'PYMODULE'), + ('cffi.commontypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/commontypes.py', + 'PYMODULE'), + ('cffi.model', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/model.py', + 'PYMODULE'), + ('Crypto.Util._file_system', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Util/_file_system.py', + 'PYMODULE'), + ('Crypto.Util.py3compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Util/py3compat.py', + 'PYMODULE'), + ('Crypto.Hash', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/__init__.py', + 'PYMODULE'), + ('Crypto.Hash.SHA3_512', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/SHA3_512.py', + 'PYMODULE'), + ('Crypto.Hash.keccak', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/keccak.py', + 'PYMODULE'), + ('Crypto.Hash.SHA3_384', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/SHA3_384.py', + 'PYMODULE'), + ('Crypto.Hash.SHA3_256', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/SHA3_256.py', + 'PYMODULE'), + ('Crypto.Hash.SHA3_224', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/SHA3_224.py', + 'PYMODULE'), + ('Crypto.Hash.SHA512', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/SHA512.py', + 'PYMODULE'), + ('Crypto.Hash.SHA384', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/SHA384.py', + 'PYMODULE'), + ('Crypto.Hash.SHA256', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/SHA256.py', + 'PYMODULE'), + ('Crypto.Hash.SHA224', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/SHA224.py', + 'PYMODULE'), + ('Crypto.Hash.SHA1', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/SHA1.py', + 'PYMODULE'), + ('ldap3.utils.log', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/log.py', + 'PYMODULE'), + ('ldap3.utils.hashed', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/hashed.py', + 'PYMODULE'), + ('ldap3.utils.dn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/dn.py', + 'PYMODULE'), + ('ldap3.utils.conv', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/conv.py', + 'PYMODULE'), + ('ldap3.utils.config', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/config.py', + 'PYMODULE'), + ('ldap3.utils.ciDict', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/ciDict.py', + 'PYMODULE'), + ('ldap3.utils.asn1', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/asn1.py', + 'PYMODULE'), + ('pyasn1.type.univ', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/type/univ.py', + 'PYMODULE'), + ('pyasn1.type.tagmap', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/type/tagmap.py', + 'PYMODULE'), + ('pyasn1.type.tag', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/type/tag.py', + 'PYMODULE'), + ('pyasn1.type.namedval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/type/namedval.py', + 'PYMODULE'), + ('pyasn1.type.namedtype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/type/namedtype.py', + 'PYMODULE'), + ('pyasn1.type.constraint', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/type/constraint.py', + 'PYMODULE'), + ('pyasn1.type.error', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/type/error.py', + 'PYMODULE'), + ('pyasn1.type.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/type/base.py', + 'PYMODULE'), + ('pyasn1.type', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/type/__init__.py', + 'PYMODULE'), + ('pyasn1.type.useful', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/type/useful.py', + 'PYMODULE'), + ('pyasn1.type.char', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/type/char.py', + 'PYMODULE'), + ('pyasn1.compat.integer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/compat/integer.py', + 'PYMODULE'), + ('pyasn1.compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/compat/__init__.py', + 'PYMODULE'), + ('pyasn1.codec.ber.eoo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/codec/ber/eoo.py', + 'PYMODULE'), + ('pyasn1.error', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/error.py', + 'PYMODULE'), + ('pyasn1.codec.ber.encoder', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/codec/ber/encoder.py', + 'PYMODULE'), + ('pyasn1.debug', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/debug.py', + 'PYMODULE'), + ('pyasn1.codec.ber.decoder', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/codec/ber/decoder.py', + 'PYMODULE'), + ('pyasn1.codec.streaming', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/codec/streaming.py', + 'PYMODULE'), + ('pyasn1.codec', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/codec/__init__.py', + 'PYMODULE'), + ('pyasn1.codec.ber', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/codec/ber/__init__.py', + 'PYMODULE'), + ('pyasn1', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/__init__.py', + 'PYMODULE'), + ('ldap3.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/__init__.py', + 'PYMODULE'), + ('ldap3.strategy.sync', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/sync.py', + 'PYMODULE'), + ('ldap3.strategy.safeSync', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/safeSync.py', + 'PYMODULE'), + ('ldap3.strategy.safeRestartable', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/safeRestartable.py', + 'PYMODULE'), + ('ldap3.strategy.reusable', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/reusable.py', + 'PYMODULE'), + ('ldap3.strategy.restartable', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/restartable.py', + 'PYMODULE'), + ('ldap3.strategy.mockSync', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/mockSync.py', + 'PYMODULE'), + ('ldap3.strategy.mockBase', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/mockBase.py', + 'PYMODULE'), + ('ldap3.strategy.mockAsync', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/mockAsync.py', + 'PYMODULE'), + ('ldap3.strategy.ldifProducer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/ldifProducer.py', + 'PYMODULE'), + ('ldap3.strategy.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/base.py', + 'PYMODULE'), + ('ldap3.strategy.asynchronous', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/asynchronous.py', + 'PYMODULE'), + ('ldap3.strategy.asyncStream', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/asyncStream.py', + 'PYMODULE'), + ('ldap3.strategy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/__init__.py', + 'PYMODULE'), + ('ldap3.protocol.schemas.slapd24', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/schemas/slapd24.py', + 'PYMODULE'), + ('ldap3.protocol.schemas.edir914', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/schemas/edir914.py', + 'PYMODULE'), + ('ldap3.protocol.schemas.edir888', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/schemas/edir888.py', + 'PYMODULE'), + ('ldap3.protocol.schemas.ds389', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/schemas/ds389.py', + 'PYMODULE'), + ('ldap3.protocol.schemas.ad2012R2', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/schemas/ad2012R2.py', + 'PYMODULE'), + ('ldap3.protocol.schemas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/schemas/__init__.py', + 'PYMODULE'), + ('ldap3.protocol.sasl.sasl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/sasl/sasl.py', + 'PYMODULE'), + ('stringprep', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/stringprep.py', + 'PYMODULE'), + ('ldap3.protocol.sasl.plain', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/sasl/plain.py', + 'PYMODULE'), + ('ldap3.protocol.sasl.kerberos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/sasl/kerberos.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.hashes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/hashes.py', + 'PYMODULE'), + ('cryptography.hazmat.bindings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/bindings/__init__.py', + 'PYMODULE'), + ('cryptography.hazmat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/__init__.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/__init__.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.constant_time', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/constant_time.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.serialization', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/serialization/__init__.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.serialization.ssh', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/serialization/ssh.py', + 'PYMODULE'), + ('bcrypt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bcrypt/__init__.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.ciphers.modes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/ciphers/modes.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives._cipheralgorithm', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/_cipheralgorithm.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.ciphers.algorithms', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/ciphers/algorithms.py', + 'PYMODULE'), + ('cryptography.hazmat.decrepit.ciphers.algorithms', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/decrepit/ciphers/algorithms.py', + 'PYMODULE'), + ('cryptography.hazmat.decrepit.ciphers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/decrepit/ciphers/__init__.py', + 'PYMODULE'), + ('cryptography.hazmat.decrepit', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/decrepit/__init__.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.ciphers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/ciphers/__init__.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.ciphers.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/ciphers/base.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/utils.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric.rsa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/rsa.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives._asymmetric', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/_asymmetric.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric.padding', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/padding.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric.ed25519', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/ed25519.py', + 'PYMODULE'), + ('cryptography.hazmat.backends.openssl.backend', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/backends/openssl/backend.py', + 'PYMODULE'), + ('cryptography.hazmat.backends.openssl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/backends/openssl/__init__.py', + 'PYMODULE'), + ('cryptography.hazmat.bindings.openssl.binding', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/bindings/openssl/binding.py', + 'PYMODULE'), + ('cryptography.hazmat.bindings.openssl._conditional', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/bindings/openssl/_conditional.py', + 'PYMODULE'), + ('cryptography.hazmat.bindings.openssl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/bindings/openssl/__init__.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric.ec', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/ec.py', + 'PYMODULE'), + ('cryptography.hazmat._oid', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/_oid.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric.dsa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/dsa.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/__init__.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric.dh', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/dh.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric.x25519', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/x25519.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric.x448', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/x448.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric.ed448', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/ed448.py', + 'PYMODULE'), + ('cryptography.exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/exceptions.py', + 'PYMODULE'), + ('cryptography.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/utils.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.serialization.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/serialization/base.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives._serialization', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/_serialization.py', + 'PYMODULE'), + ('cryptography.hazmat.backends', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/backends/__init__.py', + 'PYMODULE'), + ('cryptography.x509', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/x509/__init__.py', + 'PYMODULE'), + ('cryptography.x509.oid', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/x509/oid.py', + 'PYMODULE'), + ('cryptography.x509.name', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/x509/name.py', + 'PYMODULE'), + ('cryptography.x509.general_name', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/x509/general_name.py', + 'PYMODULE'), + ('cryptography.x509.extensions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/x509/extensions.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric.types', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/types.py', + 'PYMODULE'), + ('cryptography.x509.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/x509/base.py', + 'PYMODULE'), + ('cryptography.x509.verification', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/x509/verification.py', + 'PYMODULE'), + ('cryptography.x509.certificate_transparency', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/x509/certificate_transparency.py', + 'PYMODULE'), + ('cryptography', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/__init__.py', + 'PYMODULE'), + ('cryptography.__about__', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/__about__.py', + 'PYMODULE'), + ('ldap3.protocol.sasl.external', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/sasl/external.py', + 'PYMODULE'), + ('ldap3.protocol.sasl.digestMd5', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/sasl/digestMd5.py', + 'PYMODULE'), + ('ldap3.protocol.sasl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/sasl/__init__.py', + 'PYMODULE'), + ('ldap3.protocol.rfc4527', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/rfc4527.py', + 'PYMODULE'), + ('ldap3.protocol.rfc4512', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/rfc4512.py', + 'PYMODULE'), + ('ldap3.protocol.rfc4511', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/rfc4511.py', + 'PYMODULE'), + ('ldap3.protocol.rfc3062', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/rfc3062.py', + 'PYMODULE'), + ('ldap3.protocol.rfc2849', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/rfc2849.py', + 'PYMODULE'), + ('ldap3.protocol.rfc2696', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/rfc2696.py', + 'PYMODULE'), + ('ldap3.protocol.persistentSearch', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/persistentSearch.py', + 'PYMODULE'), + ('ldap3.protocol.oid', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/oid.py', + 'PYMODULE'), + ('ldap3.protocol.novell', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/novell.py', + 'PYMODULE'), + ('ldap3.protocol.microsoft', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/microsoft.py', + 'PYMODULE'), + ('ldap3.protocol.formatters.validators', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/formatters/validators.py', + 'PYMODULE'), + ('uuid', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/uuid.py', + 'PYMODULE'), + ('ldap3.protocol.formatters.standard', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/formatters/standard.py', + 'PYMODULE'), + ('ldap3.protocol.formatters.formatters', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/formatters/formatters.py', + 'PYMODULE'), + ('ldap3.protocol.formatters', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/formatters/__init__.py', + 'PYMODULE'), + ('ldap3.protocol.convert', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/convert.py', + 'PYMODULE'), + ('ldap3.protocol.controls', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/controls.py', + 'PYMODULE'), + ('ldap3.protocol', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/__init__.py', + 'PYMODULE'), + ('ldap3.operation.unbind', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/operation/unbind.py', + 'PYMODULE'), + ('ldap3.operation.search', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/operation/search.py', + 'PYMODULE'), + ('ldap3.operation.modifyDn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/operation/modifyDn.py', + 'PYMODULE'), + ('ldap3.operation.modify', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/operation/modify.py', + 'PYMODULE'), + ('ldap3.operation.extended', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/operation/extended.py', + 'PYMODULE'), + ('ldap3.operation.delete', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/operation/delete.py', + 'PYMODULE'), + ('ldap3.operation.compare', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/operation/compare.py', + 'PYMODULE'), + ('ldap3.operation.bind', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/operation/bind.py', + 'PYMODULE'), + ('ldap3.operation.add', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/operation/add.py', + 'PYMODULE'), + ('ldap3.operation.abandon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/operation/abandon.py', + 'PYMODULE'), + ('ldap3.operation', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/operation/__init__.py', + 'PYMODULE'), + ('ldap3.extend.standard.whoAmI', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/standard/whoAmI.py', + 'PYMODULE'), + ('ldap3.extend.standard.modifyPassword', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/standard/modifyPassword.py', + 'PYMODULE'), + ('ldap3.extend.standard.PersistentSearch', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/standard/PersistentSearch.py', + 'PYMODULE'), + ('ldap3.extend.standard.PagedSearch', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/standard/PagedSearch.py', + 'PYMODULE'), + ('ldap3.extend.standard', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/standard/__init__.py', + 'PYMODULE'), + ('ldap3.extend.operation', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/operation.py', + 'PYMODULE'), + ('ldap3.extend.novell.startTransaction', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/startTransaction.py', + 'PYMODULE'), + ('ldap3.extend.novell.replicaInfo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/replicaInfo.py', + 'PYMODULE'), + ('ldap3.extend.novell.removeMembersFromGroups', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/removeMembersFromGroups.py', + 'PYMODULE'), + ('ldap3.extend.novell.partition_entry_count', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/partition_entry_count.py', + 'PYMODULE'), + ('ldap3.extend.novell.nmasSetUniversalPassword', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/nmasSetUniversalPassword.py', + 'PYMODULE'), + ('ldap3.extend.novell.nmasGetUniversalPassword', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/nmasGetUniversalPassword.py', + 'PYMODULE'), + ('ldap3.extend.novell.listReplicas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/listReplicas.py', + 'PYMODULE'), + ('ldap3.extend.novell.getBindDn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/getBindDn.py', + 'PYMODULE'), + ('ldap3.extend.novell.endTransaction', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/endTransaction.py', + 'PYMODULE'), + ('ldap3.extend.novell.checkGroupsMemberships', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/checkGroupsMemberships.py', + 'PYMODULE'), + ('ldap3.extend.novell.addMembersToGroups', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/addMembersToGroups.py', + 'PYMODULE'), + ('ldap3.extend.novell', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/__init__.py', + 'PYMODULE'), + ('ldap3.extend.microsoft.unlockAccount', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/microsoft/unlockAccount.py', + 'PYMODULE'), + ('ldap3.extend.microsoft.removeMembersFromGroups', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/microsoft/removeMembersFromGroups.py', + 'PYMODULE'), + ('ldap3.extend.microsoft.persistentSearch', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/microsoft/persistentSearch.py', + 'PYMODULE'), + ('ldap3.extend.microsoft.modifyPassword', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/microsoft/modifyPassword.py', + 'PYMODULE'), + ('ldap3.extend.microsoft.dirSync', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/microsoft/dirSync.py', + 'PYMODULE'), + ('ldap3.extend.microsoft.addMembersToGroups', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/microsoft/addMembersToGroups.py', + 'PYMODULE'), + ('ldap3.extend.microsoft', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/microsoft/__init__.py', + 'PYMODULE'), + ('ldap3.extend', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/__init__.py', + 'PYMODULE'), + ('ldap3.core.usage', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/core/usage.py', + 'PYMODULE'), + ('ldap3.core.tls', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/core/tls.py', + 'PYMODULE'), + ('ldap3.core.timezone', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/core/timezone.py', + 'PYMODULE'), + ('ldap3.core.server', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/core/server.py', + 'PYMODULE'), + ('ldap3.core.results', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/core/results.py', + 'PYMODULE'), + ('ldap3.core.rdns', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/core/rdns.py', + 'PYMODULE'), + ('ldap3.core.pooling', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/core/pooling.py', + 'PYMODULE'), + ('ldap3.core.exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/core/exceptions.py', + 'PYMODULE'), + ('ldap3.core.connection', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/core/connection.py', + 'PYMODULE'), + ('ldap3.core', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/core/__init__.py', + 'PYMODULE'), + ('ldap3.abstract.objectDef', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/abstract/objectDef.py', + 'PYMODULE'), + ('ldap3.abstract.entry', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/abstract/entry.py', + 'PYMODULE'), + ('ldap3.abstract.cursor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/abstract/cursor.py', + 'PYMODULE'), + ('ldap3.abstract.attribute', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/abstract/attribute.py', + 'PYMODULE'), + ('ldap3.abstract.attrDef', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/abstract/attrDef.py', + 'PYMODULE'), + ('ldap3.abstract', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/abstract/__init__.py', + 'PYMODULE'), + ('ldap3', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/__init__.py', + 'PYMODULE'), + ('openpyxl.xml.functions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/xml/functions.py', + 'PYMODULE'), + ('defusedxml.ElementTree', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/defusedxml/ElementTree.py', + 'PYMODULE'), + ('defusedxml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/defusedxml/__init__.py', + 'PYMODULE'), + ('defusedxml.xmlrpc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/defusedxml/xmlrpc.py', + 'PYMODULE'), + ('defusedxml.sax', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/defusedxml/sax.py', + 'PYMODULE'), + ('defusedxml.minidom', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/defusedxml/minidom.py', + 'PYMODULE'), + ('xml.dom.minidom', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/dom/minidom.py', + 'PYMODULE'), + ('xml.dom.pulldom', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/dom/pulldom.py', + 'PYMODULE'), + ('xml.dom.expatbuilder', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/dom/expatbuilder.py', + 'PYMODULE'), + ('xml.dom.NodeFilter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/dom/NodeFilter.py', + 'PYMODULE'), + ('xml.dom.xmlbuilder', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/dom/xmlbuilder.py', + 'PYMODULE'), + ('xml.dom.minicompat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/dom/minicompat.py', + 'PYMODULE'), + ('xml.dom.domreg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/dom/domreg.py', + 'PYMODULE'), + ('xml.dom', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/dom/__init__.py', + 'PYMODULE'), + ('defusedxml.pulldom', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/defusedxml/pulldom.py', + 'PYMODULE'), + ('defusedxml.expatreader', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/defusedxml/expatreader.py', + 'PYMODULE'), + ('defusedxml.expatbuilder', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/defusedxml/expatbuilder.py', + 'PYMODULE'), + ('defusedxml.cElementTree', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/defusedxml/cElementTree.py', + 'PYMODULE'), + ('xml.etree.cElementTree', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/etree/cElementTree.py', + 'PYMODULE'), + ('xml.etree', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/etree/__init__.py', + 'PYMODULE'), + ('xml.etree.ElementPath', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/etree/ElementPath.py', + 'PYMODULE'), + ('defusedxml.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/defusedxml/common.py', + 'PYMODULE'), + ('et_xmlfile.xmlfile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/et_xmlfile/xmlfile.py', + 'PYMODULE'), + ('et_xmlfile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/et_xmlfile/__init__.py', + 'PYMODULE'), + ('xml.etree.ElementTree', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/etree/ElementTree.py', + 'PYMODULE'), + ('xml.etree.ElementInclude', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/etree/ElementInclude.py', + 'PYMODULE'), + ('lxml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/__init__.py', + 'PYMODULE'), + ('lxml.usedoctest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/usedoctest.py', + 'PYMODULE'), + ('lxml.pyclasslookup', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/pyclasslookup.py', + 'PYMODULE'), + ('lxml.isoschematron', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/__init__.py', + 'PYMODULE'), + ('lxml.includes.libxslt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/includes/libxslt/__init__.py', + 'PYMODULE'), + ('lxml.includes.libxml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/includes/libxml/__init__.py', + 'PYMODULE'), + ('lxml.includes.libexslt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/includes/libexslt/__init__.py', + 'PYMODULE'), + ('lxml.includes.extlibs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/includes/extlibs/__init__.py', + 'PYMODULE'), + ('lxml.includes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/includes/__init__.py', + 'PYMODULE'), + ('lxml.html.usedoctest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/usedoctest.py', + 'PYMODULE'), + ('lxml.html.soupparser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/soupparser.py', + 'PYMODULE'), + ('bs4', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/__init__.py', + 'PYMODULE'), + ('bs4._warnings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/_warnings.py', + 'PYMODULE'), + ('bs4.exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/exceptions.py', + 'PYMODULE'), + ('bs4._typing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/_typing.py', + 'PYMODULE'), + ('bs4.filter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/filter.py', + 'PYMODULE'), + ('bs4.formatter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/formatter.py', + 'PYMODULE'), + ('bs4.element', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/element.py', + 'PYMODULE'), + ('bs4._deprecation', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/_deprecation.py', + 'PYMODULE'), + ('bs4.css', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/css.py', + 'PYMODULE'), + ('soupsieve', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/soupsieve/__init__.py', + 'PYMODULE'), + ('soupsieve.css_parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/soupsieve/css_parser.py', + 'PYMODULE'), + ('soupsieve.css_match', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/soupsieve/css_match.py', + 'PYMODULE'), + ('soupsieve.css_types', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/soupsieve/css_types.py', + 'PYMODULE'), + ('soupsieve.pretty', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/soupsieve/pretty.py', + 'PYMODULE'), + ('soupsieve.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/soupsieve/util.py', + 'PYMODULE'), + ('soupsieve.__meta__', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/soupsieve/__meta__.py', + 'PYMODULE'), + ('bs4.dammit', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/dammit.py', + 'PYMODULE'), + ('charset_normalizer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/charset_normalizer/__init__.py', + 'PYMODULE'), + ('charset_normalizer.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/charset_normalizer/version.py', + 'PYMODULE'), + ('charset_normalizer.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/charset_normalizer/utils.py', + 'PYMODULE'), + ('charset_normalizer.constant', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/charset_normalizer/constant.py', + 'PYMODULE'), + ('charset_normalizer.models', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/charset_normalizer/models.py', + 'PYMODULE'), + ('charset_normalizer.cd', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/charset_normalizer/cd.py', + 'PYMODULE'), + ('charset_normalizer.md', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/charset_normalizer/md.py', + 'PYMODULE'), + ('charset_normalizer.legacy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/charset_normalizer/legacy.py', + 'PYMODULE'), + ('charset_normalizer.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/charset_normalizer/api.py', + 'PYMODULE'), + ('bs4.builder._htmlparser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/builder/_htmlparser.py', + 'PYMODULE'), + ('html.parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/html/parser.py', + 'PYMODULE'), + ('_markupbase', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_markupbase.py', + 'PYMODULE'), + ('bs4.builder', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/builder/__init__.py', + 'PYMODULE'), + ('bs4.builder._lxml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/builder/_lxml.py', + 'PYMODULE'), + ('bs4.builder._html5lib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/builder/_html5lib.py', + 'PYMODULE'), + ('lxml.html.html5parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/html5parser.py', + 'PYMODULE'), + ('lxml.html.formfill', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/formfill.py', + 'PYMODULE'), + ('cgi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/cgi.py', + 'PYMODULE'), + ('lxml.html.defs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/defs.py', + 'PYMODULE'), + ('lxml.html.clean', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/clean.py', + 'PYMODULE'), + ('lxml.html.builder', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/builder.py', + 'PYMODULE'), + ('lxml.html._setmixin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/_setmixin.py', + 'PYMODULE'), + ('lxml.html._html5builder', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/_html5builder.py', + 'PYMODULE'), + ('lxml.html._diffcommand', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/_diffcommand.py', + 'PYMODULE'), + ('optparse', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/optparse.py', + 'PYMODULE'), + ('lxml.html.ElementSoup', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/ElementSoup.py', + 'PYMODULE'), + ('lxml.html', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/__init__.py', + 'PYMODULE'), + ('lxml.doctestcompare', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/doctestcompare.py', + 'PYMODULE'), + ('doctest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/doctest.py', + 'PYMODULE'), + ('pdb', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/pdb.py', + 'PYMODULE'), + ('code', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/code.py', + 'PYMODULE'), + ('codeop', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/codeop.py', + 'PYMODULE'), + ('bdb', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/bdb.py', + 'PYMODULE'), + ('cmd', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/cmd.py', + 'PYMODULE'), + ('lxml.cssselect', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/cssselect.py', + 'PYMODULE'), + ('cssselect', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cssselect/__init__.py', + 'PYMODULE'), + ('cssselect.xpath', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cssselect/xpath.py', + 'PYMODULE'), + ('cssselect.parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cssselect/parser.py', + 'PYMODULE'), + ('lxml.ElementInclude', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/ElementInclude.py', + 'PYMODULE'), + ('openpyxl.xml.constants', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/xml/constants.py', + 'PYMODULE'), + ('openpyxl.xml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/xml/__init__.py', + 'PYMODULE'), + ('openpyxl.writer.theme', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/writer/theme.py', + 'PYMODULE'), + ('openpyxl.writer.excel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/writer/excel.py', + 'PYMODULE'), + ('openpyxl.writer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/writer/__init__.py', + 'PYMODULE'), + ('openpyxl.worksheet.worksheet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/worksheet.py', + 'PYMODULE'), + ('openpyxl.worksheet.views', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/views.py', + 'PYMODULE'), + ('openpyxl.worksheet.table', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/table.py', + 'PYMODULE'), + ('openpyxl.worksheet.smart_tag', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/smart_tag.py', + 'PYMODULE'), + ('openpyxl.worksheet.scenario', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/scenario.py', + 'PYMODULE'), + ('openpyxl.worksheet.related', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/related.py', + 'PYMODULE'), + ('openpyxl.worksheet.protection', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/protection.py', + 'PYMODULE'), + ('openpyxl.worksheet.properties', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/properties.py', + 'PYMODULE'), + ('openpyxl.worksheet.print_settings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/print_settings.py', + 'PYMODULE'), + ('openpyxl.worksheet.picture', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/picture.py', + 'PYMODULE'), + ('openpyxl.worksheet.pagebreak', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/pagebreak.py', + 'PYMODULE'), + ('openpyxl.worksheet.page', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/page.py', + 'PYMODULE'), + ('openpyxl.worksheet.ole', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/ole.py', + 'PYMODULE'), + ('openpyxl.worksheet.merge', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/merge.py', + 'PYMODULE'), + ('openpyxl.worksheet.hyperlink', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/hyperlink.py', + 'PYMODULE'), + ('openpyxl.worksheet.header_footer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/header_footer.py', + 'PYMODULE'), + ('openpyxl.worksheet.formula', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/formula.py', + 'PYMODULE'), + ('openpyxl.worksheet.filters', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/filters.py', + 'PYMODULE'), + ('openpyxl.worksheet.errors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/errors.py', + 'PYMODULE'), + ('openpyxl.worksheet.drawing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/drawing.py', + 'PYMODULE'), + ('openpyxl.worksheet.dimensions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/dimensions.py', + 'PYMODULE'), + ('openpyxl.worksheet.datavalidation', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/datavalidation.py', + 'PYMODULE'), + ('openpyxl.worksheet.custom', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/custom.py', + 'PYMODULE'), + ('openpyxl.worksheet.copier', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/copier.py', + 'PYMODULE'), + ('openpyxl.worksheet.controls', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/controls.py', + 'PYMODULE'), + ('openpyxl.worksheet.cell_watch', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/cell_watch.py', + 'PYMODULE'), + ('openpyxl.worksheet.cell_range', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/cell_range.py', + 'PYMODULE'), + ('openpyxl.worksheet._write_only', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/_write_only.py', + 'PYMODULE'), + ('openpyxl.worksheet._read_only', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/_read_only.py', + 'PYMODULE'), + ('openpyxl.worksheet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/__init__.py', + 'PYMODULE'), + ('openpyxl.workbook.workbook', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/workbook.py', + 'PYMODULE'), + ('openpyxl.workbook.web', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/web.py', + 'PYMODULE'), + ('openpyxl.workbook.views', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/views.py', + 'PYMODULE'), + ('openpyxl.workbook.smart_tags', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/smart_tags.py', + 'PYMODULE'), + ('openpyxl.workbook.protection', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/protection.py', + 'PYMODULE'), + ('openpyxl.workbook.properties', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/properties.py', + 'PYMODULE'), + ('openpyxl.workbook.function_group', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/function_group.py', + 'PYMODULE'), + ('openpyxl.workbook.external_reference', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/external_reference.py', + 'PYMODULE'), + ('openpyxl.workbook.external_link.external', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/external_link/external.py', + 'PYMODULE'), + ('openpyxl.workbook.external_link', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/external_link/__init__.py', + 'PYMODULE'), + ('openpyxl.workbook.defined_name', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/defined_name.py', + 'PYMODULE'), + ('openpyxl.workbook.child', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/child.py', + 'PYMODULE'), + ('openpyxl.workbook._writer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/_writer.py', + 'PYMODULE'), + ('openpyxl.workbook', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/__init__.py', + 'PYMODULE'), + ('openpyxl.utils.units', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/units.py', + 'PYMODULE'), + ('openpyxl.utils.protection', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/protection.py', + 'PYMODULE'), + ('openpyxl.utils.inference', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/inference.py', + 'PYMODULE'), + ('openpyxl.utils.indexed_list', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/indexed_list.py', + 'PYMODULE'), + ('openpyxl.utils.formulas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/formulas.py', + 'PYMODULE'), + ('openpyxl.utils.exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/exceptions.py', + 'PYMODULE'), + ('openpyxl.utils.escape', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/escape.py', + 'PYMODULE'), + ('openpyxl.utils.datetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/datetime.py', + 'PYMODULE'), + ('openpyxl.utils.dataframe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/dataframe.py', + 'PYMODULE'), + ('numpy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/__init__.py', + 'PYMODULE'), + ('numpy._core._dtype_ctypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_dtype_ctypes.py', + 'PYMODULE'), + ('numpy._pytesttester', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_pytesttester.py', + 'PYMODULE'), + ('numpy.strings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/strings/__init__.py', + 'PYMODULE'), + ('numpy._core.strings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/strings.py', + 'PYMODULE'), + ('numpy._core.umath', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/umath.py', + 'PYMODULE'), + ('numpy._core.multiarray', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/multiarray.py', + 'PYMODULE'), + ('numpy._core.overrides', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/overrides.py', + 'PYMODULE'), + ('numpy._utils._inspect', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_utils/_inspect.py', + 'PYMODULE'), + ('numpy._utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_utils/__init__.py', + 'PYMODULE'), + ('numpy._utils._convertions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_utils/_convertions.py', + 'PYMODULE'), + ('numpy.core', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/core/__init__.py', + 'PYMODULE'), + ('numpy.core._utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/core/_utils.py', + 'PYMODULE'), + ('numpy.char', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/char/__init__.py', + 'PYMODULE'), + ('numpy._core.defchararray', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/defchararray.py', + 'PYMODULE'), + ('numpy._core.numeric', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/numeric.py', + 'PYMODULE'), + ('numpy._core._asarray', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_asarray.py', + 'PYMODULE'), + ('numpy._core.arrayprint', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/arrayprint.py', + 'PYMODULE'), + ('numpy._core.fromnumeric', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/fromnumeric.py', + 'PYMODULE'), + ('numpy._core._methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_methods.py', + 'PYMODULE'), + ('numpy._core._exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_exceptions.py', + 'PYMODULE'), + ('numpy._core._ufunc_config', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_ufunc_config.py', + 'PYMODULE'), + ('numpy._core.shape_base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/shape_base.py', + 'PYMODULE'), + ('numpy._core.numerictypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/numerictypes.py', + 'PYMODULE'), + ('numpy._core._dtype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_dtype.py', + 'PYMODULE'), + ('numpy._core._type_aliases', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_type_aliases.py', + 'PYMODULE'), + ('numpy._core._string_helpers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_string_helpers.py', + 'PYMODULE'), + ('numpy.rec', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/rec/__init__.py', + 'PYMODULE'), + ('numpy._core.records', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/records.py', + 'PYMODULE'), + ('numpy.typing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/typing/__init__.py', + 'PYMODULE'), + ('numpy._typing._add_docstring', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_typing/_add_docstring.py', + 'PYMODULE'), + ('numpy._typing._array_like', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_typing/_array_like.py', + 'PYMODULE'), + ('numpy._typing._nested_sequence', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_typing/_nested_sequence.py', + 'PYMODULE'), + ('numpy._typing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_typing/__init__.py', + 'PYMODULE'), + ('numpy._typing._dtype_like', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_typing/_dtype_like.py', + 'PYMODULE'), + ('numpy._typing._shape', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_typing/_shape.py', + 'PYMODULE'), + ('numpy._typing._scalars', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_typing/_scalars.py', + 'PYMODULE'), + ('numpy._typing._char_codes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_typing/_char_codes.py', + 'PYMODULE'), + ('numpy._typing._nbit', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_typing/_nbit.py', + 'PYMODULE'), + ('numpy.f2py', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/__init__.py', + 'PYMODULE'), + ('numpy.f2py.diagnose', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/diagnose.py', + 'PYMODULE'), + ('numpy.f2py.f2py2e', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/f2py2e.py', + 'PYMODULE'), + ('numpy.f2py._backends', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/_backends/__init__.py', + 'PYMODULE'), + ('numpy.f2py._backends._distutils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/_backends/_distutils.py', + 'PYMODULE'), + ('numpy.f2py._backends._backend', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/_backends/_backend.py', + 'PYMODULE'), + ('numpy.f2py._backends._meson', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/_backends/_meson.py', + 'PYMODULE'), + ('numpy.f2py.auxfuncs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/auxfuncs.py', + 'PYMODULE'), + ('numpy.f2py.f90mod_rules', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/f90mod_rules.py', + 'PYMODULE'), + ('numpy.f2py.rules', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/rules.py', + 'PYMODULE'), + ('numpy.f2py.use_rules', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/use_rules.py', + 'PYMODULE'), + ('numpy.f2py.common_rules', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/common_rules.py', + 'PYMODULE'), + ('numpy.f2py.func2subr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/func2subr.py', + 'PYMODULE'), + ('numpy.f2py._isocbind', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/_isocbind.py', + 'PYMODULE'), + ('numpy.f2py.crackfortran', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/crackfortran.py', + 'PYMODULE'), + ('fileinput', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/fileinput.py', + 'PYMODULE'), + ('numpy.f2py.symbolic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/symbolic.py', + 'PYMODULE'), + ('numpy.f2py.cb_rules', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/cb_rules.py', + 'PYMODULE'), + ('numpy.f2py.capi_maps', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/capi_maps.py', + 'PYMODULE'), + ('numpy.f2py.cfuncs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/cfuncs.py', + 'PYMODULE'), + ('numpy.f2py.__version__', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/__version__.py', + 'PYMODULE'), + ('numpy.matlib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/matlib.py', + 'PYMODULE'), + ('numpy.matrixlib.defmatrix', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/matrixlib/defmatrix.py', + 'PYMODULE'), + ('numpy.testing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/testing/__init__.py', + 'PYMODULE'), + ('numpy.testing.overrides', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/testing/overrides.py', + 'PYMODULE'), + ('numpy.lib.recfunctions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/recfunctions.py', + 'PYMODULE'), + ('numpy.lib._iotools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_iotools.py', + 'PYMODULE'), + ('numpy.ma.mrecords', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/ma/mrecords.py', + 'PYMODULE'), + ('numpy.testing._private.extbuild', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/testing/_private/extbuild.py', + 'PYMODULE'), + ('numpy.testing._private.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/testing/_private/utils.py', + 'PYMODULE'), + ('numpy.testing._private', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/testing/_private/__init__.py', + 'PYMODULE'), + ('numpy.exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/exceptions.py', + 'PYMODULE'), + ('numpy.ctypeslib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/ctypeslib.py', + 'PYMODULE'), + ('numpy._core._internal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_internal.py', + 'PYMODULE'), + ('numpy.ma', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/ma/__init__.py', + 'PYMODULE'), + ('numpy.ma.extras', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/ma/extras.py', + 'PYMODULE'), + ('numpy.lib.array_utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/array_utils.py', + 'PYMODULE'), + ('numpy.lib._array_utils_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_array_utils_impl.py', + 'PYMODULE'), + ('numpy.ma.core', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/ma/core.py', + 'PYMODULE'), + ('numpy.polynomial', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/polynomial/__init__.py', + 'PYMODULE'), + ('numpy.polynomial._polybase', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/polynomial/_polybase.py', + 'PYMODULE'), + ('numpy.polynomial.laguerre', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/polynomial/laguerre.py', + 'PYMODULE'), + ('numpy.polynomial.hermite_e', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/polynomial/hermite_e.py', + 'PYMODULE'), + ('numpy.polynomial.hermite', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/polynomial/hermite.py', + 'PYMODULE'), + ('numpy.polynomial.legendre', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/polynomial/legendre.py', + 'PYMODULE'), + ('numpy.polynomial.chebyshev', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/polynomial/chebyshev.py', + 'PYMODULE'), + ('numpy.polynomial.polynomial', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/polynomial/polynomial.py', + 'PYMODULE'), + ('numpy.polynomial.polyutils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/polynomial/polyutils.py', + 'PYMODULE'), + ('numpy.random', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/__init__.py', + 'PYMODULE'), + ('numpy.random._pickle', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_pickle.py', + 'PYMODULE'), + ('numpy.dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/dtypes.py', + 'PYMODULE'), + ('numpy.fft', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/fft/__init__.py', + 'PYMODULE'), + ('numpy.fft.helper', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/fft/helper.py', + 'PYMODULE'), + ('numpy.fft._helper', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/fft/_helper.py', + 'PYMODULE'), + ('numpy.fft._pocketfft', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/fft/_pocketfft.py', + 'PYMODULE'), + ('numpy.linalg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/linalg/__init__.py', + 'PYMODULE'), + ('numpy.linalg.linalg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/linalg/linalg.py', + 'PYMODULE'), + ('numpy.linalg._linalg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/linalg/_linalg.py', + 'PYMODULE'), + ('numpy.matrixlib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/matrixlib/__init__.py', + 'PYMODULE'), + ('numpy.lib._index_tricks_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_index_tricks_impl.py', + 'PYMODULE'), + ('numpy.lib.stride_tricks', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/stride_tricks.py', + 'PYMODULE'), + ('numpy.lib._npyio_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_npyio_impl.py', + 'PYMODULE'), + ('numpy.lib._datasource', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_datasource.py', + 'PYMODULE'), + ('numpy.lib.format', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/format.py', + 'PYMODULE'), + ('numpy.lib._polynomial_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_polynomial_impl.py', + 'PYMODULE'), + ('numpy.lib._stride_tricks_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_stride_tricks_impl.py', + 'PYMODULE'), + ('numpy.lib._utils_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_utils_impl.py', + 'PYMODULE'), + ('numpy.lib._arraypad_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_arraypad_impl.py', + 'PYMODULE'), + ('numpy.lib._ufunclike_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_ufunclike_impl.py', + 'PYMODULE'), + ('numpy.lib._arraysetops_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_arraysetops_impl.py', + 'PYMODULE'), + ('numpy.lib._type_check_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_type_check_impl.py', + 'PYMODULE'), + ('numpy._core.getlimits', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/getlimits.py', + 'PYMODULE'), + ('numpy._core._machar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_machar.py', + 'PYMODULE'), + ('numpy.lib._shape_base_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_shape_base_impl.py', + 'PYMODULE'), + ('numpy.lib._twodim_base_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_twodim_base_impl.py', + 'PYMODULE'), + ('numpy.lib._function_base_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_function_base_impl.py', + 'PYMODULE'), + ('numpy.lib._nanfunctions_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_nanfunctions_impl.py', + 'PYMODULE'), + ('numpy.lib._histograms_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_histograms_impl.py', + 'PYMODULE'), + ('numpy.lib.scimath', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/scimath.py', + 'PYMODULE'), + ('numpy.lib._scimath_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_scimath_impl.py', + 'PYMODULE'), + ('numpy.lib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/__init__.py', + 'PYMODULE'), + ('numpy._core.function_base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/function_base.py', + 'PYMODULE'), + ('numpy.lib._version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_version.py', + 'PYMODULE'), + ('numpy.lib._arrayterator_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_arrayterator_impl.py', + 'PYMODULE'), + ('numpy.lib.npyio', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/npyio.py', + 'PYMODULE'), + ('numpy.lib.mixins', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/mixins.py', + 'PYMODULE'), + ('numpy.lib.introspect', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/introspect.py', + 'PYMODULE'), + ('numpy._core.memmap', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/memmap.py', + 'PYMODULE'), + ('numpy._core', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/__init__.py', + 'PYMODULE'), + ('numpy._core._add_newdocs_scalars', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_add_newdocs_scalars.py', + 'PYMODULE'), + ('numpy._core._add_newdocs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_add_newdocs.py', + 'PYMODULE'), + ('numpy._core.einsumfunc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/einsumfunc.py', + 'PYMODULE'), + ('numpy.__config__', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/__config__.py', + 'PYMODULE'), + ('yaml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/__init__.py', + 'PYMODULE'), + ('yaml.cyaml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/cyaml.py', + 'PYMODULE'), + ('yaml.resolver', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/resolver.py', + 'PYMODULE'), + ('yaml.representer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/representer.py', + 'PYMODULE'), + ('yaml.serializer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/serializer.py', + 'PYMODULE'), + ('yaml.constructor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/constructor.py', + 'PYMODULE'), + ('yaml.dumper', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/dumper.py', + 'PYMODULE'), + ('yaml.emitter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/emitter.py', + 'PYMODULE'), + ('yaml.loader', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/loader.py', + 'PYMODULE'), + ('yaml.composer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/composer.py', + 'PYMODULE'), + ('yaml.parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/parser.py', + 'PYMODULE'), + ('yaml.scanner', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/scanner.py', + 'PYMODULE'), + ('yaml.reader', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/reader.py', + 'PYMODULE'), + ('yaml.nodes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/nodes.py', + 'PYMODULE'), + ('yaml.events', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/events.py', + 'PYMODULE'), + ('yaml.tokens', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/tokens.py', + 'PYMODULE'), + ('yaml.error', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/error.py', + 'PYMODULE'), + ('numpy._distributor_init', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_distributor_init.py', + 'PYMODULE'), + ('numpy.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/version.py', + 'PYMODULE'), + ('numpy._expired_attrs_2_0', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_expired_attrs_2_0.py', + 'PYMODULE'), + ('numpy._globals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_globals.py', + 'PYMODULE'), + ('openpyxl.utils.bound_dictionary', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/bound_dictionary.py', + 'PYMODULE'), + ('openpyxl.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/__init__.py', + 'PYMODULE'), + ('openpyxl.styles.table', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/table.py', + 'PYMODULE'), + ('openpyxl.styles.stylesheet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/stylesheet.py', + 'PYMODULE'), + ('openpyxl.styles.styleable', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/styleable.py', + 'PYMODULE'), + ('openpyxl.styles.proxy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/proxy.py', + 'PYMODULE'), + ('openpyxl.styles.protection', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/protection.py', + 'PYMODULE'), + ('openpyxl.styles.numbers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/numbers.py', + 'PYMODULE'), + ('openpyxl.styles.named_styles', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/named_styles.py', + 'PYMODULE'), + ('openpyxl.styles.fonts', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/fonts.py', + 'PYMODULE'), + ('openpyxl.styles.fills', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/fills.py', + 'PYMODULE'), + ('openpyxl.styles.differential', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/differential.py', + 'PYMODULE'), + ('openpyxl.styles.colors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/colors.py', + 'PYMODULE'), + ('openpyxl.styles.cell_style', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/cell_style.py', + 'PYMODULE'), + ('openpyxl.styles.builtins', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/builtins.py', + 'PYMODULE'), + ('openpyxl.styles.borders', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/borders.py', + 'PYMODULE'), + ('openpyxl.styles.alignment', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/alignment.py', + 'PYMODULE'), + ('openpyxl.styles', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/__init__.py', + 'PYMODULE'), + ('openpyxl.reader.workbook', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/reader/workbook.py', + 'PYMODULE'), + ('openpyxl.reader.strings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/reader/strings.py', + 'PYMODULE'), + ('openpyxl.reader.excel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/reader/excel.py', + 'PYMODULE'), + ('openpyxl.reader.drawings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/reader/drawings.py', + 'PYMODULE'), + ('openpyxl.reader', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/reader/__init__.py', + 'PYMODULE'), + ('openpyxl.pivot.table', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/pivot/table.py', + 'PYMODULE'), + ('openpyxl.pivot.record', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/pivot/record.py', + 'PYMODULE'), + ('openpyxl.pivot.fields', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/pivot/fields.py', + 'PYMODULE'), + ('openpyxl.pivot.cache', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/pivot/cache.py', + 'PYMODULE'), + ('openpyxl.pivot', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/pivot/__init__.py', + 'PYMODULE'), + ('openpyxl.packaging.workbook', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/packaging/workbook.py', + 'PYMODULE'), + ('openpyxl.packaging.relationship', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/packaging/relationship.py', + 'PYMODULE'), + ('openpyxl.packaging.manifest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/packaging/manifest.py', + 'PYMODULE'), + ('openpyxl.packaging.interface', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/packaging/interface.py', + 'PYMODULE'), + ('openpyxl.packaging.extended', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/packaging/extended.py', + 'PYMODULE'), + ('openpyxl.packaging.custom', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/packaging/custom.py', + 'PYMODULE'), + ('openpyxl.packaging.core', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/packaging/core.py', + 'PYMODULE'), + ('openpyxl.packaging', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/packaging/__init__.py', + 'PYMODULE'), + ('openpyxl.formula.translate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/formula/translate.py', + 'PYMODULE'), + ('openpyxl.formula.tokenizer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/formula/tokenizer.py', + 'PYMODULE'), + ('openpyxl.formula', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/formula/__init__.py', + 'PYMODULE'), + ('openpyxl.formatting.rule', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/formatting/rule.py', + 'PYMODULE'), + ('openpyxl.formatting.formatting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/formatting/formatting.py', + 'PYMODULE'), + ('openpyxl.formatting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/formatting/__init__.py', + 'PYMODULE'), + ('openpyxl.drawing.xdr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/xdr.py', + 'PYMODULE'), + ('openpyxl.drawing.text', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/text.py', + 'PYMODULE'), + ('openpyxl.drawing.spreadsheet_drawing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/spreadsheet_drawing.py', + 'PYMODULE'), + ('openpyxl.drawing.relation', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/relation.py', + 'PYMODULE'), + ('openpyxl.drawing.properties', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/properties.py', + 'PYMODULE'), + ('openpyxl.drawing.picture', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/picture.py', + 'PYMODULE'), + ('openpyxl.drawing.line', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/line.py', + 'PYMODULE'), + ('openpyxl.drawing.image', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/image.py', + 'PYMODULE'), + ('PIL.Image', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/Image.py', + 'PYMODULE'), + ('PIL.XpmImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/XpmImagePlugin.py', + 'PYMODULE'), + ('PIL.XbmImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/XbmImagePlugin.py', + 'PYMODULE'), + ('PIL.XVThumbImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/XVThumbImagePlugin.py', + 'PYMODULE'), + ('PIL.WmfImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/WmfImagePlugin.py', + 'PYMODULE'), + ('PIL.WebPImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/WebPImagePlugin.py', + 'PYMODULE'), + ('PIL.TgaImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/TgaImagePlugin.py', + 'PYMODULE'), + ('PIL.SunImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/SunImagePlugin.py', + 'PYMODULE'), + ('PIL.SpiderImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/SpiderImagePlugin.py', + 'PYMODULE'), + ('PIL.ImageTk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageTk.py', + 'PYMODULE'), + ('PIL.SgiImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/SgiImagePlugin.py', + 'PYMODULE'), + ('PIL.QoiImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/QoiImagePlugin.py', + 'PYMODULE'), + ('PIL.PsdImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/PsdImagePlugin.py', + 'PYMODULE'), + ('PIL.PixarImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/PixarImagePlugin.py', + 'PYMODULE'), + ('PIL.PdfImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/PdfImagePlugin.py', + 'PYMODULE'), + ('PIL.features', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/features.py', + 'PYMODULE'), + ('PIL.PdfParser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/PdfParser.py', + 'PYMODULE'), + ('PIL.ImageSequence', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageSequence.py', + 'PYMODULE'), + ('PIL.PcxImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/PcxImagePlugin.py', + 'PYMODULE'), + ('PIL.PcdImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/PcdImagePlugin.py', + 'PYMODULE'), + ('PIL.PalmImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/PalmImagePlugin.py', + 'PYMODULE'), + ('PIL.MspImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/MspImagePlugin.py', + 'PYMODULE'), + ('PIL.MpoImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/MpoImagePlugin.py', + 'PYMODULE'), + ('PIL.MpegImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/MpegImagePlugin.py', + 'PYMODULE'), + ('PIL.MicImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/MicImagePlugin.py', + 'PYMODULE'), + ('olefile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/olefile/__init__.py', + 'PYMODULE'), + ('olefile.olefile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/olefile/olefile.py', + 'PYMODULE'), + ('PIL.McIdasImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/McIdasImagePlugin.py', + 'PYMODULE'), + ('PIL.Jpeg2KImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/Jpeg2KImagePlugin.py', + 'PYMODULE'), + ('PIL.IptcImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/IptcImagePlugin.py', + 'PYMODULE'), + ('PIL.ImtImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImtImagePlugin.py', + 'PYMODULE'), + ('PIL.ImImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImImagePlugin.py', + 'PYMODULE'), + ('PIL.IcoImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/IcoImagePlugin.py', + 'PYMODULE'), + ('PIL.IcnsImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/IcnsImagePlugin.py', + 'PYMODULE'), + ('PIL.Hdf5StubImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/Hdf5StubImagePlugin.py', + 'PYMODULE'), + ('PIL.GribStubImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/GribStubImagePlugin.py', + 'PYMODULE'), + ('PIL.GbrImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/GbrImagePlugin.py', + 'PYMODULE'), + ('PIL.FtexImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/FtexImagePlugin.py', + 'PYMODULE'), + ('PIL.FpxImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/FpxImagePlugin.py', + 'PYMODULE'), + ('PIL.FliImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/FliImagePlugin.py', + 'PYMODULE'), + ('PIL.FitsImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/FitsImagePlugin.py', + 'PYMODULE'), + ('PIL.EpsImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/EpsImagePlugin.py', + 'PYMODULE'), + ('PIL.DdsImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/DdsImagePlugin.py', + 'PYMODULE'), + ('PIL.DcxImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/DcxImagePlugin.py', + 'PYMODULE'), + ('PIL.CurImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/CurImagePlugin.py', + 'PYMODULE'), + ('PIL.BufrStubImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/BufrStubImagePlugin.py', + 'PYMODULE'), + ('PIL.BlpImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/BlpImagePlugin.py', + 'PYMODULE'), + ('PIL.ImageShow', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageShow.py', + 'PYMODULE'), + ('PIL.ImageColor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageColor.py', + 'PYMODULE'), + ('colorsys', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/colorsys.py', + 'PYMODULE'), + ('PIL.ImageCms', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageCms.py', + 'PYMODULE'), + ('PIL.ImageWin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageWin.py', + 'PYMODULE'), + ('PIL.PngImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/PngImagePlugin.py', + 'PYMODULE'), + ('PIL.ImageChops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageChops.py', + 'PYMODULE'), + ('PIL.PpmImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/PpmImagePlugin.py', + 'PYMODULE'), + ('PIL.JpegImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/JpegImagePlugin.py', + 'PYMODULE'), + ('PIL.JpegPresets', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/JpegPresets.py', + 'PYMODULE'), + ('PIL.GifImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/GifImagePlugin.py', + 'PYMODULE'), + ('PIL.ImageOps', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageOps.py', + 'PYMODULE'), + ('PIL.ImageMath', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageMath.py', + 'PYMODULE'), + ('PIL.BmpImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/BmpImagePlugin.py', + 'PYMODULE'), + ('PIL._typing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_typing.py', + 'PYMODULE'), + ('PIL.TiffImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/TiffImagePlugin.py', + 'PYMODULE'), + ('PIL.ImageQt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageQt.py', + 'PYMODULE'), + ('PIL.ImagePalette', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImagePalette.py', + 'PYMODULE'), + ('PIL.PaletteFile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/PaletteFile.py', + 'PYMODULE'), + ('PIL.GimpPaletteFile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/GimpPaletteFile.py', + 'PYMODULE'), + ('PIL.GimpGradientFile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/GimpGradientFile.py', + 'PYMODULE'), + ('PIL.ImageFilter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageFilter.py', + 'PYMODULE'), + ('PIL.ImageFile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageFile.py', + 'PYMODULE'), + ('PIL._util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_util.py', + 'PYMODULE'), + ('PIL._deprecate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_deprecate.py', + 'PYMODULE'), + ('PIL._binary', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_binary.py', + 'PYMODULE'), + ('PIL.TiffTags', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/TiffTags.py', + 'PYMODULE'), + ('PIL.ImageMode', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageMode.py', + 'PYMODULE'), + ('PIL.ExifTags', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ExifTags.py', + 'PYMODULE'), + ('PIL', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/__init__.py', + 'PYMODULE'), + ('PIL._version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_version.py', + 'PYMODULE'), + ('openpyxl.drawing.graphic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/graphic.py', + 'PYMODULE'), + ('openpyxl.drawing.geometry', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/geometry.py', + 'PYMODULE'), + ('openpyxl.drawing.fill', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/fill.py', + 'PYMODULE'), + ('openpyxl.drawing.effect', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/effect.py', + 'PYMODULE'), + ('openpyxl.drawing.drawing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/drawing.py', + 'PYMODULE'), + ('openpyxl.drawing.connector', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/connector.py', + 'PYMODULE'), + ('openpyxl.drawing.colors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/colors.py', + 'PYMODULE'), + ('openpyxl.drawing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/__init__.py', + 'PYMODULE'), + ('openpyxl.descriptors.slots', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/descriptors/slots.py', + 'PYMODULE'), + ('openpyxl.descriptors.serialisable', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/descriptors/serialisable.py', + 'PYMODULE'), + ('openpyxl.descriptors.sequence', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/descriptors/sequence.py', + 'PYMODULE'), + ('openpyxl.descriptors.nested', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/descriptors/nested.py', + 'PYMODULE'), + ('openpyxl.descriptors.namespace', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/descriptors/namespace.py', + 'PYMODULE'), + ('openpyxl.descriptors.excel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/descriptors/excel.py', + 'PYMODULE'), + ('openpyxl.descriptors.container', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/descriptors/container.py', + 'PYMODULE'), + ('openpyxl.descriptors.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/descriptors/base.py', + 'PYMODULE'), + ('openpyxl.descriptors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/descriptors/__init__.py', + 'PYMODULE'), + ('openpyxl.compat.strings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/compat/strings.py', + 'PYMODULE'), + ('openpyxl.compat.singleton', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/compat/singleton.py', + 'PYMODULE'), + ('openpyxl.compat.product', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/compat/product.py', + 'PYMODULE'), + ('openpyxl.compat.numbers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/compat/numbers.py', + 'PYMODULE'), + ('openpyxl.compat.abc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/compat/abc.py', + 'PYMODULE'), + ('openpyxl.compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/compat/__init__.py', + 'PYMODULE'), + ('openpyxl.comments.shape_writer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/comments/shape_writer.py', + 'PYMODULE'), + ('openpyxl.comments.comments', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/comments/comments.py', + 'PYMODULE'), + ('openpyxl.comments.comment_sheet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/comments/comment_sheet.py', + 'PYMODULE'), + ('openpyxl.comments.author', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/comments/author.py', + 'PYMODULE'), + ('openpyxl.comments', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/comments/__init__.py', + 'PYMODULE'), + ('openpyxl.chartsheet.views', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chartsheet/views.py', + 'PYMODULE'), + ('openpyxl.chartsheet.relation', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chartsheet/relation.py', + 'PYMODULE'), + ('openpyxl.chartsheet.publish', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chartsheet/publish.py', + 'PYMODULE'), + ('openpyxl.chartsheet.protection', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chartsheet/protection.py', + 'PYMODULE'), + ('openpyxl.chartsheet.properties', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chartsheet/properties.py', + 'PYMODULE'), + ('openpyxl.chartsheet.custom', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chartsheet/custom.py', + 'PYMODULE'), + ('openpyxl.chartsheet.chartsheet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chartsheet/chartsheet.py', + 'PYMODULE'), + ('openpyxl.chartsheet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chartsheet/__init__.py', + 'PYMODULE'), + ('openpyxl.chart.updown_bars', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/updown_bars.py', + 'PYMODULE'), + ('openpyxl.chart.trendline', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/trendline.py', + 'PYMODULE'), + ('openpyxl.chart.title', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/title.py', + 'PYMODULE'), + ('openpyxl.chart.text', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/text.py', + 'PYMODULE'), + ('openpyxl.chart.surface_chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/surface_chart.py', + 'PYMODULE'), + ('openpyxl.chart.stock_chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/stock_chart.py', + 'PYMODULE'), + ('openpyxl.chart.shapes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/shapes.py', + 'PYMODULE'), + ('openpyxl.chart.series_factory', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/series_factory.py', + 'PYMODULE'), + ('openpyxl.chart.series', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/series.py', + 'PYMODULE'), + ('openpyxl.chart.scatter_chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/scatter_chart.py', + 'PYMODULE'), + ('openpyxl.chart.reference', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/reference.py', + 'PYMODULE'), + ('openpyxl.chart.reader', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/reader.py', + 'PYMODULE'), + ('openpyxl.chart.radar_chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/radar_chart.py', + 'PYMODULE'), + ('openpyxl.chart.print_settings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/print_settings.py', + 'PYMODULE'), + ('openpyxl.chart.plotarea', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/plotarea.py', + 'PYMODULE'), + ('openpyxl.chart.pivot', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/pivot.py', + 'PYMODULE'), + ('openpyxl.chart.pie_chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/pie_chart.py', + 'PYMODULE'), + ('openpyxl.chart.picture', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/picture.py', + 'PYMODULE'), + ('openpyxl.chart.marker', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/marker.py', + 'PYMODULE'), + ('openpyxl.chart.line_chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/line_chart.py', + 'PYMODULE'), + ('openpyxl.chart.legend', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/legend.py', + 'PYMODULE'), + ('openpyxl.chart.layout', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/layout.py', + 'PYMODULE'), + ('openpyxl.chart.label', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/label.py', + 'PYMODULE'), + ('openpyxl.chart.error_bar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/error_bar.py', + 'PYMODULE'), + ('openpyxl.chart.descriptors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/descriptors.py', + 'PYMODULE'), + ('openpyxl.chart.data_source', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/data_source.py', + 'PYMODULE'), + ('openpyxl.chart.chartspace', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/chartspace.py', + 'PYMODULE'), + ('openpyxl.chart.bubble_chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/bubble_chart.py', + 'PYMODULE'), + ('openpyxl.chart.bar_chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/bar_chart.py', + 'PYMODULE'), + ('openpyxl.chart.axis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/axis.py', + 'PYMODULE'), + ('openpyxl.chart.area_chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/area_chart.py', + 'PYMODULE'), + ('openpyxl.chart._chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/_chart.py', + 'PYMODULE'), + ('openpyxl.chart._3d', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/_3d.py', + 'PYMODULE'), + ('openpyxl.chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/__init__.py', + 'PYMODULE'), + ('openpyxl.cell.text', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/cell/text.py', + 'PYMODULE'), + ('openpyxl.cell.rich_text', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/cell/rich_text.py', + 'PYMODULE'), + ('openpyxl.cell.read_only', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/cell/read_only.py', + 'PYMODULE'), + ('openpyxl.cell.cell', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/cell/cell.py', + 'PYMODULE'), + ('openpyxl.cell._writer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/cell/_writer.py', + 'PYMODULE'), + ('openpyxl.cell', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/cell/__init__.py', + 'PYMODULE'), + ('openpyxl._constants', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/_constants.py', + 'PYMODULE'), + ('openpyxl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/__init__.py', + 'PYMODULE'), + ('pandas.util.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/util/version/__init__.py', + 'PYMODULE'), + ('pandas.util._validators', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/util/_validators.py', + 'PYMODULE'), + ('pandas.util._tester', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/util/_tester.py', + 'PYMODULE'), + ('pandas.util._test_decorators', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/util/_test_decorators.py', + 'PYMODULE'), + ('pandas.util._print_versions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/util/_print_versions.py', + 'PYMODULE'), + ('pandas.util._exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/util/_exceptions.py', + 'PYMODULE'), + ('pandas.util._doctools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/util/_doctools.py', + 'PYMODULE'), + ('pandas.util._decorators', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/util/_decorators.py', + 'PYMODULE'), + ('pandas.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/util/__init__.py', + 'PYMODULE'), + ('pandas.tseries.offsets', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tseries/offsets.py', + 'PYMODULE'), + ('pandas.tseries.holiday', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tseries/holiday.py', + 'PYMODULE'), + ('dateutil.relativedelta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/relativedelta.py', + 'PYMODULE'), + ('dateutil', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/__init__.py', + 'PYMODULE'), + ('dateutil.rrule', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/rrule.py', + 'PYMODULE'), + ('dateutil.parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/parser/__init__.py', + 'PYMODULE'), + ('dateutil.parser.isoparser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/parser/isoparser.py', + 'PYMODULE'), + ('dateutil.parser._parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/parser/_parser.py', + 'PYMODULE'), + ('dateutil.tz', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/tz/__init__.py', + 'PYMODULE'), + ('dateutil.tz.tz', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/tz/tz.py', + 'PYMODULE'), + ('dateutil.zoneinfo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/zoneinfo/__init__.py', + 'PYMODULE'), + ('dateutil.tz.win', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/tz/win.py', + 'PYMODULE'), + ('dateutil.tz._factories', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/tz/_factories.py', + 'PYMODULE'), + ('dateutil.tz._common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/tz/_common.py', + 'PYMODULE'), + ('dateutil.easter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/easter.py', + 'PYMODULE'), + ('dateutil._version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/_version.py', + 'PYMODULE'), + ('dateutil._common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/_common.py', + 'PYMODULE'), + ('six', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/six.py', + 'PYMODULE'), + ('pandas.tseries.frequencies', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tseries/frequencies.py', + 'PYMODULE'), + ('pandas.tseries.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tseries/api.py', + 'PYMODULE'), + ('pandas.tseries', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tseries/__init__.py', + 'PYMODULE'), + ('pandas.tests.window.test_win_type', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_win_type.py', + 'PYMODULE'), + ('pandas.tests.window.test_timeseries_window', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_timeseries_window.py', + 'PYMODULE'), + ('pandas.tests.window.test_rolling_skew_kurt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_rolling_skew_kurt.py', + 'PYMODULE'), + ('pandas.tests.window.test_rolling_quantile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_rolling_quantile.py', + 'PYMODULE'), + ('pandas.tests.window.test_rolling_functions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_rolling_functions.py', + 'PYMODULE'), + ('pandas.tests.window.test_rolling', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_rolling.py', + 'PYMODULE'), + ('pandas.tests.window.test_pairwise', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_pairwise.py', + 'PYMODULE'), + ('pandas.tests.window.test_online', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_online.py', + 'PYMODULE'), + ('pandas.tests.window.test_numba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_numba.py', + 'PYMODULE'), + ('pandas.tests.window.test_groupby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_groupby.py', + 'PYMODULE'), + ('pandas.tests.window.test_expanding', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_expanding.py', + 'PYMODULE'), + ('pandas.tests.window.test_ewm', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_ewm.py', + 'PYMODULE'), + ('pandas.tests.window.test_dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_dtypes.py', + 'PYMODULE'), + ('pandas.tests.window.test_cython_aggregations', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_cython_aggregations.py', + 'PYMODULE'), + ('pandas.tests.window.test_base_indexer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_base_indexer.py', + 'PYMODULE'), + ('pandas.tests.window.test_apply', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_apply.py', + 'PYMODULE'), + ('pandas.tests.window.test_api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_api.py', + 'PYMODULE'), + ('pandas.tests.window.moments.test_moments_consistency_rolling', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/moments/test_moments_consistency_rolling.py', + 'PYMODULE'), + ('pandas.tests.window.moments.test_moments_consistency_expanding', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/moments/test_moments_consistency_expanding.py', + 'PYMODULE'), + ('pandas.tests.window.moments.test_moments_consistency_ewm', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/moments/test_moments_consistency_ewm.py', + 'PYMODULE'), + ('pandas.tests.window.moments.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/moments/conftest.py', + 'PYMODULE'), + ('pandas.tests.window.moments', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/moments/__init__.py', + 'PYMODULE'), + ('pandas.tests.window.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/conftest.py', + 'PYMODULE'), + ('pandas.tests.window', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/__init__.py', + 'PYMODULE'), + ('pandas.tests.util.test_validate_kwargs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_validate_kwargs.py', + 'PYMODULE'), + ('pandas.tests.util.test_validate_inclusive', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_validate_inclusive.py', + 'PYMODULE'), + ('pandas.tests.util.test_validate_args_and_kwargs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_validate_args_and_kwargs.py', + 'PYMODULE'), + ('pandas.tests.util.test_validate_args', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_validate_args.py', + 'PYMODULE'), + ('pandas.tests.util.test_util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_util.py', + 'PYMODULE'), + ('pandas.tests.util.test_show_versions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_show_versions.py', + 'PYMODULE'), + ('pandas.tests.util.test_shares_memory', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_shares_memory.py', + 'PYMODULE'), + ('pandas.tests.util.test_rewrite_warning', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_rewrite_warning.py', + 'PYMODULE'), + ('pandas.tests.util.test_numba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_numba.py', + 'PYMODULE'), + ('pandas.tests.util.test_hashing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_hashing.py', + 'PYMODULE'), + ('pandas.tests.util.test_doc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_doc.py', + 'PYMODULE'), + ('pandas.tests.util.test_deprecate_nonkeyword_arguments', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_deprecate_nonkeyword_arguments.py', + 'PYMODULE'), + ('pandas.tests.util.test_deprecate_kwarg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_deprecate_kwarg.py', + 'PYMODULE'), + ('pandas.tests.util.test_deprecate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_deprecate.py', + 'PYMODULE'), + ('pandas.tests.util.test_assert_series_equal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_assert_series_equal.py', + 'PYMODULE'), + ('pandas.tests.util.test_assert_produces_warning', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_assert_produces_warning.py', + 'PYMODULE'), + ('pandas.tests.util.test_assert_numpy_array_equal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_assert_numpy_array_equal.py', + 'PYMODULE'), + ('pandas.tests.util.test_assert_interval_array_equal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_assert_interval_array_equal.py', + 'PYMODULE'), + ('pandas.tests.util.test_assert_index_equal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_assert_index_equal.py', + 'PYMODULE'), + ('pandas.tests.util.test_assert_frame_equal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_assert_frame_equal.py', + 'PYMODULE'), + ('pandas.tests.util.test_assert_extension_array_equal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_assert_extension_array_equal.py', + 'PYMODULE'), + ('pandas.tests.util.test_assert_categorical_equal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_assert_categorical_equal.py', + 'PYMODULE'), + ('pandas.tests.util.test_assert_attr_equal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_assert_attr_equal.py', + 'PYMODULE'), + ('pandas.tests.util.test_assert_almost_equal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_assert_almost_equal.py', + 'PYMODULE'), + ('pandas.tests.util.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/conftest.py', + 'PYMODULE'), + ('pandas.tests.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/__init__.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_tzconversion', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_tzconversion.py', + 'PYMODULE'), + ('pytz', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/__init__.py', + 'PYMODULE'), + ('pytz.tzfile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/tzfile.py', + 'PYMODULE'), + ('pytz.tzinfo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/tzinfo.py', + 'PYMODULE'), + ('pytz.lazy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/lazy.py', + 'PYMODULE'), + ('pytz.exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/exceptions.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_to_offset', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_to_offset.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_timezones', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_timezones.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_timedeltas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_timedeltas.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_strptime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_strptime.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_resolution', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_resolution.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_period.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_parsing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_parsing.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_parse_iso8601', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_parse_iso8601.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_npy_units', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_npy_units.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_np_datetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_np_datetime.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_liboffsets', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_liboffsets.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_libfrequencies', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_libfrequencies.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_fields', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_fields.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_conversion', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_conversion.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_ccalendar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_ccalendar.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_array_to_datetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_array_to_datetime.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_api.py', + 'PYMODULE'), + ('pandas.tests.tslibs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/__init__.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_year', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_year.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_week', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_week.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_ticks', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_ticks.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_quarter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_quarter.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_offsets_properties', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_offsets_properties.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_offsets', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_offsets.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_month', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_month.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_index.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_fiscal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_fiscal.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_easter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_easter.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_dst', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_dst.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_custom_business_month', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_custom_business_month.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_custom_business_hour', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_custom_business_hour.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_custom_business_day', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_custom_business_day.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_common.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_business_year', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_business_year.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_business_quarter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_business_quarter.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_business_month', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_business_month.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_business_hour', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_business_hour.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_business_day', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_business_day.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/common.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/__init__.py', + 'PYMODULE'), + ('pandas.tests.tseries.holiday.test_observance', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/holiday/test_observance.py', + 'PYMODULE'), + ('pandas.tests.tseries.holiday.test_holiday', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/holiday/test_holiday.py', + 'PYMODULE'), + ('pandas.tests.tseries.holiday.test_federal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/holiday/test_federal.py', + 'PYMODULE'), + ('pandas.tests.tseries.holiday.test_calendar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/holiday/test_calendar.py', + 'PYMODULE'), + ('pandas.tests.tseries.holiday', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/holiday/__init__.py', + 'PYMODULE'), + ('pandas.tests.tseries.frequencies.test_inference', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/frequencies/test_inference.py', + 'PYMODULE'), + ('pandas.tests.tseries.frequencies.test_frequencies', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/frequencies/test_frequencies.py', + 'PYMODULE'), + ('pandas.tests.tseries.frequencies.test_freq_code', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/frequencies/test_freq_code.py', + 'PYMODULE'), + ('pandas.tests.tseries.frequencies', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/frequencies/__init__.py', + 'PYMODULE'), + ('pandas.tests.tseries', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/__init__.py', + 'PYMODULE'), + ('pandas.tests.tools.test_to_timedelta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tools/test_to_timedelta.py', + 'PYMODULE'), + ('pandas.tests.tools.test_to_time', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tools/test_to_time.py', + 'PYMODULE'), + ('pandas.tests.tools.test_to_numeric', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tools/test_to_numeric.py', + 'PYMODULE'), + ('pandas.tests.tools.test_to_datetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tools/test_to_datetime.py', + 'PYMODULE'), + ('pandas.tests.tools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tools/__init__.py', + 'PYMODULE'), + ('pandas.tests.test_take', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_take.py', + 'PYMODULE'), + ('pandas.tests.test_sorting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_sorting.py', + 'PYMODULE'), + ('pandas.tests.test_register_accessor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_register_accessor.py', + 'PYMODULE'), + ('pandas.tests.test_optional_dependency', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_optional_dependency.py', + 'PYMODULE'), + ('pandas.tests.test_nanops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_nanops.py', + 'PYMODULE'), + ('pandas.tests.test_multilevel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_multilevel.py', + 'PYMODULE'), + ('pandas.tests.test_flags', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_flags.py', + 'PYMODULE'), + ('pandas.tests.test_expressions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_expressions.py', + 'PYMODULE'), + ('pandas.tests.test_errors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_errors.py', + 'PYMODULE'), + ('pandas.tests.test_downstream', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_downstream.py', + 'PYMODULE'), + ('pandas.tests.test_common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_common.py', + 'PYMODULE'), + ('pandas.tests.test_algos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_algos.py', + 'PYMODULE'), + ('pandas.tests.test_aggregation', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_aggregation.py', + 'PYMODULE'), + ('pandas.tests.strings.test_strings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/strings/test_strings.py', + 'PYMODULE'), + ('pandas.tests.strings.test_string_array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/strings/test_string_array.py', + 'PYMODULE'), + ('pandas.tests.strings.test_split_partition', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/strings/test_split_partition.py', + 'PYMODULE'), + ('pandas.tests.strings.test_get_dummies', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/strings/test_get_dummies.py', + 'PYMODULE'), + ('pandas.tests.strings.test_find_replace', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/strings/test_find_replace.py', + 'PYMODULE'), + ('pandas.tests.strings.test_extract', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/strings/test_extract.py', + 'PYMODULE'), + ('pandas.tests.strings.test_cat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/strings/test_cat.py', + 'PYMODULE'), + ('pandas.tests.strings.test_case_justify', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/strings/test_case_justify.py', + 'PYMODULE'), + ('pandas.tests.strings.test_api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/strings/test_api.py', + 'PYMODULE'), + ('pandas.tests.strings.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/strings/conftest.py', + 'PYMODULE'), + ('pandas.tests.strings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/strings/__init__.py', + 'PYMODULE'), + ('pandas.tests.series.test_validate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_validate.py', + 'PYMODULE'), + ('pandas.tests.series.test_unary', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_unary.py', + 'PYMODULE'), + ('pandas.tests.series.test_ufunc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_ufunc.py', + 'PYMODULE'), + ('pandas.tests.series.test_subclass', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_subclass.py', + 'PYMODULE'), + ('pandas.tests.series.test_reductions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_reductions.py', + 'PYMODULE'), + ('pandas.tests.series.test_npfuncs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_npfuncs.py', + 'PYMODULE'), + ('pandas.tests.series.test_missing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_missing.py', + 'PYMODULE'), + ('pandas.tests.series.test_logical_ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_logical_ops.py', + 'PYMODULE'), + ('pandas.tests.series.test_iteration', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_iteration.py', + 'PYMODULE'), + ('pandas.tests.series.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_formats.py', + 'PYMODULE'), + ('pandas.tests.series.test_cumulative', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_cumulative.py', + 'PYMODULE'), + ('pandas.tests.series.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.series.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.series.test_api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_api.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_view', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_view.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_values', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_values.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_value_counts', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_value_counts.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_update', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_update.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_unstack', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_unstack.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_unique', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_unique.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_tz_localize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_tz_localize.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_truncate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_truncate.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_tolist', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_tolist.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_to_numpy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_to_numpy.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_to_frame', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_to_frame.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_to_dict', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_to_dict.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_to_csv', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_to_csv.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_sort_values', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_sort_values.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_sort_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_sort_index.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_size', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_size.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_set_name', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_set_name.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_searchsorted', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_searchsorted.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_round', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_round.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_reset_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_reset_index.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_replace', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_replace.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_repeat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_repeat.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_rename_axis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_rename_axis.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_rename', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_rename.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_reindex_like', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_reindex_like.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_reindex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_reindex.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_rank', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_rank.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_quantile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_quantile.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_pop', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_pop.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_pct_change', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_pct_change.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_nunique', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_nunique.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_nlargest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_nlargest.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_matmul', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_matmul.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_map', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_map.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_item', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_item.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_isna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_isna.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_isin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_isin.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_is_unique', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_is_unique.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_is_monotonic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_is_monotonic.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_interpolate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_interpolate.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_info', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_info.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_infer_objects', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_infer_objects.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_head_tail', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_head_tail.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_get_numeric_data', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_get_numeric_data.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_fillna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_fillna.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_explode', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_explode.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_equals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_equals.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_duplicated', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_duplicated.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_dtypes.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_dropna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_dropna.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_drop_duplicates', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_drop_duplicates.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_drop', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_drop.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_diff', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_diff.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_describe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_describe.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_cov_corr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_cov_corr.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_count', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_count.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_copy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_copy.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_convert_dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_convert_dtypes.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_compare', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_compare.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_combine_first', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_combine_first.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_combine', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_combine.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_clip', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_clip.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_case_when', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_case_when.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_between', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_between.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_autocorr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_autocorr.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_astype.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_asof', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_asof.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_argsort', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_argsort.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_align', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_align.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_add_prefix_suffix', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_add_prefix_suffix.py', + 'PYMODULE'), + ('pandas.tests.series.methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/__init__.py', + 'PYMODULE'), + ('pandas.tests.series.indexing.test_xs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/test_xs.py', + 'PYMODULE'), + ('pandas.tests.series.indexing.test_where', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/test_where.py', + 'PYMODULE'), + ('pandas.tests.series.indexing.test_take', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/test_take.py', + 'PYMODULE'), + ('pandas.tests.series.indexing.test_setitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/test_setitem.py', + 'PYMODULE'), + ('pandas.tests.series.indexing.test_set_value', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/test_set_value.py', + 'PYMODULE'), + ('pandas.tests.series.indexing.test_mask', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/test_mask.py', + 'PYMODULE'), + ('pandas.tests.series.indexing.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.series.indexing.test_getitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/test_getitem.py', + 'PYMODULE'), + ('pandas.tests.series.indexing.test_get', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/test_get.py', + 'PYMODULE'), + ('pandas.tests.series.indexing.test_delitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/test_delitem.py', + 'PYMODULE'), + ('pandas.tests.series.indexing.test_datetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/test_datetime.py', + 'PYMODULE'), + ('pandas.tests.series.indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/__init__.py', + 'PYMODULE'), + ('pandas.tests.series.accessors.test_struct_accessor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/accessors/test_struct_accessor.py', + 'PYMODULE'), + ('pandas.tests.series.accessors.test_str_accessor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/accessors/test_str_accessor.py', + 'PYMODULE'), + ('pandas.tests.series.accessors.test_sparse_accessor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/accessors/test_sparse_accessor.py', + 'PYMODULE'), + ('pandas.tests.series.accessors.test_list_accessor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/accessors/test_list_accessor.py', + 'PYMODULE'), + ('pandas.tests.series.accessors.test_dt_accessor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/accessors/test_dt_accessor.py', + 'PYMODULE'), + ('pandas.tests.series.accessors.test_cat_accessor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/accessors/test_cat_accessor.py', + 'PYMODULE'), + ('pandas.tests.series.accessors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/accessors/__init__.py', + 'PYMODULE'), + ('pandas.tests.series', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/__init__.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.test_timezones', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/test_timezones.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.test_timestamp', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/test_timestamp.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/test_formats.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/test_constructors.py', + 'PYMODULE'), + ('zoneinfo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/zoneinfo/__init__.py', + 'PYMODULE'), + ('zoneinfo._zoneinfo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/zoneinfo/_zoneinfo.py', + 'PYMODULE'), + ('zoneinfo._common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/zoneinfo/_common.py', + 'PYMODULE'), + ('zoneinfo._tzpath', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/zoneinfo/_tzpath.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.test_comparisons', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/test_comparisons.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.methods.test_tz_localize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/methods/test_tz_localize.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.methods.test_tz_convert', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/methods/test_tz_convert.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.methods.test_to_pydatetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/methods/test_to_pydatetime.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.methods.test_to_julian_date', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/methods/test_to_julian_date.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.methods.test_timestamp_method', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/methods/test_timestamp_method.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.methods.test_round', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/methods/test_round.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.methods.test_replace', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/methods/test_replace.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.methods.test_normalize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/methods/test_normalize.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.methods.test_as_unit', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/methods/test_as_unit.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/methods/__init__.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/__init__.py', + 'PYMODULE'), + ('pandas.tests.scalar.timedelta.test_timedelta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timedelta/test_timedelta.py', + 'PYMODULE'), + ('pandas.tests.scalar.timedelta.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timedelta/test_formats.py', + 'PYMODULE'), + ('pandas.tests.scalar.timedelta.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timedelta/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.scalar.timedelta.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timedelta/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.scalar.timedelta.methods.test_round', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timedelta/methods/test_round.py', + 'PYMODULE'), + ('pandas.tests.scalar.timedelta.methods.test_as_unit', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timedelta/methods/test_as_unit.py', + 'PYMODULE'), + ('pandas.tests.scalar.timedelta.methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timedelta/methods/__init__.py', + 'PYMODULE'), + ('pandas.tests.scalar.timedelta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timedelta/__init__.py', + 'PYMODULE'), + ('pandas.tests.scalar.test_nat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/test_nat.py', + 'PYMODULE'), + ('pandas.tests.scalar.test_na_scalar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/test_na_scalar.py', + 'PYMODULE'), + ('pandas.tests.scalar.period.test_period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/period/test_period.py', + 'PYMODULE'), + ('pandas.tests.scalar.period.test_asfreq', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/period/test_asfreq.py', + 'PYMODULE'), + ('pandas.tests.scalar.period.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/period/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.scalar.period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/period/__init__.py', + 'PYMODULE'), + ('pandas.tests.scalar.interval.test_overlaps', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/interval/test_overlaps.py', + 'PYMODULE'), + ('pandas.tests.scalar.interval.test_interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/interval/test_interval.py', + 'PYMODULE'), + ('pandas.tests.scalar.interval.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/interval/test_formats.py', + 'PYMODULE'), + ('pandas.tests.scalar.interval.test_contains', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/interval/test_contains.py', + 'PYMODULE'), + ('pandas.tests.scalar.interval.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/interval/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.scalar.interval.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/interval/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.scalar.interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/interval/__init__.py', + 'PYMODULE'), + ('pandas.tests.scalar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/__init__.py', + 'PYMODULE'), + ('pandas.tests.reshape.test_util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/test_util.py', + 'PYMODULE'), + ('pandas.tests.reshape.test_union_categoricals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/test_union_categoricals.py', + 'PYMODULE'), + ('pandas.tests.reshape.test_qcut', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/test_qcut.py', + 'PYMODULE'), + ('pandas.tests.reshape.test_pivot_multilevel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/test_pivot_multilevel.py', + 'PYMODULE'), + ('pandas.tests.reshape.test_pivot', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/test_pivot.py', + 'PYMODULE'), + ('pandas.tests.reshape.test_melt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/test_melt.py', + 'PYMODULE'), + ('pandas.tests.reshape.test_get_dummies', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/test_get_dummies.py', + 'PYMODULE'), + ('pandas.tests.reshape.test_from_dummies', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/test_from_dummies.py', + 'PYMODULE'), + ('pandas.tests.reshape.test_cut', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/test_cut.py', + 'PYMODULE'), + ('pandas.tests.reshape.test_crosstab', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/test_crosstab.py', + 'PYMODULE'), + ('pandas.tests.reshape.merge.test_multi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/merge/test_multi.py', + 'PYMODULE'), + ('pandas.tests.reshape.merge.test_merge_ordered', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/merge/test_merge_ordered.py', + 'PYMODULE'), + ('pandas.tests.reshape.merge.test_merge_index_as_string', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/merge/test_merge_index_as_string.py', + 'PYMODULE'), + ('pandas.tests.reshape.merge.test_merge_cross', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/merge/test_merge_cross.py', + 'PYMODULE'), + ('pandas.tests.reshape.merge.test_merge_asof', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/merge/test_merge_asof.py', + 'PYMODULE'), + ('pandas.tests.reshape.merge.test_merge', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/merge/test_merge.py', + 'PYMODULE'), + ('pandas.tests.reshape.merge.test_join', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/merge/test_join.py', + 'PYMODULE'), + ('pandas.tests.reshape.merge', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/merge/__init__.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.test_sort', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/test_sort.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.test_series', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/test_series.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.test_invalid', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/test_invalid.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.test_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/test_index.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.test_empty', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/test_empty.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.test_datetimes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/test_datetimes.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.test_dataframe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/test_dataframe.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.test_concat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/test_concat.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.test_categorical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/test_categorical.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.test_append_common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/test_append_common.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.test_append', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/test_append.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/conftest.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/__init__.py', + 'PYMODULE'), + ('pandas.tests.reshape', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/__init__.py', + 'PYMODULE'), + ('pandas.tests.resample.test_timedelta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/resample/test_timedelta.py', + 'PYMODULE'), + ('pandas.tests.resample.test_time_grouper', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/resample/test_time_grouper.py', + 'PYMODULE'), + ('pandas.tests.resample.test_resampler_grouper', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/resample/test_resampler_grouper.py', + 'PYMODULE'), + ('pandas.tests.resample.test_resample_api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/resample/test_resample_api.py', + 'PYMODULE'), + ('pandas.tests.resample.test_period_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/resample/test_period_index.py', + 'PYMODULE'), + ('pandas.tests.resample.test_datetime_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/resample/test_datetime_index.py', + 'PYMODULE'), + ('pandas.tests.resample.test_base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/resample/test_base.py', + 'PYMODULE'), + ('pandas.tests.resample.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/resample/conftest.py', + 'PYMODULE'), + ('pandas.tests.resample', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/resample/__init__.py', + 'PYMODULE'), + ('pandas.tests.reductions.test_stat_reductions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reductions/test_stat_reductions.py', + 'PYMODULE'), + ('pandas.tests.reductions.test_reductions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reductions/test_reductions.py', + 'PYMODULE'), + ('pandas.tests.reductions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reductions/__init__.py', + 'PYMODULE'), + ('pandas.tests.plotting.test_style', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/test_style.py', + 'PYMODULE'), + ('pandas.plotting._matplotlib.style', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_matplotlib/style.py', + 'PYMODULE'), + ('pandas.plotting._matplotlib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_matplotlib/__init__.py', + 'PYMODULE'), + ('pandas.plotting._matplotlib.misc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_matplotlib/misc.py', + 'PYMODULE'), + ('pandas.plotting._matplotlib.hist', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_matplotlib/hist.py', + 'PYMODULE'), + ('pandas.plotting._matplotlib.groupby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_matplotlib/groupby.py', + 'PYMODULE'), + ('pandas.plotting._matplotlib.core', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_matplotlib/core.py', + 'PYMODULE'), + ('pandas.plotting._matplotlib.timeseries', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_matplotlib/timeseries.py', + 'PYMODULE'), + ('pandas.plotting._matplotlib.converter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_matplotlib/converter.py', + 'PYMODULE'), + ('pandas.plotting._matplotlib.boxplot', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_matplotlib/boxplot.py', + 'PYMODULE'), + ('pandas.plotting._matplotlib.tools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_matplotlib/tools.py', + 'PYMODULE'), + ('pandas.tests.plotting.test_series', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/test_series.py', + 'PYMODULE'), + ('pandas.tests.plotting.test_misc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/test_misc.py', + 'PYMODULE'), + ('pandas.tests.plotting.test_hist_method', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/test_hist_method.py', + 'PYMODULE'), + ('pandas.tests.plotting.test_groupby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/test_groupby.py', + 'PYMODULE'), + ('pandas.tests.plotting.test_datetimelike', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/test_datetimelike.py', + 'PYMODULE'), + ('pandas.tests.plotting.test_converter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/test_converter.py', + 'PYMODULE'), + ('pandas.tests.plotting.test_common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/test_common.py', + 'PYMODULE'), + ('pandas.tests.plotting.test_boxplot_method', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/test_boxplot_method.py', + 'PYMODULE'), + ('pandas.tests.plotting.test_backend', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/test_backend.py', + 'PYMODULE'), + ('pandas.tests.plotting.frame.test_hist_box_by', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/frame/test_hist_box_by.py', + 'PYMODULE'), + ('pandas.tests.plotting.frame.test_frame_subplots', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/frame/test_frame_subplots.py', + 'PYMODULE'), + ('pandas.tests.plotting.frame.test_frame_legend', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/frame/test_frame_legend.py', + 'PYMODULE'), + ('pandas.tests.plotting.frame.test_frame_groupby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/frame/test_frame_groupby.py', + 'PYMODULE'), + ('pandas.tests.plotting.frame.test_frame_color', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/frame/test_frame_color.py', + 'PYMODULE'), + ('pandas.tests.plotting.frame.test_frame', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/frame/test_frame.py', + 'PYMODULE'), + ('pandas.tests.plotting.frame', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/frame/__init__.py', + 'PYMODULE'), + ('pandas.tests.plotting.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/conftest.py', + 'PYMODULE'), + ('pandas.tests.plotting.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/common.py', + 'PYMODULE'), + ('pandas.tests.plotting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/__init__.py', + 'PYMODULE'), + ('pandas.tests.libs.test_libalgos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/libs/test_libalgos.py', + 'PYMODULE'), + ('pandas.tests.libs.test_lib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/libs/test_lib.py', + 'PYMODULE'), + ('pandas.tests.libs.test_join', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/libs/test_join.py', + 'PYMODULE'), + ('pandas.tests.libs.test_hashtable', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/libs/test_hashtable.py', + 'PYMODULE'), + ('tracemalloc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/tracemalloc.py', + 'PYMODULE'), + ('pandas.tests.libs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/libs/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.xml.test_xml_dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/xml/test_xml_dtypes.py', + 'PYMODULE'), + ('pandas.tests.io.xml.test_xml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/xml/test_xml.py', + 'PYMODULE'), + ('pandas.tests.io.xml.test_to_xml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/xml/test_to_xml.py', + 'PYMODULE'), + ('pandas.tests.io.xml.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/xml/conftest.py', + 'PYMODULE'), + ('pandas.tests.io.xml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/xml/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.test_stata', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_stata.py', + 'PYMODULE'), + ('pandas.tests.io.test_sql', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_sql.py', + 'PYMODULE'), + ('sqlite3', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/sqlite3/__init__.py', + 'PYMODULE'), + ('sqlite3.dump', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/sqlite3/dump.py', + 'PYMODULE'), + ('sqlite3.__main__', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/sqlite3/__main__.py', + 'PYMODULE'), + ('sqlite3.dbapi2', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/sqlite3/dbapi2.py', + 'PYMODULE'), + ('pandas.tests.io.test_spss', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_spss.py', + 'PYMODULE'), + ('pandas.tests.io.test_s3', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_s3.py', + 'PYMODULE'), + ('pandas.tests.io.test_pickle', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_pickle.py', + 'PYMODULE'), + ('pandas.tests.io.test_parquet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_parquet.py', + 'PYMODULE'), + ('pandas.tests.io.test_orc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_orc.py', + 'PYMODULE'), + ('pandas.tests.io.test_http_headers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_http_headers.py', + 'PYMODULE'), + ('pandas.tests.io.test_html', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_html.py', + 'PYMODULE'), + ('pandas.tests.io.test_gcs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_gcs.py', + 'PYMODULE'), + ('pandas.tests.io.test_gbq', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_gbq.py', + 'PYMODULE'), + ('pandas.tests.io.test_fsspec', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_fsspec.py', + 'PYMODULE'), + ('pandas.tests.io.test_feather', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_feather.py', + 'PYMODULE'), + ('pandas.tests.io.test_compression', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_compression.py', + 'PYMODULE'), + ('pandas.tests.io.test_common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_common.py', + 'PYMODULE'), + ('pandas.tests.io.test_clipboard', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_clipboard.py', + 'PYMODULE'), + ('pandas.tests.io.sas.test_xport', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/sas/test_xport.py', + 'PYMODULE'), + ('pandas.tests.io.sas.test_sas7bdat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/sas/test_sas7bdat.py', + 'PYMODULE'), + ('pandas.tests.io.sas.test_sas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/sas/test_sas.py', + 'PYMODULE'), + ('pandas.tests.io.sas.test_byteswap', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/sas/test_byteswap.py', + 'PYMODULE'), + ('pandas.tests.io.sas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/sas/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_timezones', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_timezones.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_time_series', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_time_series.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_subclass', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_subclass.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_store', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_store.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_select', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_select.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_round_trip', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_round_trip.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_retain_attributes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_retain_attributes.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_read', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_read.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_pytables_missing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_pytables_missing.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_put', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_put.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_keys', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_keys.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_file_handling', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_file_handling.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_errors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_errors.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_complex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_complex.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_compat.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_categorical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_categorical.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_append', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_append.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/conftest.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/common.py', + 'PYMODULE'), + ('pandas.tests.io.pytables', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.parser.usecols.test_usecols_basic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/usecols/test_usecols_basic.py', + 'PYMODULE'), + ('pandas.tests.io.parser.usecols.test_strings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/usecols/test_strings.py', + 'PYMODULE'), + ('pandas.tests.io.parser.usecols.test_parse_dates', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/usecols/test_parse_dates.py', + 'PYMODULE'), + ('pandas.tests.io.parser.usecols', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/usecols/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_upcast', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_upcast.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_unsupported', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_unsupported.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_textreader', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_textreader.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_skiprows', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_skiprows.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_read_fwf', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_read_fwf.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_quoting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_quoting.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_python_parser_only', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_python_parser_only.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_parse_dates', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_parse_dates.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_network', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_network.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_na_values', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_na_values.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_multi_thread', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_multi_thread.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_mangle_dupes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_mangle_dupes.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_index_col', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_index_col.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_header', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_header.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_encoding', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_encoding.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_dialect', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_dialect.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_converters', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_converters.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_concatenate_chunks', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_concatenate_chunks.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_compression', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_compression.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_comment', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_comment.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_c_parser_only', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_c_parser_only.py', + 'PYMODULE'), + ('pandas.tests.io.parser.dtypes.test_empty', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/dtypes/test_empty.py', + 'PYMODULE'), + ('pandas.tests.io.parser.dtypes.test_dtypes_basic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/dtypes/test_dtypes_basic.py', + 'PYMODULE'), + ('pandas.tests.io.parser.dtypes.test_categorical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/dtypes/test_categorical.py', + 'PYMODULE'), + ('pandas.tests.io.parser.dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/dtypes/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.parser.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/conftest.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_verbose', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_verbose.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_read_errors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_read_errors.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_iterator', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_iterator.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_ints', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_ints.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_inf', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_inf.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_index.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_float', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_float.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_file_buffer_url', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_file_buffer_url.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_decimal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_decimal.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_data_list', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_data_list.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_common_basic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_common_basic.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_chunksize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_chunksize.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.json.test_ujson', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/json/test_ujson.py', + 'PYMODULE'), + ('pandas.tests.io.json.test_readlines', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/json/test_readlines.py', + 'PYMODULE'), + ('pandas.tests.io.json.test_pandas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/json/test_pandas.py', + 'PYMODULE'), + ('pandas.tests.io.json.test_normalize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/json/test_normalize.py', + 'PYMODULE'), + ('pandas.tests.io.json.test_json_table_schema_ext_dtype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/json/test_json_table_schema_ext_dtype.py', + 'PYMODULE'), + ('pandas.tests.io.json.test_json_table_schema', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/json/test_json_table_schema.py', + 'PYMODULE'), + ('pandas.tests.io.json.test_deprecated_kwargs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/json/test_deprecated_kwargs.py', + 'PYMODULE'), + ('pandas.tests.io.json.test_compression', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/json/test_compression.py', + 'PYMODULE'), + ('pandas.tests.io.json.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/json/conftest.py', + 'PYMODULE'), + ('pandas.tests.io.json', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/json/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.generate_legacy_storage_files', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/generate_legacy_storage_files.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_to_string', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_to_string.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_to_markdown', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_to_markdown.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_to_latex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_to_latex.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_to_html', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_to_html.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_to_excel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_to_excel.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_to_csv', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_to_csv.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_printing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_printing.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_ipython_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_ipython_compat.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_format', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_format.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_eng_formatting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_eng_formatting.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_css', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_css.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_console', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_console.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style.test_tooltip', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/test_tooltip.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style.test_to_string', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/test_to_string.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style.test_to_latex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/test_to_latex.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style.test_style', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/test_style.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style.test_non_unique', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/test_non_unique.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style.test_matplotlib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/test_matplotlib.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style.test_html', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/test_html.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style.test_highlight', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/test_highlight.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style.test_format', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/test_format.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style.test_exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/test_exceptions.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style.test_bar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/test_bar.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.excel.test_xlsxwriter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/excel/test_xlsxwriter.py', + 'PYMODULE'), + ('pandas.tests.io.excel.test_xlrd', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/excel/test_xlrd.py', + 'PYMODULE'), + ('xlrd.biffh', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlrd/biffh.py', + 'PYMODULE'), + ('xlrd', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlrd/__init__.py', + 'PYMODULE'), + ('xlrd.xldate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlrd/xldate.py', + 'PYMODULE'), + ('xlrd.info', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlrd/info.py', + 'PYMODULE'), + ('xlrd.formula', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlrd/formula.py', + 'PYMODULE'), + ('xlrd.book', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlrd/book.py', + 'PYMODULE'), + ('xlrd.sheet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlrd/sheet.py', + 'PYMODULE'), + ('xlrd.formatting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlrd/formatting.py', + 'PYMODULE'), + ('xlrd.compdoc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlrd/compdoc.py', + 'PYMODULE'), + ('xlrd.timemachine', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlrd/timemachine.py', + 'PYMODULE'), + ('pandas.tests.io.excel.test_writers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/excel/test_writers.py', + 'PYMODULE'), + ('pandas.tests.io.excel.test_style', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/excel/test_style.py', + 'PYMODULE'), + ('pandas.tests.io.excel.test_readers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/excel/test_readers.py', + 'PYMODULE'), + ('pandas.tests.io.excel.test_openpyxl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/excel/test_openpyxl.py', + 'PYMODULE'), + ('pandas.tests.io.excel.test_odswriter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/excel/test_odswriter.py', + 'PYMODULE'), + ('pandas.tests.io.excel.test_odf', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/excel/test_odf.py', + 'PYMODULE'), + ('pandas.tests.io.excel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/excel/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/conftest.py', + 'PYMODULE'), + ('pandas.tests.io', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/__init__.py', + 'PYMODULE'), + ('pandas.tests.internals.test_managers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/internals/test_managers.py', + 'PYMODULE'), + ('pandas.tests.internals.test_internals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/internals/test_internals.py', + 'PYMODULE'), + ('pandas.tests.internals.test_api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/internals/test_api.py', + 'PYMODULE'), + ('pandas.tests.internals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/internals/__init__.py', + 'PYMODULE'), + ('pandas.tests.interchange.test_utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/interchange/test_utils.py', + 'PYMODULE'), + ('pandas.tests.interchange.test_spec_conformance', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/interchange/test_spec_conformance.py', + 'PYMODULE'), + ('pandas.tests.interchange.test_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/interchange/test_impl.py', + 'PYMODULE'), + ('pandas.tests.interchange', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/interchange/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_scalar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_scalar.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_partial', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_partial.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_na_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_na_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_loc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_loc.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_indexers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_indexers.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_iloc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_iloc.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_iat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_iat.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_floats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_floats.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_datetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_datetime.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_coercion', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_coercion.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_check_indexer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_check_indexer.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_chaining_and_caching', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_chaining_and_caching.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_categorical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_categorical.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_at', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_at.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex.test_sorted', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/test_sorted.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex.test_slice', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/test_slice.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex.test_setitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/test_setitem.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex.test_partial', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/test_partial.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex.test_multiindex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/test_multiindex.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex.test_loc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/test_loc.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex.test_indexing_slow', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/test_indexing_slow.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex.test_iloc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/test_iloc.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex.test_getitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/test_getitem.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex.test_datetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/test_datetime.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex.test_chaining_and_caching', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/test_chaining_and_caching.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexing.interval.test_interval_new', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/interval/test_interval_new.py', + 'PYMODULE'), + ('pandas.tests.indexing.interval.test_interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/interval/test_interval.py', + 'PYMODULE'), + ('pandas.tests.indexing.interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/interval/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexing.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/conftest.py', + 'PYMODULE'), + ('pandas.tests.indexing.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/common.py', + 'PYMODULE'), + ('pandas.tests.indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_timedelta_range', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_timedelta_range.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_timedelta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_timedelta.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_setops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_setops.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_searchsorted', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_searchsorted.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_scalar_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_scalar_compat.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_pickle', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_pickle.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_ops.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_join', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_join.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_freq_attr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_freq_attr.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_formats.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_delete', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_delete.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.methods.test_shift', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/methods/test_shift.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.methods.test_repeat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/methods/test_repeat.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.methods.test_insert', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/methods/test_insert.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.methods.test_fillna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/methods/test_fillna.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.methods.test_factorize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/methods/test_factorize.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.methods.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/methods/test_astype.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/methods/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_subclass', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_subclass.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_setops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_setops.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_old_base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_old_base.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_numpy_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_numpy_compat.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_index_new', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_index_new.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_frozen', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_frozen.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_engines', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_engines.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_datetimelike', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_datetimelike.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_common.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_base.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_any_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_any_index.py', + 'PYMODULE'), + ('pandas.tests.indexes.ranges.test_setops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/ranges/test_setops.py', + 'PYMODULE'), + ('pandas.tests.indexes.ranges.test_range', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/ranges/test_range.py', + 'PYMODULE'), + ('pandas.tests.indexes.ranges.test_join', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/ranges/test_join.py', + 'PYMODULE'), + ('pandas.tests.indexes.ranges.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/ranges/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.ranges.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/ranges/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.indexes.ranges', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/ranges/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_tools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_tools.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_setops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_setops.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_searchsorted', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_searchsorted.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_scalar_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_scalar_compat.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_resolution', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_resolution.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_pickle', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_pickle.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_period_range', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_period_range.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_period.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_partial_slicing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_partial_slicing.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_monotonic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_monotonic.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_join', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_join.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_freq_attr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_freq_attr.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_formats.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.methods.test_to_timestamp', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/methods/test_to_timestamp.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.methods.test_shift', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/methods/test_shift.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.methods.test_repeat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/methods/test_repeat.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.methods.test_is_full', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/methods/test_is_full.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.methods.test_insert', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/methods/test_insert.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.methods.test_fillna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/methods/test_fillna.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.methods.test_factorize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/methods/test_factorize.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.methods.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/methods/test_astype.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.methods.test_asfreq', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/methods/test_asfreq.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/methods/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.object.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/object/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.object.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/object/test_astype.py', + 'PYMODULE'), + ('pandas.tests.indexes.object', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/object/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.numeric.test_setops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/numeric/test_setops.py', + 'PYMODULE'), + ('pandas.tests.indexes.numeric.test_numeric', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/numeric/test_numeric.py', + 'PYMODULE'), + ('pandas.tests.indexes.numeric.test_join', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/numeric/test_join.py', + 'PYMODULE'), + ('pandas.tests.indexes.numeric.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/numeric/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.numeric.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/numeric/test_astype.py', + 'PYMODULE'), + ('pandas.tests.indexes.numeric', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/numeric/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_take', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_take.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_sorting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_sorting.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_setops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_setops.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_reshape', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_reshape.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_reindex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_reindex.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_pickle', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_pickle.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_partial_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_partial_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_names', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_names.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_monotonic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_monotonic.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_missing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_missing.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_lexsort', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_lexsort.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_join', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_join.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_isin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_isin.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_integrity', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_integrity.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_get_set', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_get_set.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_get_level_values', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_get_level_values.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_formats.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_equivalence', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_equivalence.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_duplicates', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_duplicates.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_drop', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_drop.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_copy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_copy.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_conversion', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_conversion.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_compat.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_astype.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_analytics', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_analytics.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/conftest.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval.test_setops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/test_setops.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval.test_pickle', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/test_pickle.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval.test_join', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/test_join.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval.test_interval_tree', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/test_interval_tree.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval.test_interval_range', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/test_interval_range.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval.test_interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/test_interval.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/test_formats.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval.test_equals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/test_equals.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/test_astype.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_timezones', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_timezones.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_setops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_setops.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_scalar_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_scalar_compat.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_reindex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_reindex.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_pickle', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_pickle.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_partial_slicing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_partial_slicing.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_ops.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_npfuncs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_npfuncs.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_join', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_join.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_iter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_iter.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_freq_attr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_freq_attr.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_formats.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_datetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_datetime.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_date_range', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_date_range.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_unique', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_unique.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_tz_localize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_tz_localize.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_tz_convert', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_tz_convert.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_to_series', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_to_series.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_to_pydatetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_to_pydatetime.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_to_period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_to_period.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_to_julian_date', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_to_julian_date.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_to_frame', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_to_frame.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_snap', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_snap.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_shift', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_shift.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_round', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_round.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_resolution', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_resolution.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_repeat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_repeat.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_normalize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_normalize.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_map', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_map.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_isocalendar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_isocalendar.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_insert', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_insert.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_fillna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_fillna.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_factorize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_factorize.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_delete', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_delete.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_astype.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_asof', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_asof.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimelike_.test_value_counts', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimelike_/test_value_counts.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimelike_.test_sort_values', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimelike_/test_sort_values.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimelike_.test_nat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimelike_/test_nat.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimelike_.test_is_monotonic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimelike_/test_is_monotonic.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimelike_.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimelike_/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimelike_.test_equals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimelike_/test_equals.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimelike_.test_drop_duplicates', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimelike_/test_drop_duplicates.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimelike_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimelike_/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/conftest.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical.test_setops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/test_setops.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical.test_reindex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/test_reindex.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical.test_map', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/test_map.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/test_formats.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical.test_fillna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/test_fillna.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical.test_equals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/test_equals.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical.test_category', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/test_category.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/test_astype.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical.test_append', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/test_append.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.base_class.test_where', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/base_class/test_where.py', + 'PYMODULE'), + ('pandas.tests.indexes.base_class.test_setops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/base_class/test_setops.py', + 'PYMODULE'), + ('pandas.tests.indexes.base_class.test_reshape', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/base_class/test_reshape.py', + 'PYMODULE'), + ('pandas.tests.indexes.base_class.test_pickle', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/base_class/test_pickle.py', + 'PYMODULE'), + ('pandas.tests.indexes.base_class.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/base_class/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.base_class.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/base_class/test_formats.py', + 'PYMODULE'), + ('pandas.tests.indexes.base_class.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/base_class/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.indexes.base_class', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/base_class/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/__init__.py', + 'PYMODULE'), + ('pandas.tests.groupby.transform.test_transform', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/transform/test_transform.py', + 'PYMODULE'), + ('pandas.tests.groupby.transform.test_numba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/transform/test_numba.py', + 'PYMODULE'), + ('pandas.tests.groupby.transform', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/transform/__init__.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_timegrouper', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_timegrouper.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_reductions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_reductions.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_raises', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_raises.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_pipe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_pipe.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_numeric_only', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_numeric_only.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_numba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_numba.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_missing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_missing.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_libgroupby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_libgroupby.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_index_as_string', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_index_as_string.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_grouping', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_grouping.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_groupby_subclass', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_groupby_subclass.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_groupby_dropna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_groupby_dropna.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_groupby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_groupby.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_filters', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_filters.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_cumulative', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_cumulative.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_counting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_counting.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_categorical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_categorical.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_bin_groupby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_bin_groupby.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_apply_mutate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_apply_mutate.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_apply', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_apply.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_api.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_all_methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_all_methods.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_value_counts', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_value_counts.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_skew', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_skew.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_size', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_size.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_sample', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_sample.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_rank', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_rank.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_quantile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_quantile.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_nth', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_nth.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_nlargest_nsmallest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_nlargest_nsmallest.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_is_monotonic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_is_monotonic.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_groupby_shift_diff', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_groupby_shift_diff.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_describe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_describe.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_corrwith', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_corrwith.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/__init__.py', + 'PYMODULE'), + ('pandas.tests.groupby.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/conftest.py', + 'PYMODULE'), + ('pandas.tests.groupby.aggregate.test_other', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/aggregate/test_other.py', + 'PYMODULE'), + ('pandas.tests.groupby.aggregate.test_numba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/aggregate/test_numba.py', + 'PYMODULE'), + ('pandas.tests.groupby.aggregate.test_cython', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/aggregate/test_cython.py', + 'PYMODULE'), + ('pandas.tests.groupby.aggregate.test_aggregate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/aggregate/test_aggregate.py', + 'PYMODULE'), + ('pandas.tests.groupby.aggregate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/aggregate/__init__.py', + 'PYMODULE'), + ('pandas.tests.groupby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/__init__.py', + 'PYMODULE'), + ('pandas.tests.generic.test_to_xarray', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/generic/test_to_xarray.py', + 'PYMODULE'), + ('pandas.tests.generic.test_series', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/generic/test_series.py', + 'PYMODULE'), + ('pandas.tests.generic.test_label_or_level_utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/generic/test_label_or_level_utils.py', + 'PYMODULE'), + ('pandas.tests.generic.test_generic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/generic/test_generic.py', + 'PYMODULE'), + ('pandas.tests.generic.test_frame', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/generic/test_frame.py', + 'PYMODULE'), + ('pandas.tests.generic.test_finalize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/generic/test_finalize.py', + 'PYMODULE'), + ('pandas.tests.generic.test_duplicate_labels', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/generic/test_duplicate_labels.py', + 'PYMODULE'), + ('pandas.tests.generic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/generic/__init__.py', + 'PYMODULE'), + ('pandas.tests.frame.test_validate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_validate.py', + 'PYMODULE'), + ('pandas.tests.frame.test_unary', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_unary.py', + 'PYMODULE'), + ('pandas.tests.frame.test_ufunc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_ufunc.py', + 'PYMODULE'), + ('pandas.tests.frame.test_subclass', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_subclass.py', + 'PYMODULE'), + ('pandas.tests.frame.test_stack_unstack', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_stack_unstack.py', + 'PYMODULE'), + ('pandas.tests.frame.test_repr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_repr.py', + 'PYMODULE'), + ('pandas.tests.frame.test_reductions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_reductions.py', + 'PYMODULE'), + ('pandas.tests.frame.test_query_eval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_query_eval.py', + 'PYMODULE'), + ('pandas.tests.frame.test_npfuncs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_npfuncs.py', + 'PYMODULE'), + ('pandas.tests.frame.test_nonunique_indexes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_nonunique_indexes.py', + 'PYMODULE'), + ('pandas.tests.frame.test_logical_ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_logical_ops.py', + 'PYMODULE'), + ('pandas.tests.frame.test_iteration', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_iteration.py', + 'PYMODULE'), + ('pandas.tests.frame.test_cumulative', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_cumulative.py', + 'PYMODULE'), + ('pandas.tests.frame.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.frame.test_block_internals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_block_internals.py', + 'PYMODULE'), + ('pandas.tests.frame.test_arrow_interface', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_arrow_interface.py', + 'PYMODULE'), + ('pandas.tests.frame.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.frame.test_api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_api.py', + 'PYMODULE'), + ('pandas.tests.frame.test_alter_axes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_alter_axes.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_values', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_values.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_value_counts', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_value_counts.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_update', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_update.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_tz_localize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_tz_localize.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_tz_convert', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_tz_convert.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_truncate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_truncate.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_transpose', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_transpose.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_to_timestamp', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_to_timestamp.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_to_records', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_to_records.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_to_period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_to_period.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_to_numpy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_to_numpy.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_to_dict_of_blocks', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_to_dict_of_blocks.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_to_dict', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_to_dict.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_to_csv', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_to_csv.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_swaplevel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_swaplevel.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_swapaxes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_swapaxes.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_sort_values', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_sort_values.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_sort_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_sort_index.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_size', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_size.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_shift', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_shift.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_set_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_set_index.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_set_axis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_set_axis.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_select_dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_select_dtypes.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_sample', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_sample.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_round', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_round.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_reset_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_reset_index.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_replace', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_replace.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_reorder_levels', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_reorder_levels.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_rename_axis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_rename_axis.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_rename', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_rename.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_reindex_like', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_reindex_like.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_reindex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_reindex.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_rank', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_rank.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_quantile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_quantile.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_pop', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_pop.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_pipe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_pipe.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_pct_change', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_pct_change.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_nlargest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_nlargest.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_matmul', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_matmul.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_map', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_map.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_join', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_join.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_iterrows', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_iterrows.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_isin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_isin.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_isetitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_isetitem.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_is_homogeneous_dtype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_is_homogeneous_dtype.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_interpolate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_interpolate.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_info', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_info.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_infer_objects', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_infer_objects.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_head_tail', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_head_tail.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_get_numeric_data', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_get_numeric_data.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_first_valid_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_first_valid_index.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_first_and_last', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_first_and_last.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_filter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_filter.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_fillna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_fillna.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_explode', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_explode.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_equals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_equals.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_duplicated', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_duplicated.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_dtypes.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_dropna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_dropna.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_droplevel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_droplevel.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_drop_duplicates', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_drop_duplicates.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_drop', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_drop.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_dot', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_dot.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_diff', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_diff.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_describe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_describe.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_cov_corr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_cov_corr.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_count', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_count.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_copy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_copy.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_convert_dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_convert_dtypes.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_compare', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_compare.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_combine_first', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_combine_first.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_combine', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_combine.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_clip', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_clip.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_between_time', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_between_time.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_at_time', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_at_time.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_astype.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_assign', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_assign.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_asof', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_asof.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_asfreq', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_asfreq.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_align', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_align.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_add_prefix_suffix', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_add_prefix_suffix.py', + 'PYMODULE'), + ('pandas.tests.frame.methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/__init__.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_xs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_xs.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_where', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_where.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_take', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_take.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_setitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_setitem.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_set_value', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_set_value.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_mask', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_mask.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_insert', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_insert.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_getitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_getitem.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_get_value', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_get_value.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_get', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_get.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_delitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_delitem.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_coercion', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_coercion.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/__init__.py', + 'PYMODULE'), + ('pandas.tests.frame.constructors.test_from_records', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/constructors/test_from_records.py', + 'PYMODULE'), + ('pandas.tests.frame.constructors.test_from_dict', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/constructors/test_from_dict.py', + 'PYMODULE'), + ('pandas.tests.frame.constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/constructors/__init__.py', + 'PYMODULE'), + ('pandas.tests.frame.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/conftest.py', + 'PYMODULE'), + ('pandas.tests.frame.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/common.py', + 'PYMODULE'), + ('pandas.tests.frame', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/__init__.py', + 'PYMODULE'), + ('pandas.tests.extension.test_string', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/test_string.py', + 'PYMODULE'), + ('pandas.tests.extension.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/__init__.py', + 'PYMODULE'), + ('pandas.tests.extension.base.setitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/setitem.py', + 'PYMODULE'), + ('pandas.tests.extension.base.reshaping', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/reshaping.py', + 'PYMODULE'), + ('pandas.tests.extension.base.reduce', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/reduce.py', + 'PYMODULE'), + ('pandas.tests.extension.base.printing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/printing.py', + 'PYMODULE'), + ('pandas.tests.extension.base.ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/ops.py', + 'PYMODULE'), + ('pandas.tests.extension.base.missing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/missing.py', + 'PYMODULE'), + ('pandas.tests.extension.base.methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/methods.py', + 'PYMODULE'), + ('pandas.tests.extension.base.io', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/io.py', + 'PYMODULE'), + ('pandas.tests.extension.base.interface', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/interface.py', + 'PYMODULE'), + ('pandas.tests.extension.base.index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/index.py', + 'PYMODULE'), + ('pandas.tests.extension.base.groupby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/groupby.py', + 'PYMODULE'), + ('pandas.tests.extension.base.getitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/getitem.py', + 'PYMODULE'), + ('pandas.tests.extension.base.dtype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/dtype.py', + 'PYMODULE'), + ('pandas.tests.extension.base.dim2', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/dim2.py', + 'PYMODULE'), + ('pandas.tests.extension.base.constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/constructors.py', + 'PYMODULE'), + ('pandas.tests.extension.base.casting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/casting.py', + 'PYMODULE'), + ('pandas.tests.extension.base.accumulate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/accumulate.py', + 'PYMODULE'), + ('pandas.tests.extension.test_sparse', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/test_sparse.py', + 'PYMODULE'), + ('pandas.tests.extension.test_period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/test_period.py', + 'PYMODULE'), + ('pandas.tests.extension.test_numpy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/test_numpy.py', + 'PYMODULE'), + ('pandas.tests.extension.test_masked', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/test_masked.py', + 'PYMODULE'), + ('pandas.tests.extension.test_interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/test_interval.py', + 'PYMODULE'), + ('pandas.tests.extension.test_extension', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/test_extension.py', + 'PYMODULE'), + ('pandas.tests.extension.test_datetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/test_datetime.py', + 'PYMODULE'), + ('pandas.tests.extension.test_common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/test_common.py', + 'PYMODULE'), + ('pandas.tests.extension.test_categorical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/test_categorical.py', + 'PYMODULE'), + ('pandas.tests.extension.test_arrow', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/test_arrow.py', + 'PYMODULE'), + ('pandas.tests.extension.list.test_list', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/list/test_list.py', + 'PYMODULE'), + ('pandas.tests.extension.list.array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/list/array.py', + 'PYMODULE'), + ('pandas.tests.extension.list', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/list/__init__.py', + 'PYMODULE'), + ('pandas.tests.extension.json.test_json', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/json/test_json.py', + 'PYMODULE'), + ('pandas.tests.extension.json.array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/json/array.py', + 'PYMODULE'), + ('pandas.tests.extension.json', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/json/__init__.py', + 'PYMODULE'), + ('pandas.tests.extension.decimal.test_decimal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/decimal/test_decimal.py', + 'PYMODULE'), + ('pandas.tests.extension.decimal.array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/decimal/array.py', + 'PYMODULE'), + ('pandas.tests.extension.decimal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/decimal/__init__.py', + 'PYMODULE'), + ('pandas.tests.extension.date.array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/date/array.py', + 'PYMODULE'), + ('pandas.tests.extension.date', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/date/__init__.py', + 'PYMODULE'), + ('pandas.tests.extension.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/conftest.py', + 'PYMODULE'), + ('pandas.tests.extension.array_with_attr.test_array_with_attr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/array_with_attr/test_array_with_attr.py', + 'PYMODULE'), + ('pandas.tests.extension.array_with_attr.array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/array_with_attr/array.py', + 'PYMODULE'), + ('pandas.tests.extension.array_with_attr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/array_with_attr/__init__.py', + 'PYMODULE'), + ('pandas.tests.extension', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/__init__.py', + 'PYMODULE'), + ('pandas.tests.dtypes.test_missing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/test_missing.py', + 'PYMODULE'), + ('pandas.tests.dtypes.test_inference', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/test_inference.py', + 'PYMODULE'), + ('pandas.tests.dtypes.test_generic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/test_generic.py', + 'PYMODULE'), + ('pandas.tests.dtypes.test_dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/test_dtypes.py', + 'PYMODULE'), + ('pandas.tests.dtypes.test_concat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/test_concat.py', + 'PYMODULE'), + ('pandas.tests.dtypes.test_common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/test_common.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast.test_promote', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/test_promote.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast.test_maybe_box_native', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/test_maybe_box_native.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast.test_infer_dtype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/test_infer_dtype.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast.test_infer_datetimelike', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/test_infer_datetimelike.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast.test_find_common_type', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/test_find_common_type.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast.test_downcast', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/test_downcast.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast.test_dict_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/test_dict_compat.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast.test_construct_object_arr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/test_construct_object_arr.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast.test_construct_ndarray', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/test_construct_ndarray.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast.test_construct_from_scalar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/test_construct_from_scalar.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast.test_can_hold_element', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/test_can_hold_element.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/__init__.py', + 'PYMODULE'), + ('pandas.tests.dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/__init__.py', + 'PYMODULE'), + ('pandas.tests.copy_view.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/util.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_util.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_setitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_setitem.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_replace', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_replace.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_methods.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_interp_fillna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_interp_fillna.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_internals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_internals.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_functions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_functions.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_core_functionalities', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_core_functionalities.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_clip', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_clip.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_chained_assignment_deprecation', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_chained_assignment_deprecation.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_astype.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_array.py', + 'PYMODULE'), + ('pandas.tests.copy_view.index.test_timedeltaindex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/index/test_timedeltaindex.py', + 'PYMODULE'), + ('pandas.tests.copy_view.index.test_periodindex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/index/test_periodindex.py', + 'PYMODULE'), + ('pandas.tests.copy_view.index.test_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/index/test_index.py', + 'PYMODULE'), + ('pandas.tests.copy_view.index.test_datetimeindex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/index/test_datetimeindex.py', + 'PYMODULE'), + ('pandas.tests.copy_view.index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/index/__init__.py', + 'PYMODULE'), + ('pandas.tests.copy_view', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/__init__.py', + 'PYMODULE'), + ('pandas.tests.construction.test_extract_array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/construction/test_extract_array.py', + 'PYMODULE'), + ('pandas.tests.construction', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/construction/__init__.py', + 'PYMODULE'), + ('pandas.tests.config.test_localization', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/config/test_localization.py', + 'PYMODULE'), + ('pandas.tests.config.test_config', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/config/test_config.py', + 'PYMODULE'), + ('pandas.tests.config', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/config/__init__.py', + 'PYMODULE'), + ('pandas.tests.computation.test_eval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/computation/test_eval.py', + 'PYMODULE'), + ('numexpr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numexpr/__init__.py', + 'PYMODULE'), + ('numexpr.tests', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numexpr/tests/__init__.py', + 'PYMODULE'), + ('numexpr.tests.test_numexpr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numexpr/tests/test_numexpr.py', + 'PYMODULE'), + ('numexpr.cpuinfo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numexpr/cpuinfo.py', + 'PYMODULE'), + ('numexpr.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numexpr/utils.py', + 'PYMODULE'), + ('numexpr.necompiler', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numexpr/necompiler.py', + 'PYMODULE'), + ('numexpr.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numexpr/version.py', + 'PYMODULE'), + ('numexpr.expressions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numexpr/expressions.py', + 'PYMODULE'), + ('pandas.tests.computation.test_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/computation/test_compat.py', + 'PYMODULE'), + ('pandas.tests.computation', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/computation/__init__.py', + 'PYMODULE'), + ('pandas.tests.base.test_value_counts', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/base/test_value_counts.py', + 'PYMODULE'), + ('pandas.tests.base.test_unique', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/base/test_unique.py', + 'PYMODULE'), + ('pandas.tests.base.test_transpose', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/base/test_transpose.py', + 'PYMODULE'), + ('pandas.tests.base.test_misc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/base/test_misc.py', + 'PYMODULE'), + ('pandas.tests.base.test_fillna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/base/test_fillna.py', + 'PYMODULE'), + ('pandas.tests.base.test_conversion', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/base/test_conversion.py', + 'PYMODULE'), + ('pandas.tests.base.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/base/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.base.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/base/common.py', + 'PYMODULE'), + ('pandas.tests.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/base/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.timedeltas.test_reductions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/timedeltas/test_reductions.py', + 'PYMODULE'), + ('pandas.tests.arrays.timedeltas.test_cumulative', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/timedeltas/test_cumulative.py', + 'PYMODULE'), + ('pandas.tests.arrays.timedeltas.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/timedeltas/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.arrays.timedeltas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/timedeltas/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.test_timedeltas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/test_timedeltas.py', + 'PYMODULE'), + ('pandas.tests.arrays.test_period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/test_period.py', + 'PYMODULE'), + ('pandas.tests.arrays.test_ndarray_backed', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/test_ndarray_backed.py', + 'PYMODULE'), + ('pandas.tests.arrays.test_datetimes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/test_datetimes.py', + 'PYMODULE'), + ('pandas.tests.arrays.test_datetimelike', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/test_datetimelike.py', + 'PYMODULE'), + ('pandas.tests.arrays.test_array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/test_array.py', + 'PYMODULE'), + ('pandas.tests.arrays.string_.test_string_arrow', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/string_/test_string_arrow.py', + 'PYMODULE'), + ('pandas.tests.arrays.string_.test_string', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/string_/test_string.py', + 'PYMODULE'), + ('pandas.tests.arrays.string_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/string_/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse.test_unary', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/test_unary.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse.test_reductions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/test_reductions.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse.test_libsparse', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/test_libsparse.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse.test_dtype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/test_dtype.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse.test_combine_concat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/test_combine_concat.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/test_astype.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse.test_array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/test_array.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse.test_arithmetics', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/test_arithmetics.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse.test_accessor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/test_accessor.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.period.test_reductions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/period/test_reductions.py', + 'PYMODULE'), + ('pandas.tests.arrays.period.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/period/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.arrays.period.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/period/test_astype.py', + 'PYMODULE'), + ('pandas.tests.arrays.period.test_arrow_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/period/test_arrow_compat.py', + 'PYMODULE'), + ('pandas.tests.arrays.period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/period/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.numpy_.test_numpy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/numpy_/test_numpy.py', + 'PYMODULE'), + ('pandas.tests.arrays.numpy_.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/numpy_/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.arrays.numpy_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/numpy_/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.masked_shared', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/masked_shared.py', + 'PYMODULE'), + ('pandas.tests.arrays.masked.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/masked/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.arrays.masked.test_function', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/masked/test_function.py', + 'PYMODULE'), + ('pandas.tests.arrays.masked.test_arrow_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/masked/test_arrow_compat.py', + 'PYMODULE'), + ('pandas.tests.arrays.masked.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/masked/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.arrays.masked', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/masked/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.interval.test_overlaps', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/interval/test_overlaps.py', + 'PYMODULE'), + ('pandas.tests.arrays.interval.test_interval_pyarrow', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/interval/test_interval_pyarrow.py', + 'PYMODULE'), + ('pandas.tests.arrays.interval.test_interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/interval/test_interval.py', + 'PYMODULE'), + ('pandas.tests.arrays.interval.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/interval/test_formats.py', + 'PYMODULE'), + ('pandas.tests.arrays.interval.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/interval/test_astype.py', + 'PYMODULE'), + ('pandas.tests.arrays.interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/interval/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.integer.test_repr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/integer/test_repr.py', + 'PYMODULE'), + ('pandas.tests.arrays.integer.test_reduction', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/integer/test_reduction.py', + 'PYMODULE'), + ('pandas.tests.arrays.integer.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/integer/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.arrays.integer.test_function', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/integer/test_function.py', + 'PYMODULE'), + ('pandas.tests.arrays.integer.test_dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/integer/test_dtypes.py', + 'PYMODULE'), + ('pandas.tests.arrays.integer.test_construction', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/integer/test_construction.py', + 'PYMODULE'), + ('pandas.tests.arrays.integer.test_concat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/integer/test_concat.py', + 'PYMODULE'), + ('pandas.tests.arrays.integer.test_comparison', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/integer/test_comparison.py', + 'PYMODULE'), + ('pandas.tests.arrays.integer.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/integer/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.arrays.integer.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/integer/conftest.py', + 'PYMODULE'), + ('pandas.tests.arrays.integer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/integer/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.floating.test_to_numpy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/floating/test_to_numpy.py', + 'PYMODULE'), + ('pandas.tests.arrays.floating.test_repr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/floating/test_repr.py', + 'PYMODULE'), + ('pandas.tests.arrays.floating.test_function', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/floating/test_function.py', + 'PYMODULE'), + ('pandas.tests.arrays.floating.test_contains', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/floating/test_contains.py', + 'PYMODULE'), + ('pandas.tests.arrays.floating.test_construction', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/floating/test_construction.py', + 'PYMODULE'), + ('pandas.tests.arrays.floating.test_concat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/floating/test_concat.py', + 'PYMODULE'), + ('pandas.tests.arrays.floating.test_comparison', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/floating/test_comparison.py', + 'PYMODULE'), + ('pandas.tests.arrays.floating.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/floating/test_astype.py', + 'PYMODULE'), + ('pandas.tests.arrays.floating.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/floating/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.arrays.floating.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/floating/conftest.py', + 'PYMODULE'), + ('pandas.tests.arrays.floating', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/floating/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.datetimes.test_reductions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/datetimes/test_reductions.py', + 'PYMODULE'), + ('pandas.tests.arrays.datetimes.test_cumulative', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/datetimes/test_cumulative.py', + 'PYMODULE'), + ('pandas.tests.arrays.datetimes.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/datetimes/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.arrays.datetimes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/datetimes/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_warnings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_warnings.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_take', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_take.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_subclass', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_subclass.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_sorting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_sorting.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_repr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_repr.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_replace', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_replace.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_operators', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_operators.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_missing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_missing.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_map', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_map.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_dtypes.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_astype.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_api.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_analytics', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_analytics.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_algos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_algos.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.boolean.test_repr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/boolean/test_repr.py', + 'PYMODULE'), + ('pandas.tests.arrays.boolean.test_reduction', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/boolean/test_reduction.py', + 'PYMODULE'), + ('pandas.tests.arrays.boolean.test_ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/boolean/test_ops.py', + 'PYMODULE'), + ('pandas.tests.arrays.boolean.test_logical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/boolean/test_logical.py', + 'PYMODULE'), + ('pandas.tests.arrays.boolean.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/boolean/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.arrays.boolean.test_function', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/boolean/test_function.py', + 'PYMODULE'), + ('pandas.tests.arrays.boolean.test_construction', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/boolean/test_construction.py', + 'PYMODULE'), + ('pandas.tests.arrays.boolean.test_comparison', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/boolean/test_comparison.py', + 'PYMODULE'), + ('pandas.tests.arrays.boolean.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/boolean/test_astype.py', + 'PYMODULE'), + ('pandas.tests.arrays.boolean.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/boolean/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.arrays.boolean', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/boolean/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/__init__.py', + 'PYMODULE'), + ('pandas.tests.arithmetic.test_timedelta64', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arithmetic/test_timedelta64.py', + 'PYMODULE'), + ('pandas.tests.arithmetic.test_period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arithmetic/test_period.py', + 'PYMODULE'), + ('pandas.tests.arithmetic.test_object', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arithmetic/test_object.py', + 'PYMODULE'), + ('pandas.tests.arithmetic.test_numeric', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arithmetic/test_numeric.py', + 'PYMODULE'), + ('pandas.tests.arithmetic.test_interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arithmetic/test_interval.py', + 'PYMODULE'), + ('pandas.tests.arithmetic.test_datetime64', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arithmetic/test_datetime64.py', + 'PYMODULE'), + ('pandas.tests.arithmetic.test_categorical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arithmetic/test_categorical.py', + 'PYMODULE'), + ('pandas.tests.arithmetic.test_array_ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arithmetic/test_array_ops.py', + 'PYMODULE'), + ('pandas.tests.arithmetic.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arithmetic/conftest.py', + 'PYMODULE'), + ('pandas.tests.arithmetic.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arithmetic/common.py', + 'PYMODULE'), + ('pandas.tests.arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arithmetic/__init__.py', + 'PYMODULE'), + ('pandas.tests.apply.test_str', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/apply/test_str.py', + 'PYMODULE'), + ('pandas.tests.apply.test_series_transform', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/apply/test_series_transform.py', + 'PYMODULE'), + ('pandas.tests.apply.test_series_apply_relabeling', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/apply/test_series_apply_relabeling.py', + 'PYMODULE'), + ('pandas.tests.apply.test_series_apply', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/apply/test_series_apply.py', + 'PYMODULE'), + ('pandas.tests.apply.test_numba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/apply/test_numba.py', + 'PYMODULE'), + ('pandas.tests.apply.test_invalid_arg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/apply/test_invalid_arg.py', + 'PYMODULE'), + ('pandas.tests.apply.test_frame_transform', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/apply/test_frame_transform.py', + 'PYMODULE'), + ('pandas.tests.apply.test_frame_apply_relabeling', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/apply/test_frame_apply_relabeling.py', + 'PYMODULE'), + ('pandas.tests.apply.test_frame_apply', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/apply/test_frame_apply.py', + 'PYMODULE'), + ('pandas.tests.apply.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/apply/common.py', + 'PYMODULE'), + ('pandas.tests.apply', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/apply/__init__.py', + 'PYMODULE'), + ('pandas.tests.api.test_types', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/api/test_types.py', + 'PYMODULE'), + ('pandas.tests.api.test_api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/api/test_api.py', + 'PYMODULE'), + ('pandas.tests.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/api/__init__.py', + 'PYMODULE'), + ('pandas.tests', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/__init__.py', + 'PYMODULE'), + ('pandas.testing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/testing.py', + 'PYMODULE'), + ('pandas.plotting._misc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_misc.py', + 'PYMODULE'), + ('pandas.plotting._core', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_core.py', + 'PYMODULE'), + ('pandas.plotting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/__init__.py', + 'PYMODULE'), + ('pandas.io.xml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/xml.py', + 'PYMODULE'), + ('pandas.io.stata', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/stata.py', + 'PYMODULE'), + ('pandas.io.sql', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/sql.py', + 'PYMODULE'), + ('pandas.io.spss', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/spss.py', + 'PYMODULE'), + ('pandas.io.sas.sasreader', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/sas/sasreader.py', + 'PYMODULE'), + ('pandas.io.sas.sas_xport', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/sas/sas_xport.py', + 'PYMODULE'), + ('pandas.io.sas.sas_constants', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/sas/sas_constants.py', + 'PYMODULE'), + ('pandas.io.sas.sas7bdat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/sas/sas7bdat.py', + 'PYMODULE'), + ('pandas.io.sas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/sas/__init__.py', + 'PYMODULE'), + ('pandas.io.pytables', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/pytables.py', + 'PYMODULE'), + ('pandas.io.pickle', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/pickle.py', + 'PYMODULE'), + ('pandas.io.parsers.readers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/parsers/readers.py', + 'PYMODULE'), + ('pandas.io.parsers.python_parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/parsers/python_parser.py', + 'PYMODULE'), + ('pandas.io.parsers.c_parser_wrapper', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/parsers/c_parser_wrapper.py', + 'PYMODULE'), + ('pandas.io.parsers.base_parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/parsers/base_parser.py', + 'PYMODULE'), + ('pandas.io.parsers.arrow_parser_wrapper', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/parsers/arrow_parser_wrapper.py', + 'PYMODULE'), + ('pandas.io.parsers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/parsers/__init__.py', + 'PYMODULE'), + ('pandas.io.parquet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/parquet.py', + 'PYMODULE'), + ('pandas.io.orc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/orc.py', + 'PYMODULE'), + ('pandas.io.json._table_schema', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/json/_table_schema.py', + 'PYMODULE'), + ('pandas.io.json._normalize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/json/_normalize.py', + 'PYMODULE'), + ('pandas.io.json._json', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/json/_json.py', + 'PYMODULE'), + ('pandas.io.json', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/json/__init__.py', + 'PYMODULE'), + ('pandas.io.html', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/html.py', + 'PYMODULE'), + ('pandas.io.gbq', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/gbq.py', + 'PYMODULE'), + ('pandas.io.formats.xml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/xml.py', + 'PYMODULE'), + ('pandas.io.formats.style_render', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/style_render.py', + 'PYMODULE'), + ('pandas.io.formats.style', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/style.py', + 'PYMODULE'), + ('pandas.io.formats.string', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/string.py', + 'PYMODULE'), + ('pandas.io.formats.printing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/printing.py', + 'PYMODULE'), + ('pandas.io.formats.info', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/info.py', + 'PYMODULE'), + ('pandas.io.formats.html', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/html.py', + 'PYMODULE'), + ('pandas.io.formats.format', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/format.py', + 'PYMODULE'), + ('pandas.io.formats.excel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/excel.py', + 'PYMODULE'), + ('pandas.io.formats.csvs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/csvs.py', + 'PYMODULE'), + ('pandas.io.formats.css', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/css.py', + 'PYMODULE'), + ('pandas.io.formats.console', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/console.py', + 'PYMODULE'), + ('pandas.io.formats._color_data', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/_color_data.py', + 'PYMODULE'), + ('pandas.io.formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/__init__.py', + 'PYMODULE'), + ('pandas.io.feather_format', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/feather_format.py', + 'PYMODULE'), + ('pandas.io.excel._xlsxwriter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/excel/_xlsxwriter.py', + 'PYMODULE'), + ('xlsxwriter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/__init__.py', + 'PYMODULE'), + ('xlsxwriter.workbook', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/workbook.py', + 'PYMODULE'), + ('xlsxwriter.utility', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/utility.py', + 'PYMODULE'), + ('xlsxwriter.sharedstrings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/sharedstrings.py', + 'PYMODULE'), + ('xlsxwriter.packager', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/packager.py', + 'PYMODULE'), + ('xlsxwriter.vml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/vml.py', + 'PYMODULE'), + ('xlsxwriter.theme', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/theme.py', + 'PYMODULE'), + ('xlsxwriter.table', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/table.py', + 'PYMODULE'), + ('xlsxwriter.styles', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/styles.py', + 'PYMODULE'), + ('xlsxwriter.rich_value_types', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/rich_value_types.py', + 'PYMODULE'), + ('xlsxwriter.rich_value_structure', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/rich_value_structure.py', + 'PYMODULE'), + ('xlsxwriter.rich_value_rel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/rich_value_rel.py', + 'PYMODULE'), + ('xlsxwriter.rich_value', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/rich_value.py', + 'PYMODULE'), + ('xlsxwriter.relationships', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/relationships.py', + 'PYMODULE'), + ('xlsxwriter.metadata', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/metadata.py', + 'PYMODULE'), + ('xlsxwriter.feature_property_bag', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/feature_property_bag.py', + 'PYMODULE'), + ('xlsxwriter.custom', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/custom.py', + 'PYMODULE'), + ('xlsxwriter.core', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/core.py', + 'PYMODULE'), + ('xlsxwriter.contenttypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/contenttypes.py', + 'PYMODULE'), + ('xlsxwriter.comments', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/comments.py', + 'PYMODULE'), + ('xlsxwriter.app', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/app.py', + 'PYMODULE'), + ('xlsxwriter.format', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/format.py', + 'PYMODULE'), + ('xlsxwriter.exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/exceptions.py', + 'PYMODULE'), + ('xlsxwriter.chartsheet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/chartsheet.py', + 'PYMODULE'), + ('xlsxwriter.drawing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/drawing.py', + 'PYMODULE'), + ('xlsxwriter.shape', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/shape.py', + 'PYMODULE'), + ('xlsxwriter.chart_stock', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/chart_stock.py', + 'PYMODULE'), + ('xlsxwriter.chart_scatter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/chart_scatter.py', + 'PYMODULE'), + ('xlsxwriter.chart_radar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/chart_radar.py', + 'PYMODULE'), + ('xlsxwriter.chart_line', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/chart_line.py', + 'PYMODULE'), + ('xlsxwriter.chart_doughnut', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/chart_doughnut.py', + 'PYMODULE'), + ('xlsxwriter.chart_column', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/chart_column.py', + 'PYMODULE'), + ('xlsxwriter.chart_bar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/chart_bar.py', + 'PYMODULE'), + ('xlsxwriter.chart_area', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/chart_area.py', + 'PYMODULE'), + ('xlsxwriter.worksheet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/worksheet.py', + 'PYMODULE'), + ('xlsxwriter.chart_pie', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/chart_pie.py', + 'PYMODULE'), + ('xlsxwriter.chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/chart.py', + 'PYMODULE'), + ('xlsxwriter.xmlwriter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/xmlwriter.py', + 'PYMODULE'), + ('pandas.io.excel._xlrd', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/excel/_xlrd.py', + 'PYMODULE'), + ('pandas.io.excel._util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/excel/_util.py', + 'PYMODULE'), + ('pandas.io.excel._pyxlsb', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/excel/_pyxlsb.py', + 'PYMODULE'), + ('pandas.io.excel._openpyxl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/excel/_openpyxl.py', + 'PYMODULE'), + ('pandas.io.excel._odswriter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/excel/_odswriter.py', + 'PYMODULE'), + ('pandas.io.excel._odfreader', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/excel/_odfreader.py', + 'PYMODULE'), + ('pandas.io.excel._calamine', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/excel/_calamine.py', + 'PYMODULE'), + ('pandas.io.excel._base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/excel/_base.py', + 'PYMODULE'), + ('pandas.io.excel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/excel/__init__.py', + 'PYMODULE'), + ('pandas.io.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/common.py', + 'PYMODULE'), + ('pandas.io.clipboards', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/clipboards.py', + 'PYMODULE'), + ('pandas.io.clipboard', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/clipboard/__init__.py', + 'PYMODULE'), + ('pandas.io.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/api.py', + 'PYMODULE'), + ('pandas.io._util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/_util.py', + 'PYMODULE'), + ('pandas.io', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/__init__.py', + 'PYMODULE'), + ('pandas.errors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/errors/__init__.py', + 'PYMODULE'), + ('pandas.core.window.rolling', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/window/rolling.py', + 'PYMODULE'), + ('pandas.core._numba.kernels', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/_numba/kernels/__init__.py', + 'PYMODULE'), + ('pandas.core._numba.kernels.var_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/_numba/kernels/var_.py', + 'PYMODULE'), + ('pandas.core._numba.kernels.shared', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/_numba/kernels/shared.py', + 'PYMODULE'), + ('pandas.core._numba.kernels.sum_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/_numba/kernels/sum_.py', + 'PYMODULE'), + ('pandas.core._numba.kernels.min_max_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/_numba/kernels/min_max_.py', + 'PYMODULE'), + ('pandas.core._numba.kernels.mean_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/_numba/kernels/mean_.py', + 'PYMODULE'), + ('pandas.core.window.online', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/window/online.py', + 'PYMODULE'), + ('pandas.core.window.numba_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/window/numba_.py', + 'PYMODULE'), + ('pandas.core.window.expanding', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/window/expanding.py', + 'PYMODULE'), + ('pandas.core.window.ewm', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/window/ewm.py', + 'PYMODULE'), + ('pandas.core.window.doc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/window/doc.py', + 'PYMODULE'), + ('pandas.core.window.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/window/common.py', + 'PYMODULE'), + ('pandas.core.window', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/window/__init__.py', + 'PYMODULE'), + ('pandas.core.util.numba_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/util/numba_.py', + 'PYMODULE'), + ('pandas.core.util.hashing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/util/hashing.py', + 'PYMODULE'), + ('pandas.core.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/util/__init__.py', + 'PYMODULE'), + ('pandas.core.tools.times', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/tools/times.py', + 'PYMODULE'), + ('pandas.core.tools.timedeltas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/tools/timedeltas.py', + 'PYMODULE'), + ('pandas.core.tools.numeric', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/tools/numeric.py', + 'PYMODULE'), + ('pandas.core.tools.datetimes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/tools/datetimes.py', + 'PYMODULE'), + ('pandas.core.tools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/tools/__init__.py', + 'PYMODULE'), + ('pandas.core.strings.object_array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/strings/object_array.py', + 'PYMODULE'), + ('pandas.core.strings.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/strings/base.py', + 'PYMODULE'), + ('pandas.core.strings.accessor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/strings/accessor.py', + 'PYMODULE'), + ('pandas.core.strings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/strings/__init__.py', + 'PYMODULE'), + ('pandas.core.sparse.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/sparse/api.py', + 'PYMODULE'), + ('pandas.core.sparse', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/sparse/__init__.py', + 'PYMODULE'), + ('pandas.core.sorting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/sorting.py', + 'PYMODULE'), + ('pandas.core.shared_docs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/shared_docs.py', + 'PYMODULE'), + ('pandas.core.series', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/series.py', + 'PYMODULE'), + ('pandas.core.sample', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/sample.py', + 'PYMODULE'), + ('pandas.core.roperator', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/roperator.py', + 'PYMODULE'), + ('pandas.core.reshape.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/reshape/util.py', + 'PYMODULE'), + ('pandas.core.reshape.tile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/reshape/tile.py', + 'PYMODULE'), + ('pandas.core.reshape.reshape', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/reshape/reshape.py', + 'PYMODULE'), + ('pandas.core.reshape.pivot', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/reshape/pivot.py', + 'PYMODULE'), + ('pandas.core.reshape.merge', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/reshape/merge.py', + 'PYMODULE'), + ('pandas.core.reshape.melt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/reshape/melt.py', + 'PYMODULE'), + ('pandas.core.reshape.encoding', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/reshape/encoding.py', + 'PYMODULE'), + ('pandas.core.reshape.concat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/reshape/concat.py', + 'PYMODULE'), + ('pandas.core.reshape.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/reshape/api.py', + 'PYMODULE'), + ('pandas.core.reshape', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/reshape/__init__.py', + 'PYMODULE'), + ('pandas.core.resample', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/resample.py', + 'PYMODULE'), + ('pandas.core.ops.missing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/ops/missing.py', + 'PYMODULE'), + ('pandas.core.ops.mask_ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/ops/mask_ops.py', + 'PYMODULE'), + ('pandas.core.ops.invalid', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/ops/invalid.py', + 'PYMODULE'), + ('pandas.core.ops.docstrings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/ops/docstrings.py', + 'PYMODULE'), + ('pandas.core.ops.dispatch', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/ops/dispatch.py', + 'PYMODULE'), + ('pandas.core.ops.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/ops/common.py', + 'PYMODULE'), + ('pandas.core.ops.array_ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/ops/array_ops.py', + 'PYMODULE'), + ('pandas.core.ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/ops/__init__.py', + 'PYMODULE'), + ('pandas.core.nanops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/nanops.py', + 'PYMODULE'), + ('pandas.core.missing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/missing.py', + 'PYMODULE'), + ('pandas.core.methods.to_dict', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/methods/to_dict.py', + 'PYMODULE'), + ('pandas.core.methods.selectn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/methods/selectn.py', + 'PYMODULE'), + ('pandas.core.methods.describe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/methods/describe.py', + 'PYMODULE'), + ('pandas.core.methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/methods/__init__.py', + 'PYMODULE'), + ('pandas.core.internals.ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/internals/ops.py', + 'PYMODULE'), + ('pandas.core.internals.managers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/internals/managers.py', + 'PYMODULE'), + ('pandas.core.internals.construction', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/internals/construction.py', + 'PYMODULE'), + ('pandas.core.internals.concat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/internals/concat.py', + 'PYMODULE'), + ('pandas.core.internals.blocks', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/internals/blocks.py', + 'PYMODULE'), + ('pandas.core.internals.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/internals/base.py', + 'PYMODULE'), + ('pandas.core.internals.array_manager', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/internals/array_manager.py', + 'PYMODULE'), + ('pandas.core.internals.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/internals/api.py', + 'PYMODULE'), + ('pandas.core.internals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/internals/__init__.py', + 'PYMODULE'), + ('pandas.core.interchange.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/interchange/utils.py', + 'PYMODULE'), + ('pandas.core.interchange.from_dataframe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/interchange/from_dataframe.py', + 'PYMODULE'), + ('pandas.core.interchange.dataframe_protocol', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/interchange/dataframe_protocol.py', + 'PYMODULE'), + ('pandas.core.interchange.dataframe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/interchange/dataframe.py', + 'PYMODULE'), + ('pandas.core.interchange.column', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/interchange/column.py', + 'PYMODULE'), + ('pandas.core.interchange.buffer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/interchange/buffer.py', + 'PYMODULE'), + ('pandas.core.interchange', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/interchange/__init__.py', + 'PYMODULE'), + ('pandas.core.indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexing.py', + 'PYMODULE'), + ('pandas.core.indexes.timedeltas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/timedeltas.py', + 'PYMODULE'), + ('pandas.core.indexes.range', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/range.py', + 'PYMODULE'), + ('pandas.core.indexes.period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/period.py', + 'PYMODULE'), + ('pandas.core.indexes.multi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/multi.py', + 'PYMODULE'), + ('pandas.core.indexes.interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/interval.py', + 'PYMODULE'), + ('pandas.core.indexes.frozen', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/frozen.py', + 'PYMODULE'), + ('pandas.core.indexes.extension', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/extension.py', + 'PYMODULE'), + ('pandas.core.indexes.datetimes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/datetimes.py', + 'PYMODULE'), + ('pandas.core.indexes.datetimelike', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/datetimelike.py', + 'PYMODULE'), + ('pandas.core.indexes.category', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/category.py', + 'PYMODULE'), + ('pandas.core.indexes.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/base.py', + 'PYMODULE'), + ('pandas.core.indexes.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/api.py', + 'PYMODULE'), + ('pandas.core.indexes.accessors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/accessors.py', + 'PYMODULE'), + ('pandas.core.indexes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/__init__.py', + 'PYMODULE'), + ('pandas.core.indexers.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexers/utils.py', + 'PYMODULE'), + ('pandas.core.indexers.objects', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexers/objects.py', + 'PYMODULE'), + ('pandas.core.indexers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexers/__init__.py', + 'PYMODULE'), + ('pandas.core.groupby.ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/groupby/ops.py', + 'PYMODULE'), + ('pandas.core.groupby.numba_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/groupby/numba_.py', + 'PYMODULE'), + ('pandas.core.groupby.indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/groupby/indexing.py', + 'PYMODULE'), + ('pandas.core.groupby.grouper', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/groupby/grouper.py', + 'PYMODULE'), + ('pandas.core.groupby.groupby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/groupby/groupby.py', + 'PYMODULE'), + ('pandas.core.groupby.generic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/groupby/generic.py', + 'PYMODULE'), + ('pandas.core.groupby.categorical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/groupby/categorical.py', + 'PYMODULE'), + ('pandas.core.groupby.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/groupby/base.py', + 'PYMODULE'), + ('pandas.core.groupby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/groupby/__init__.py', + 'PYMODULE'), + ('pandas.core.generic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/generic.py', + 'PYMODULE'), + ('pandas.core.frame', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/frame.py', + 'PYMODULE'), + ('pandas.core.flags', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/flags.py', + 'PYMODULE'), + ('pandas.core.dtypes.missing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/dtypes/missing.py', + 'PYMODULE'), + ('pandas.core.dtypes.inference', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/dtypes/inference.py', + 'PYMODULE'), + ('pandas.core.dtypes.generic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/dtypes/generic.py', + 'PYMODULE'), + ('pandas.core.dtypes.dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/dtypes/dtypes.py', + 'PYMODULE'), + ('pandas.core.dtypes.concat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/dtypes/concat.py', + 'PYMODULE'), + ('pandas.core.dtypes.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/dtypes/common.py', + 'PYMODULE'), + ('pandas.core.dtypes.cast', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/dtypes/cast.py', + 'PYMODULE'), + ('pandas.core.dtypes.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/dtypes/base.py', + 'PYMODULE'), + ('pandas.core.dtypes.astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/dtypes/astype.py', + 'PYMODULE'), + ('pandas.core.dtypes.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/dtypes/api.py', + 'PYMODULE'), + ('pandas.core.dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/dtypes/__init__.py', + 'PYMODULE'), + ('pandas.core.construction', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/construction.py', + 'PYMODULE'), + ('pandas.core.config_init', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/config_init.py', + 'PYMODULE'), + ('pandas.core.computation.scope', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/scope.py', + 'PYMODULE'), + ('pandas.core.computation.pytables', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/pytables.py', + 'PYMODULE'), + ('pandas.core.computation.parsing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/parsing.py', + 'PYMODULE'), + ('pandas.core.computation.ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/ops.py', + 'PYMODULE'), + ('pandas.core.computation.expressions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/expressions.py', + 'PYMODULE'), + ('pandas.core.computation.expr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/expr.py', + 'PYMODULE'), + ('pandas.core.computation.eval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/eval.py', + 'PYMODULE'), + ('pandas.core.computation.engines', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/engines.py', + 'PYMODULE'), + ('pandas.core.computation.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/common.py', + 'PYMODULE'), + ('pandas.core.computation.check', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/check.py', + 'PYMODULE'), + ('pandas.core.computation.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/api.py', + 'PYMODULE'), + ('pandas.core.computation.align', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/align.py', + 'PYMODULE'), + ('pandas.core.computation', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/__init__.py', + 'PYMODULE'), + ('pandas.core.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/common.py', + 'PYMODULE'), + ('pandas.core.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/base.py', + 'PYMODULE'), + ('pandas.core.arrays.timedeltas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/timedeltas.py', + 'PYMODULE'), + ('pandas.core.arrays.string_arrow', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/string_arrow.py', + 'PYMODULE'), + ('pandas.core.arrays.string_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/string_.py', + 'PYMODULE'), + ('pandas.core.arrays.sparse.scipy_sparse', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/sparse/scipy_sparse.py', + 'PYMODULE'), + ('pandas.core.arrays.sparse.array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/sparse/array.py', + 'PYMODULE'), + ('pandas.core.arrays.sparse.accessor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/sparse/accessor.py', + 'PYMODULE'), + ('pandas.core.arrays.sparse', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/sparse/__init__.py', + 'PYMODULE'), + ('pandas.core.arrays.period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/period.py', + 'PYMODULE'), + ('pandas.core.arrays.numpy_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/numpy_.py', + 'PYMODULE'), + ('pandas.core.arrays.numeric', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/numeric.py', + 'PYMODULE'), + ('pandas.core.arrays.masked', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/masked.py', + 'PYMODULE'), + ('pandas.core.arrays.interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/interval.py', + 'PYMODULE'), + ('pandas.core.arrays.integer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/integer.py', + 'PYMODULE'), + ('pandas.core.arrays.floating', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/floating.py', + 'PYMODULE'), + ('pandas.core.arrays.datetimes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/datetimes.py', + 'PYMODULE'), + ('pandas.core.arrays.datetimelike', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/datetimelike.py', + 'PYMODULE'), + ('pandas.core.arrays.categorical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/categorical.py', + 'PYMODULE'), + ('pandas.core.arrays.boolean', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/boolean.py', + 'PYMODULE'), + ('pandas.core.arrays.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/base.py', + 'PYMODULE'), + ('pandas.core.arrays.arrow.extension_types', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/arrow/extension_types.py', + 'PYMODULE'), + ('pickletools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/pickletools.py', + 'PYMODULE'), + ('pandas.core.arrays.arrow.array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/arrow/array.py', + 'PYMODULE'), + ('pandas.core.arrays.arrow.accessors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/arrow/accessors.py', + 'PYMODULE'), + ('pandas.core.arrays.arrow._arrow_utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/arrow/_arrow_utils.py', + 'PYMODULE'), + ('pandas.core.arrays.arrow', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/arrow/__init__.py', + 'PYMODULE'), + ('pandas.core.arrays._utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/_utils.py', + 'PYMODULE'), + ('pandas.core.arrays._ranges', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/_ranges.py', + 'PYMODULE'), + ('pandas.core.arrays._mixins', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/_mixins.py', + 'PYMODULE'), + ('pandas.core.arrays._arrow_string_mixins', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/_arrow_string_mixins.py', + 'PYMODULE'), + ('pandas.core.arrays', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/__init__.py', + 'PYMODULE'), + ('pandas.core.arraylike', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arraylike.py', + 'PYMODULE'), + ('pandas.core.array_algos.transforms', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/array_algos/transforms.py', + 'PYMODULE'), + ('pandas.core.array_algos.take', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/array_algos/take.py', + 'PYMODULE'), + ('pandas.core.array_algos.replace', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/array_algos/replace.py', + 'PYMODULE'), + ('pandas.core.array_algos.quantile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/array_algos/quantile.py', + 'PYMODULE'), + ('pandas.core.array_algos.putmask', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/array_algos/putmask.py', + 'PYMODULE'), + ('pandas.core.array_algos.masked_reductions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/array_algos/masked_reductions.py', + 'PYMODULE'), + ('pandas.core.array_algos.masked_accumulations', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/array_algos/masked_accumulations.py', + 'PYMODULE'), + ('pandas.core.array_algos.datetimelike_accumulations', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/array_algos/datetimelike_accumulations.py', + 'PYMODULE'), + ('pandas.core.array_algos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/array_algos/__init__.py', + 'PYMODULE'), + ('pandas.core.apply', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/apply.py', + 'PYMODULE'), + ('pandas.core.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/api.py', + 'PYMODULE'), + ('pandas.core.algorithms', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/algorithms.py', + 'PYMODULE'), + ('pandas.core.accessor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/accessor.py', + 'PYMODULE'), + ('pandas.core._numba.extensions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/_numba/extensions.py', + 'PYMODULE'), + ('pandas.core._numba.executor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/_numba/executor.py', + 'PYMODULE'), + ('pandas.core._numba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/_numba/__init__.py', + 'PYMODULE'), + ('pandas.core', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/__init__.py', + 'PYMODULE'), + ('pandas.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/conftest.py', + 'PYMODULE'), + ('pandas.compat.pyarrow', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/compat/pyarrow.py', + 'PYMODULE'), + ('pandas.compat.pickle_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/compat/pickle_compat.py', + 'PYMODULE'), + ('pandas.compat.numpy.function', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/compat/numpy/function.py', + 'PYMODULE'), + ('pandas.compat.numpy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/compat/numpy/__init__.py', + 'PYMODULE'), + ('pandas.compat.compressors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/compat/compressors.py', + 'PYMODULE'), + ('pandas.compat._optional', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/compat/_optional.py', + 'PYMODULE'), + ('pandas.compat._constants', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/compat/_constants.py', + 'PYMODULE'), + ('pandas.compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/compat/__init__.py', + 'PYMODULE'), + ('pandas.arrays', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/arrays/__init__.py', + 'PYMODULE'), + ('pandas.api.typing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/api/typing/__init__.py', + 'PYMODULE'), + ('pandas.api.types', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/api/types/__init__.py', + 'PYMODULE'), + ('pandas.api.interchange', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/api/interchange/__init__.py', + 'PYMODULE'), + ('pandas.api.indexers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/api/indexers/__init__.py', + 'PYMODULE'), + ('pandas.api.extensions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/api/extensions/__init__.py', + 'PYMODULE'), + ('pandas.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/api/__init__.py', + 'PYMODULE'), + ('pandas._version_meson', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_version_meson.py', + 'PYMODULE'), + ('pandas._version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_version.py', + 'PYMODULE'), + ('pandas._typing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_typing.py', + 'PYMODULE'), + ('pandas._testing.contexts', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_testing/contexts.py', + 'PYMODULE'), + ('pandas._testing.compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_testing/compat.py', + 'PYMODULE'), + ('pandas._testing.asserters', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_testing/asserters.py', + 'PYMODULE'), + ('pandas._testing._warnings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_testing/_warnings.py', + 'PYMODULE'), + ('pandas._testing._io', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_testing/_io.py', + 'PYMODULE'), + ('pandas._testing._hypothesis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_testing/_hypothesis.py', + 'PYMODULE'), + ('pandas._testing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_testing/__init__.py', + 'PYMODULE'), + ('pandas._libs.window', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/window/__init__.py', + 'PYMODULE'), + ('pandas._libs.tslibs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/__init__.py', + 'PYMODULE'), + ('pandas._libs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/__init__.py', + 'PYMODULE'), + ('pandas._config.localization', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_config/localization.py', + 'PYMODULE'), + ('pandas._config.display', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_config/display.py', + 'PYMODULE'), + ('pandas._config.dates', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_config/dates.py', + 'PYMODULE'), + ('pandas._config.config', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_config/config.py', + 'PYMODULE'), + ('pandas._config', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_config/__init__.py', + 'PYMODULE'), + ('pandas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/__init__.py', + 'PYMODULE'), + ('_py_abc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_py_abc.py', + 'PYMODULE'), + ('ad_user_creator.main', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/main.py', + 'PYMODULE'), + ('ad_user_creator', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/__init__.py', + 'PYMODULE'), + ('ad_user_creator.user_service', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/user_service.py', + 'PYMODULE'), + ('ad_user_creator.persistence', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/persistence.py', + 'PYMODULE'), + ('filelock', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/filelock/__init__.py', + 'PYMODULE'), + ('filelock.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/filelock/version.py', + 'PYMODULE'), + ('filelock.asyncio', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/filelock/asyncio.py', + 'PYMODULE'), + ('filelock._windows', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/filelock/_windows.py', + 'PYMODULE'), + ('filelock._util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/filelock/_util.py', + 'PYMODULE'), + ('filelock._unix', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/filelock/_unix.py', + 'PYMODULE'), + ('filelock._soft', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/filelock/_soft.py', + 'PYMODULE'), + ('filelock._error', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/filelock/_error.py', + 'PYMODULE'), + ('filelock._api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/filelock/_api.py', + 'PYMODULE'), + ('ad_user_creator.models', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/models.py', + 'PYMODULE'), + ('ad_user_creator.logging_setup', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/logging_setup.py', + 'PYMODULE'), + ('ad_user_creator.ldap_client', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/ldap_client.py', + 'PYMODULE'), + ('ad_user_creator.interactive', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/interactive.py', + 'PYMODULE'), + ('ad_user_creator.input_parser', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/input_parser.py', + 'PYMODULE'), + ('ad_user_creator.exceptions', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/exceptions.py', + 'PYMODULE'), + ('ad_user_creator.config', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/config.py', + 'PYMODULE'), + ('ad_user_creator.cli', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/cli.py', + 'PYMODULE'), + ('pathlib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/pathlib.py', + 'PYMODULE'), + ('__future__', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/__future__.py', + 'PYMODULE')], + [('libgcc_s.1.1.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libgcc_s.1.1.dylib', + 'BINARY'), + ('libncursesw.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libncursesw.6.dylib', + 'BINARY'), + ('libpanelw.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libpanelw.6.dylib', + 'BINARY'), + ('libmenuw.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libmenuw.6.dylib', + 'BINARY'), + ('libexpat.1.10.0.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libexpat.1.10.0.dylib', + 'BINARY'), + ('libssl.3.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libssl.3.dylib', + 'BINARY'), + ('libgfortran.5.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libgfortran.5.dylib', + 'BINARY'), + ('libz.1.2.13.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libz.1.2.13.dylib', + 'BINARY'), + ('libtcl8.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libtcl8.6.dylib', + 'BINARY'), + ('libcrypto.3.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libcrypto.3.dylib', + 'BINARY'), + ('libopenblasp-r0.3.21.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libopenblasp-r0.3.21.dylib', + 'BINARY'), + ('libc++.1.0.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libc++.1.0.dylib', + 'BINARY'), + ('libtk8.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libtk8.6.dylib', + 'BINARY'), + ('libhistory.8.2.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libhistory.8.2.dylib', + 'BINARY'), + ('libbz2.1.0.8.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libbz2.1.0.8.dylib', + 'BINARY'), + ('libsqlite3.0.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libsqlite3.0.dylib', + 'BINARY'), + ('libreadline.8.2.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libreadline.8.2.dylib', + 'BINARY'), + ('libomp.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libomp.dylib', + 'BINARY'), + ('libffi.8.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libffi.8.dylib', + 'BINARY'), + ('libopenblas.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libopenblas.dylib', + 'BINARY'), + ('libpython3.12.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libpython3.12.dylib', + 'BINARY'), + ('libquadmath.0.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libquadmath.0.dylib', + 'BINARY'), + ('libtinfow.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libtinfow.6.dylib', + 'BINARY'), + ('libformw.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libformw.6.dylib', + 'BINARY'), + ('Crypto/PublicKey/_ed25519.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/PublicKey/_ed25519.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_cfb.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_cfb.abi3.so', + 'BINARY'), + ('Crypto/Util/_strxor.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Util/_strxor.abi3.so', + 'BINARY'), + ('Crypto/Hash/_MD4.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_MD4.abi3.so', + 'BINARY'), + ('Crypto/PublicKey/_ed448.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/PublicKey/_ed448.abi3.so', + 'BINARY'), + ('Crypto/PublicKey/_curve448.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/PublicKey/_curve448.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_cast.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_cast.abi3.so', + 'BINARY'), + ('Crypto/Hash/_SHA224.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_SHA224.abi3.so', + 'BINARY'), + ('Crypto/PublicKey/_curve25519.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/PublicKey/_curve25519.abi3.so', + 'BINARY'), + ('Crypto/Hash/_MD2.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_MD2.abi3.so', + 'BINARY'), + ('Crypto/Hash/_SHA256.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_SHA256.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_Salsa20.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_Salsa20.abi3.so', + 'BINARY'), + ('Crypto/Hash/_SHA512.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_SHA512.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_des.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_des.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_des3.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_des3.abi3.so', + 'BINARY'), + ('Crypto/Hash/_keccak.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_keccak.abi3.so', + 'BINARY'), + ('Crypto/Hash/_RIPEMD160.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_RIPEMD160.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_pkcs1_decode.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_pkcs1_decode.abi3.so', + 'BINARY'), + ('Crypto/Hash/_BLAKE2s.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_BLAKE2s.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_aes.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_aes.abi3.so', + 'BINARY'), + ('Crypto/PublicKey/_ec_ws.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/PublicKey/_ec_ws.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_arc2.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_arc2.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_eksblowfish.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_eksblowfish.abi3.so', + 'BINARY'), + ('Crypto/Protocol/_scrypt.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Protocol/_scrypt.abi3.so', + 'BINARY'), + ('Crypto/Hash/_ghash_portable.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_ghash_portable.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_cbc.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_cbc.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_chacha20.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_chacha20.abi3.so', + 'BINARY'), + ('Crypto/Util/_cpuid_c.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Util/_cpuid_c.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_ocb.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_ocb.abi3.so', + 'BINARY'), + ('Crypto/Hash/_poly1305.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_poly1305.abi3.so', + 'BINARY'), + ('Crypto/Hash/_SHA384.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_SHA384.abi3.so', + 'BINARY'), + ('Crypto/Hash/_BLAKE2b.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_BLAKE2b.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_ecb.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_ecb.abi3.so', + 'BINARY'), + ('Crypto/Hash/_SHA1.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_SHA1.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_ofb.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_ofb.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_blowfish.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_blowfish.abi3.so', + 'BINARY'), + ('Crypto/Math/_modexp.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Math/_modexp.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_ctr.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_ctr.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_ARC4.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_ARC4.abi3.so', + 'BINARY'), + ('Crypto/Hash/_MD5.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_MD5.abi3.so', + 'BINARY'), + ('ossl-modules/legacy.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/ossl-modules/legacy.dylib', + 'BINARY'), + ('python3.12/lib-dynload/grp.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/grp.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/math.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/math.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/select.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/select.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_posixsubprocess.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_posixsubprocess.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/fcntl.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/fcntl.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_struct.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_struct.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_pickle.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_pickle.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/binascii.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/binascii.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/resource.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/resource.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_lzma.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_lzma.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_bz2.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_bz2.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/zlib.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/zlib.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/unicodedata.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/unicodedata.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_datetime.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_datetime.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/array.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/array.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_socket.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_socket.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_statistics.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_statistics.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_contextvars.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_contextvars.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_decimal.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_decimal.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_hashlib.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_hashlib.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_sha3.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_sha3.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_blake2.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_blake2.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_md5.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_md5.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_sha1.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_sha1.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_sha2.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_sha2.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_random.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_random.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_bisect.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_bisect.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_ctypes.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_ctypes.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/syslog.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/syslog.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_queue.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_queue.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_json.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_json.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_ssl.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_ssl.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_asyncio.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_asyncio.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/mmap.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/mmap.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_posixshmem.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_posixshmem.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_csv.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_csv.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_multiprocessing.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_multiprocessing.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/termios.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/termios.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/pyexpat.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/pyexpat.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_scproxy.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_scproxy.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/readline.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/readline.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_opcode.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_opcode.cpython-312-darwin.so', + 'EXTENSION'), + ('_cffi_backend.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/_cffi_backend.cpython-312-darwin.so', + 'EXTENSION'), + ('cryptography/hazmat/bindings/_rust.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/bindings/_rust.abi3.so', + 'EXTENSION'), + ('bcrypt/_bcrypt.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bcrypt/_bcrypt.abi3.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_uuid.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_uuid.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_elementtree.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_elementtree.cpython-312-darwin.so', + 'EXTENSION'), + ('lxml/etree.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/etree.cpython-312-darwin.so', + 'EXTENSION'), + ('lxml/_elementpath.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/_elementpath.cpython-312-darwin.so', + 'EXTENSION'), + ('lxml/sax.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/sax.cpython-312-darwin.so', + 'EXTENSION'), + ('lxml/objectify.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/objectify.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_multibytecodec.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_multibytecodec.cpython-312-darwin.so', + 'EXTENSION'), + ('lxml/html/diff.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/diff.cpython-312-darwin.so', + 'EXTENSION'), + ('lxml/builder.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/builder.cpython-312-darwin.so', + 'EXTENSION'), + ('openpyxl/worksheet/_writer.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/_writer.cpython-312-darwin.so', + 'EXTENSION'), + ('openpyxl/worksheet/_reader.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/_reader.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/_core/_multiarray_tests.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_multiarray_tests.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/_core/_multiarray_umath.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_multiarray_umath.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/linalg/_umath_linalg.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/linalg/_umath_linalg.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/mtrand.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/mtrand.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/_sfc64.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_sfc64.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/_philox.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_philox.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/_pcg64.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_pcg64.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/_mt19937.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_mt19937.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/bit_generator.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/bit_generator.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/_generator.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_generator.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/_bounded_integers.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_bounded_integers.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/_common.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_common.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/fft/_pocketfft_umath.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/fft/_pocketfft_umath.cpython-312-darwin.so', + 'EXTENSION'), + ('yaml/_yaml.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/_yaml.cpython-312-darwin.so', + 'EXTENSION'), + ('openpyxl/utils/cell.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/cell.cpython-312-darwin.so', + 'EXTENSION'), + ('PIL/_webp.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_webp.cpython-312-darwin.so', + 'EXTENSION'), + ('PIL/_imagingtk.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_imagingtk.cpython-312-darwin.so', + 'EXTENSION'), + ('PIL/_imagingcms.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_imagingcms.cpython-312-darwin.so', + 'EXTENSION'), + ('PIL/_imagingmath.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_imagingmath.cpython-312-darwin.so', + 'EXTENSION'), + ('PIL/_imaging.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_imaging.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_zoneinfo.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_zoneinfo.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_sqlite3.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_sqlite3.cpython-312-darwin.so', + 'EXTENSION'), + ('numexpr/interpreter.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numexpr/interpreter.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/writers.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/writers.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/window/indexers.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/window/indexers.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/window/aggregations.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/window/aggregations.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/vectorized.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/vectorized.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/tzconversion.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/tzconversion.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/timezones.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/timezones.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/timestamps.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/timestamps.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/timedeltas.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/timedeltas.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/strptime.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/strptime.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/period.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/period.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/parsing.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/parsing.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/offsets.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/offsets.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/np_datetime.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/np_datetime.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/nattype.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/nattype.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/fields.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/fields.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/dtypes.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/dtypes.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/conversion.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/conversion.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/ccalendar.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/ccalendar.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/base.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/base.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslib.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslib.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/testing.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/testing.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/sparse.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/sparse.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/sas.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/sas.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/reshape.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/reshape.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/properties.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/properties.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/parsers.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/parsers.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/pandas_parser.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/pandas_parser.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/pandas_datetime.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/pandas_datetime.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/ops_dispatch.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/ops_dispatch.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/ops.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/ops.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/missing.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/missing.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/lib.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/lib.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/json.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/json.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/join.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/join.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/interval.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/interval.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/internals.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/internals.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/indexing.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/indexing.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/index.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/index.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/hashtable.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/hashtable.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/hashing.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/hashing.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/groupby.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/groupby.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/byteswap.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/byteswap.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/arrays.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/arrays.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/algos.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/algos.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/cmath.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/cmath.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_codecs_jp.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_jp.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_codecs_kr.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_kr.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_codecs_iso2022.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_iso2022.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_codecs_cn.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_cn.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_codecs_tw.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_tw.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_codecs_hk.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_hk.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_heapq.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_heapq.cpython-312-darwin.so', + 'EXTENSION'), + ('PIL/.dylibs/libwebpdemux.2.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libwebpdemux.2.dylib', + 'BINARY'), + ('PIL/.dylibs/libwebp.7.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libwebp.7.dylib', + 'BINARY'), + ('PIL/.dylibs/libwebpmux.3.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libwebpmux.3.dylib', + 'BINARY'), + ('PIL/.dylibs/liblcms2.2.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/liblcms2.2.dylib', + 'BINARY'), + ('PIL/.dylibs/libtiff.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libtiff.6.dylib', + 'BINARY'), + ('PIL/.dylibs/libxcb.1.1.0.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libxcb.1.1.0.dylib', + 'BINARY'), + ('PIL/.dylibs/libopenjp2.2.5.3.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libopenjp2.2.5.3.dylib', + 'BINARY'), + ('PIL/.dylibs/libjpeg.62.4.0.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libjpeg.62.4.0.dylib', + 'BINARY'), + ('PIL/.dylibs/libz.1.3.1.zlib-ng.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libz.1.3.1.zlib-ng.dylib', + 'BINARY'), + ('PIL/.dylibs/libsharpyuv.0.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libsharpyuv.0.dylib', + 'BINARY'), + ('PIL/.dylibs/liblzma.5.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/liblzma.5.dylib', + 'BINARY'), + ('PIL/.dylibs/libXau.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libXau.6.dylib', + 'BINARY')], + [], + [], + [('config/config.yaml.example', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/config/config.yaml.example', + 'DATA'), + ('setuptools/_vendor/importlib_metadata-8.0.0.dist-info/INSTALLER', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/INSTALLER', + 'DATA'), + ('setuptools/_vendor/importlib_metadata-8.0.0.dist-info/REQUESTED', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/REQUESTED', + 'DATA'), + ('setuptools/_vendor/importlib_metadata-8.0.0.dist-info/RECORD', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/RECORD', + 'DATA'), + ('setuptools/_vendor/importlib_metadata-8.0.0.dist-info/top_level.txt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/top_level.txt', + 'DATA'), + ('setuptools/_vendor/importlib_metadata-8.0.0.dist-info/METADATA', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/METADATA', + 'DATA'), + ('setuptools/_vendor/importlib_metadata-8.0.0.dist-info/WHEEL', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/WHEEL', + 'DATA'), + ('setuptools/_vendor/importlib_metadata-8.0.0.dist-info/LICENSE', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/LICENSE', + 'DATA'), + ('setuptools/_vendor/jaraco/text/Lorem ipsum.txt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/Lorem ' + 'ipsum.txt', + 'DATA'), + ('cryptography-43.0.3.dist-info/license_files/LICENSE', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/license_files/LICENSE', + 'DATA'), + ('cryptography-43.0.3.dist-info/direct_url.json', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/direct_url.json', + 'DATA'), + ('cryptography-43.0.3.dist-info/INSTALLER', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/INSTALLER', + 'DATA'), + ('cryptography-43.0.3.dist-info/REQUESTED', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/REQUESTED', + 'DATA'), + ('cryptography-43.0.3.dist-info/RECORD', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/RECORD', + 'DATA'), + ('cryptography-43.0.3.dist-info/license_files/LICENSE.APACHE', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/license_files/LICENSE.APACHE', + 'DATA'), + ('cryptography-43.0.3.dist-info/METADATA', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/METADATA', + 'DATA'), + ('cryptography-43.0.3.dist-info/license_files/LICENSE.BSD', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/license_files/LICENSE.BSD', + 'DATA'), + ('cryptography-43.0.3.dist-info/WHEEL', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/WHEEL', + 'DATA'), + ('lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl', + 'DATA'), + ('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_abstract_expand.xsl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_abstract_expand.xsl', + 'DATA'), + ('lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl', + 'DATA'), + ('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_dsdl_include.xsl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_dsdl_include.xsl', + 'DATA'), + ('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_message.xsl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_message.xsl', + 'DATA'), + ('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl', + 'DATA'), + ('lxml/isoschematron/resources/rng/iso-schematron.rng', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/rng/iso-schematron.rng', + 'DATA'), + ('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl', + 'DATA'), + ('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/readme.txt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/readme.txt', + 'DATA'), + ('dateutil/zoneinfo/dateutil-zoneinfo.tar.gz', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/zoneinfo/dateutil-zoneinfo.tar.gz', + 'DATA'), + ('pytz/zoneinfo/Europe/Simferopol', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Simferopol', + 'DATA'), + ('pytz/zoneinfo/Africa/Kigali', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Kigali', + 'DATA'), + ('pytz/zoneinfo/Asia/Dushanbe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Dushanbe', + 'DATA'), + ('pytz/zoneinfo/Africa/Tunis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Tunis', + 'DATA'), + ('pytz/zoneinfo/America/Glace_Bay', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Glace_Bay', + 'DATA'), + ('pytz/zoneinfo/America/Nipigon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Nipigon', + 'DATA'), + ('pytz/zoneinfo/Pacific/Kiritimati', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Kiritimati', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+9', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+9', + 'DATA'), + ('pytz/zoneinfo/America/St_Vincent', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/St_Vincent', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Davis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Davis', + 'DATA'), + ('pytz/zoneinfo/US/Indiana-Starke', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Indiana-Starke', + 'DATA'), + ('pytz/zoneinfo/Australia/Queensland', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Queensland', + 'DATA'), + ('pytz/zoneinfo/Asia/Muscat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Muscat', + 'DATA'), + ('pytz/zoneinfo/Australia/NSW', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/NSW', + 'DATA'), + ('pytz/zoneinfo/Asia/Kashgar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kashgar', + 'DATA'), + ('pytz/zoneinfo/Iran', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Iran', + 'DATA'), + ('pytz/zoneinfo/America/Maceio', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Maceio', + 'DATA'), + ('pytz/zoneinfo/Pacific/Rarotonga', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Rarotonga', + 'DATA'), + ('pytz/zoneinfo/Asia/Baku', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Baku', + 'DATA'), + ('pytz/zoneinfo/Europe/San_Marino', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/San_Marino', + 'DATA'), + ('pytz/zoneinfo/America/Bogota', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Bogota', + 'DATA'), + ('pytz/zoneinfo/US/Arizona', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Arizona', + 'DATA'), + ('pytz/zoneinfo/Asia/Dhaka', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Dhaka', + 'DATA'), + ('pytz/zoneinfo/America/Cambridge_Bay', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Cambridge_Bay', + 'DATA'), + ('pytz/zoneinfo/Europe/Kaliningrad', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Kaliningrad', + 'DATA'), + ('pytz/zoneinfo/US/Aleutian', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Aleutian', + 'DATA'), + ('pytz/zoneinfo/Etc/Zulu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/Zulu', + 'DATA'), + ('pytz/zoneinfo/Europe/Nicosia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Nicosia', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+6', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+6', + 'DATA'), + ('pytz/zoneinfo/America/Kralendijk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Kralendijk', + 'DATA'), + ('pytz/zoneinfo/America/Ojinaga', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Ojinaga', + 'DATA'), + ('pytz/zoneinfo/Asia/Oral', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Oral', + 'DATA'), + ('pytz/zoneinfo/Africa/Nouakchott', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Nouakchott', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Palmer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Palmer', + 'DATA'), + ('pytz/zoneinfo/America/Port-au-Prince', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Port-au-Prince', + 'DATA'), + ('pytz/zoneinfo/Africa/Monrovia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Monrovia', + 'DATA'), + ('pytz/zoneinfo/Pacific/Gambier', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Gambier', + 'DATA'), + ('pytz/zoneinfo/America/Sitka', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Sitka', + 'DATA'), + ('pytz/zoneinfo/Indian/Mayotte', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Mayotte', + 'DATA'), + ('pytz/zoneinfo/America/Atka', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Atka', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-13', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-13', + 'DATA'), + ('pytz/zoneinfo/Pacific/Chuuk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Chuuk', + 'DATA'), + ('pytz/zoneinfo/ROK', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/ROK', + 'DATA'), + ('pytz/zoneinfo/Asia/Dacca', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Dacca', + 'DATA'), + ('pytz/zoneinfo/Asia/Rangoon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Rangoon', + 'DATA'), + ('pytz/zoneinfo/Asia/Brunei', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Brunei', + 'DATA'), + ('pytz/zoneinfo/Asia/Qatar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Qatar', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-5', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-5', + 'DATA'), + ('pytz/zoneinfo/Europe/Zagreb', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Zagreb', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Knox', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Knox', + 'DATA'), + ('pytz/zoneinfo/tzdata.zi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/tzdata.zi', + 'DATA'), + ('pytz/zoneinfo/Indian/Chagos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Chagos', + 'DATA'), + ('pytz/zoneinfo/Australia/Lord_Howe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Lord_Howe', + 'DATA'), + ('pytz/zoneinfo/Europe/Ulyanovsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Ulyanovsk', + 'DATA'), + ('pytz/zoneinfo/America/Vancouver', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Vancouver', + 'DATA'), + ('pytz/zoneinfo/MST7MDT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/MST7MDT', + 'DATA'), + ('pytz/zoneinfo/Asia/Kolkata', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kolkata', + 'DATA'), + ('pytz/zoneinfo/Europe/Vaduz', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Vaduz', + 'DATA'), + ('pytz/zoneinfo/Australia/Darwin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Darwin', + 'DATA'), + ('pytz/zoneinfo/Africa/Asmara', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Asmara', + 'DATA'), + ('pytz/zoneinfo/Asia/Hovd', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Hovd', + 'DATA'), + ('pytz/zoneinfo/Asia/Bahrain', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Bahrain', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Rothera', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Rothera', + 'DATA'), + ('pytz/zoneinfo/Asia/Damascus', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Damascus', + 'DATA'), + ('pytz/zoneinfo/America/Boa_Vista', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Boa_Vista', + 'DATA'), + ('pytz/zoneinfo/Europe/Bucharest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Bucharest', + 'DATA'), + ('pytz/zoneinfo/America/Edmonton', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Edmonton', + 'DATA'), + ('pytz/zoneinfo/Asia/Dili', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Dili', + 'DATA'), + ('pytz/zoneinfo/Pacific/Kosrae', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Kosrae', + 'DATA'), + ('pytz/zoneinfo/Antarctica/McMurdo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/McMurdo', + 'DATA'), + ('pytz/zoneinfo/America/St_Barthelemy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/St_Barthelemy', + 'DATA'), + ('pytz/zoneinfo/America/Puerto_Rico', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Puerto_Rico', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-1', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-1', + 'DATA'), + ('pytz/zoneinfo/America/Adak', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Adak', + 'DATA'), + ('pytz/zoneinfo/CET', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/CET', + 'DATA'), + ('pytz/zoneinfo/Europe/Vatican', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Vatican', + 'DATA'), + ('pytz/zoneinfo/Europe/Tirane', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Tirane', + 'DATA'), + ('pytz/zoneinfo/Africa/Dar_es_Salaam', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Dar_es_Salaam', + 'DATA'), + ('pytz/zoneinfo/Australia/North', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/North', + 'DATA'), + ('pytz/zoneinfo/Asia/Irkutsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Irkutsk', + 'DATA'), + ('pytz/zoneinfo/Libya', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Libya', + 'DATA'), + ('pytz/zoneinfo/Arctic/Longyearbyen', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Arctic/Longyearbyen', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Winamac', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Winamac', + 'DATA'), + ('pytz/zoneinfo/GMT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/GMT', + 'DATA'), + ('pytz/zoneinfo/Australia/West', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/West', + 'DATA'), + ('pytz/zoneinfo/Africa/Abidjan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Abidjan', + 'DATA'), + ('pytz/zoneinfo/Pacific/Guadalcanal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Guadalcanal', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Jujuy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Jujuy', + 'DATA'), + ('pytz/zoneinfo/America/Cordoba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Cordoba', + 'DATA'), + ('pytz/zoneinfo/Canada/Atlantic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Atlantic', + 'DATA'), + ('pytz/zoneinfo/America/Lower_Princes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Lower_Princes', + 'DATA'), + ('pytz/zoneinfo/Africa/Freetown', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Freetown', + 'DATA'), + ('pytz/zoneinfo/Indian/Maldives', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Maldives', + 'DATA'), + ('pytz/zoneinfo/Asia/Taipei', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Taipei', + 'DATA'), + ('pytz/zoneinfo/GMT0', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/GMT0', + 'DATA'), + ('pytz/zoneinfo/America/Santa_Isabel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Santa_Isabel', + 'DATA'), + ('pytz/zoneinfo/America/Indianapolis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indianapolis', + 'DATA'), + ('pytz/zoneinfo/America/Porto_Velho', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Porto_Velho', + 'DATA'), + ('pytz/zoneinfo/Pacific/Truk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Truk', + 'DATA'), + ('pytz/zoneinfo/Brazil/DeNoronha', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Brazil/DeNoronha', + 'DATA'), + ('pytz/zoneinfo/Europe/Busingen', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Busingen', + 'DATA'), + ('pytz/zoneinfo/Pacific/Fiji', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Fiji', + 'DATA'), + ('pytz/zoneinfo/Asia/Saigon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Saigon', + 'DATA'), + ('pytz/zoneinfo/America/Santo_Domingo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Santo_Domingo', + 'DATA'), + ('pytz/zoneinfo/Japan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Japan', + 'DATA'), + ('pytz/zoneinfo/Pacific/Wallis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Wallis', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+8', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+8', + 'DATA'), + ('pytz/zoneinfo/Africa/Lubumbashi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Lubumbashi', + 'DATA'), + ('pytz/zoneinfo/America/Montevideo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Montevideo', + 'DATA'), + ('pytz/zoneinfo/Africa/Addis_Ababa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Addis_Ababa', + 'DATA'), + ('pytz/zoneinfo/Africa/Asmera', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Asmera', + 'DATA'), + ('pytz/zoneinfo/Europe/Zaporozhye', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Zaporozhye', + 'DATA'), + ('pytz/zoneinfo/Etc/UTC', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/UTC', + 'DATA'), + ('pytz/zoneinfo/America/St_Thomas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/St_Thomas', + 'DATA'), + ('pytz/zoneinfo/Canada/Eastern', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Eastern', + 'DATA'), + ('pytz/zoneinfo/America/Sao_Paulo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Sao_Paulo', + 'DATA'), + ('pytz/zoneinfo/America/Chicago', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Chicago', + 'DATA'), + ('pytz/zoneinfo/America/Winnipeg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Winnipeg', + 'DATA'), + ('pytz/zoneinfo/America/Caracas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Caracas', + 'DATA'), + ('pytz/zoneinfo/Europe/Tiraspol', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Tiraspol', + 'DATA'), + ('pytz/zoneinfo/zone.tab', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/zone.tab', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-9', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-9', + 'DATA'), + ('pytz/zoneinfo/Pacific/Funafuti', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Funafuti', + 'DATA'), + ('pytz/zoneinfo/Chile/EasterIsland', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Chile/EasterIsland', + 'DATA'), + ('pytz/zoneinfo/America/Goose_Bay', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Goose_Bay', + 'DATA'), + ('pytz/zoneinfo/Poland', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Poland', + 'DATA'), + ('pytz/zoneinfo/Asia/Seoul', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Seoul', + 'DATA'), + ('pytz/zoneinfo/Pacific/Chatham', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Chatham', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-8', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-8', + 'DATA'), + ('pytz/zoneinfo/Pacific/Niue', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Niue', + 'DATA'), + ('pytz/zoneinfo/America/Port_of_Spain', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Port_of_Spain', + 'DATA'), + ('pytz/zoneinfo/Europe/Saratov', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Saratov', + 'DATA'), + ('pytz/zoneinfo/Pacific/Bougainville', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Bougainville', + 'DATA'), + ('pytz/zoneinfo/America/El_Salvador', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/El_Salvador', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+3', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+3', + 'DATA'), + ('pytz/zoneinfo/Europe/Brussels', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Brussels', + 'DATA'), + ('pytz/zoneinfo/America/La_Paz', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/La_Paz', + 'DATA'), + ('pytz/zoneinfo/US/Central', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Central', + 'DATA'), + ('pytz/zoneinfo/America/Menominee', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Menominee', + 'DATA'), + ('pytz/zoneinfo/Asia/Jayapura', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Jayapura', + 'DATA'), + ('pytz/zoneinfo/America/Guyana', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Guyana', + 'DATA'), + ('pytz/zoneinfo/America/Nome', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Nome', + 'DATA'), + ('pytz/zoneinfo/Australia/ACT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/ACT', + 'DATA'), + ('pytz/zoneinfo/Asia/Tokyo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Tokyo', + 'DATA'), + ('pytz/zoneinfo/Australia/LHI', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/LHI', + 'DATA'), + ('pytz/zoneinfo/Pacific/Pago_Pago', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Pago_Pago', + 'DATA'), + ('pytz/zoneinfo/Europe/London', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/London', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Mendoza', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Mendoza', + 'DATA'), + ('pytz/zoneinfo/America/Cancun', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Cancun', + 'DATA'), + ('pytz/zoneinfo/Asia/Riyadh', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Riyadh', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Vostok', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Vostok', + 'DATA'), + ('pytz/zoneinfo/Europe/Warsaw', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Warsaw', + 'DATA'), + ('pytz/zoneinfo/America/Kentucky/Louisville', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Kentucky/Louisville', + 'DATA'), + ('pytz/zoneinfo/Asia/Pyongyang', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Pyongyang', + 'DATA'), + ('pytz/zoneinfo/America/Virgin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Virgin', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Tell_City', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Tell_City', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+11', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+11', + 'DATA'), + ('pytz/zoneinfo/HST', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/HST', + 'DATA'), + ('pytz/zoneinfo/Iceland', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Iceland', + 'DATA'), + ('pytz/zoneinfo/America/Coral_Harbour', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Coral_Harbour', + 'DATA'), + ('pytz/zoneinfo/Australia/Sydney', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Sydney', + 'DATA'), + ('pytz/zoneinfo/UCT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/UCT', + 'DATA'), + ('pytz/zoneinfo/America/Porto_Acre', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Porto_Acre', + 'DATA'), + ('pytz/zoneinfo/Africa/Ndjamena', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Ndjamena', + 'DATA'), + ('pytz/zoneinfo/America/Los_Angeles', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Los_Angeles', + 'DATA'), + ('pytz/zoneinfo/America/Eirunepe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Eirunepe', + 'DATA'), + ('pytz/zoneinfo/America/New_York', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/New_York', + 'DATA'), + ('pytz/zoneinfo/Asia/Magadan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Magadan', + 'DATA'), + ('pytz/zoneinfo/Greenwich', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Greenwich', + 'DATA'), + ('pytz/zoneinfo/Asia/Kabul', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kabul', + 'DATA'), + ('pytz/zoneinfo/Asia/Harbin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Harbin', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/San_Juan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/San_Juan', + 'DATA'), + ('pytz/zoneinfo/Pacific/Pitcairn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Pitcairn', + 'DATA'), + ('pytz/zoneinfo/Pacific/Easter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Easter', + 'DATA'), + ('pytz/zoneinfo/Kwajalein', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Kwajalein', + 'DATA'), + ('pytz/zoneinfo/Eire', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Eire', + 'DATA'), + ('pytz/zoneinfo/Africa/Brazzaville', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Brazzaville', + 'DATA'), + ('pytz/zoneinfo/America/Paramaribo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Paramaribo', + 'DATA'), + ('pytz/zoneinfo/Africa/Ceuta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Ceuta', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+4', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+4', + 'DATA'), + ('pytz/zoneinfo/Asia/Beirut', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Beirut', + 'DATA'), + ('pytz/zoneinfo/Africa/Mbabane', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Mbabane', + 'DATA'), + ('pytz/zoneinfo/Asia/Qostanay', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Qostanay', + 'DATA'), + ('pytz/zoneinfo/Africa/Casablanca', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Casablanca', + 'DATA'), + ('pytz/zoneinfo/Europe/Malta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Malta', + 'DATA'), + ('pytz/zoneinfo/MST', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/MST', + 'DATA'), + ('pytz/zoneinfo/America/Lima', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Lima', + 'DATA'), + ('pytz/zoneinfo/Asia/Ust-Nera', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Ust-Nera', + 'DATA'), + ('pytz/zoneinfo/Australia/Hobart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Hobart', + 'DATA'), + ('pytz/zoneinfo/Europe/Kiev', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Kiev', + 'DATA'), + ('pytz/zoneinfo/Europe/Skopje', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Skopje', + 'DATA'), + ('pytz/zoneinfo/America/Belize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Belize', + 'DATA'), + ('pytz/zoneinfo/America/Ciudad_Juarez', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Ciudad_Juarez', + 'DATA'), + ('pytz/zoneinfo/America/Curacao', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Curacao', + 'DATA'), + ('pytz/zoneinfo/Asia/Qyzylorda', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Qyzylorda', + 'DATA'), + ('pytz/zoneinfo/UTC', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/UTC', + 'DATA'), + ('pytz/zoneinfo/America/Denver', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Denver', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Troll', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Troll', + 'DATA'), + ('pytz/zoneinfo/America/Resolute', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Resolute', + 'DATA'), + ('pytz/zoneinfo/Asia/Chungking', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Chungking', + 'DATA'), + ('pytz/zoneinfo/Africa/Tripoli', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Tripoli', + 'DATA'), + ('pytz/zoneinfo/America/Chihuahua', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Chihuahua', + 'DATA'), + ('pytz/zoneinfo/Africa/Bissau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Bissau', + 'DATA'), + ('pytz/zoneinfo/Australia/Broken_Hill', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Broken_Hill', + 'DATA'), + ('pytz/zoneinfo/Australia/Lindeman', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Lindeman', + 'DATA'), + ('pytz/zoneinfo/America/Tijuana', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Tijuana', + 'DATA'), + ('pytz/zoneinfo/CST6CDT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/CST6CDT', + 'DATA'), + ('pytz/zoneinfo/Europe/Vienna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Vienna', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Mawson', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Mawson', + 'DATA'), + ('pytz/zoneinfo/Europe/Moscow', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Moscow', + 'DATA'), + ('pytz/zoneinfo/Africa/Juba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Juba', + 'DATA'), + ('pytz/zoneinfo/W-SU', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/W-SU', + 'DATA'), + ('pytz/zoneinfo/US/East-Indiana', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/East-Indiana', + 'DATA'), + ('pytz/zoneinfo/America/Grenada', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Grenada', + 'DATA'), + ('pytz/zoneinfo/Africa/Cairo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Cairo', + 'DATA'), + ('pytz/zoneinfo/Asia/Colombo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Colombo', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+12', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+12', + 'DATA'), + ('pytz/zoneinfo/Asia/Kuwait', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kuwait', + 'DATA'), + ('pytz/zoneinfo/Africa/Luanda', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Luanda', + 'DATA'), + ('pytz/zoneinfo/America/Kentucky/Monticello', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Kentucky/Monticello', + 'DATA'), + ('pytz/zoneinfo/Europe/Madrid', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Madrid', + 'DATA'), + ('pytz/zoneinfo/Pacific/Fakaofo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Fakaofo', + 'DATA'), + ('pytz/zoneinfo/Canada/Mountain', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Mountain', + 'DATA'), + ('pytz/zoneinfo/America/Boise', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Boise', + 'DATA'), + ('pytz/zoneinfo/Etc/UCT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/UCT', + 'DATA'), + ('pytz/zoneinfo/Asia/Ho_Chi_Minh', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Ho_Chi_Minh', + 'DATA'), + ('pytz/zoneinfo/Europe/Belfast', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Belfast', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Casey', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Casey', + 'DATA'), + ('pytz/zoneinfo/GMT+0', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/GMT+0', + 'DATA'), + ('pytz/zoneinfo/US/Alaska', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Alaska', + 'DATA'), + ('pytz/zoneinfo/Africa/Nairobi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Nairobi', + 'DATA'), + ('pytz/zoneinfo/Brazil/East', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Brazil/East', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+0', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+0', + 'DATA'), + ('pytz/zoneinfo/Europe/Sarajevo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Sarajevo', + 'DATA'), + ('pytz/zoneinfo/America/Miquelon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Miquelon', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Faroe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Faroe', + 'DATA'), + ('pytz/zoneinfo/Indian/Antananarivo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Antananarivo', + 'DATA'), + ('pytz/zoneinfo/GB', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/GB', + 'DATA'), + ('pytz/zoneinfo/America/Rankin_Inlet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Rankin_Inlet', + 'DATA'), + ('pytz/zoneinfo/Africa/Kampala', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Kampala', + 'DATA'), + ('pytz/zoneinfo/Europe/Istanbul', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Istanbul', + 'DATA'), + ('pytz/zoneinfo/PRC', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/PRC', + 'DATA'), + ('pytz/zoneinfo/America/Managua', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Managua', + 'DATA'), + ('pytz/zoneinfo/America/Asuncion', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Asuncion', + 'DATA'), + ('pytz/zoneinfo/America/Grand_Turk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Grand_Turk', + 'DATA'), + ('pytz/zoneinfo/Europe/Podgorica', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Podgorica', + 'DATA'), + ('pytz/zoneinfo/Europe/Athens', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Athens', + 'DATA'), + ('pytz/zoneinfo/Europe/Vilnius', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Vilnius', + 'DATA'), + ('pytz/zoneinfo/Africa/Ouagadougou', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Ouagadougou', + 'DATA'), + ('pytz/zoneinfo/America/Iqaluit', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Iqaluit', + 'DATA'), + ('pytz/zoneinfo/Africa/Lusaka', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Lusaka', + 'DATA'), + ('pytz/zoneinfo/Europe/Dublin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Dublin', + 'DATA'), + ('pytz/zoneinfo/Indian/Christmas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Christmas', + 'DATA'), + ('pytz/zoneinfo/America/Bahia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Bahia', + 'DATA'), + ('pytz/zoneinfo/Asia/Aden', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Aden', + 'DATA'), + ('pytz/zoneinfo/Europe/Gibraltar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Gibraltar', + 'DATA'), + ('pytz/zoneinfo/Asia/Bishkek', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Bishkek', + 'DATA'), + ('pytz/zoneinfo/Pacific/Yap', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Yap', + 'DATA'), + ('pytz/zoneinfo/Mexico/General', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Mexico/General', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/ComodRivadavia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/ComodRivadavia', + 'DATA'), + ('pytz/zoneinfo/America/Dawson', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Dawson', + 'DATA'), + ('pytz/zoneinfo/Africa/Bujumbura', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Bujumbura', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Petersburg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Petersburg', + 'DATA'), + ('pytz/zoneinfo/America/Santarem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Santarem', + 'DATA'), + ('pytz/zoneinfo/America/Ensenada', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Ensenada', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Cape_Verde', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Cape_Verde', + 'DATA'), + ('pytz/zoneinfo/Asia/Tbilisi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Tbilisi', + 'DATA'), + ('pytz/zoneinfo/Pacific/Noumea', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Noumea', + 'DATA'), + ('pytz/zoneinfo/Africa/Johannesburg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Johannesburg', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-10', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-10', + 'DATA'), + ('pytz/zoneinfo/Asia/Khandyga', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Khandyga', + 'DATA'), + ('pytz/zoneinfo/Asia/Hong_Kong', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Hong_Kong', + 'DATA'), + ('pytz/zoneinfo/Pacific/Palau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Palau', + 'DATA'), + ('pytz/zoneinfo/America/Regina', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Regina', + 'DATA'), + ('pytz/zoneinfo/Canada/Saskatchewan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Saskatchewan', + 'DATA'), + ('pytz/zoneinfo/America/Merida', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Merida', + 'DATA'), + ('pytz/zoneinfo/America/Cuiaba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Cuiaba', + 'DATA'), + ('pytz/zoneinfo/Indian/Kerguelen', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Kerguelen', + 'DATA'), + ('pytz/zoneinfo/Europe/Volgograd', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Volgograd', + 'DATA'), + ('pytz/zoneinfo/America/North_Dakota/Beulah', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/North_Dakota/Beulah', + 'DATA'), + ('pytz/zoneinfo/America/Campo_Grande', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Campo_Grande', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Reykjavik', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Reykjavik', + 'DATA'), + ('pytz/zoneinfo/Asia/Vladivostok', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Vladivostok', + 'DATA'), + ('pytz/zoneinfo/Jamaica', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Jamaica', + 'DATA'), + ('pytz/zoneinfo/America/Creston', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Creston', + 'DATA'), + ('pytz/zoneinfo/Europe/Helsinki', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Helsinki', + 'DATA'), + ('pytz/zoneinfo/America/Martinique', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Martinique', + 'DATA'), + ('pytz/zoneinfo/America/Tegucigalpa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Tegucigalpa', + 'DATA'), + ('pytz/zoneinfo/Pacific/Ponape', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Ponape', + 'DATA'), + ('pytz/zoneinfo/Pacific/Port_Moresby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Port_Moresby', + 'DATA'), + ('pytz/zoneinfo/America/North_Dakota/Center', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/North_Dakota/Center', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/San_Luis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/San_Luis', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Bermuda', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Bermuda', + 'DATA'), + ('pytz/zoneinfo/Australia/Brisbane', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Brisbane', + 'DATA'), + ('pytz/zoneinfo/America/Godthab', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Godthab', + 'DATA'), + ('pytz/zoneinfo/Asia/Ashgabat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Ashgabat', + 'DATA'), + ('pytz/zoneinfo/America/North_Dakota/New_Salem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/North_Dakota/New_Salem', + 'DATA'), + ('pytz/zoneinfo/Europe/Jersey', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Jersey', + 'DATA'), + ('pytz/zoneinfo/Asia/Srednekolymsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Srednekolymsk', + 'DATA'), + ('pytz/zoneinfo/Asia/Jakarta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Jakarta', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Madeira', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Madeira', + 'DATA'), + ('pytz/zoneinfo/America/Montreal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Montreal', + 'DATA'), + ('pytz/zoneinfo/Asia/Krasnoyarsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Krasnoyarsk', + 'DATA'), + ('pytz/zoneinfo/America/Mexico_City', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Mexico_City', + 'DATA'), + ('pytz/zoneinfo/Africa/Dakar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Dakar', + 'DATA'), + ('pytz/zoneinfo/Africa/Kinshasa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Kinshasa', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Jan_Mayen', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Jan_Mayen', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Faeroe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Faeroe', + 'DATA'), + ('pytz/zoneinfo/Australia/Currie', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Currie', + 'DATA'), + ('pytz/zoneinfo/Africa/Lagos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Lagos', + 'DATA'), + ('pytz/zoneinfo/Pacific/Honolulu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Honolulu', + 'DATA'), + ('pytz/zoneinfo/Indian/Mahe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Mahe', + 'DATA'), + ('pytz/zoneinfo/Canada/Yukon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Yukon', + 'DATA'), + ('pytz/zoneinfo/Europe/Berlin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Berlin', + 'DATA'), + ('pytz/zoneinfo/America/Tortola', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Tortola', + 'DATA'), + ('pytz/zoneinfo/Navajo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Navajo', + 'DATA'), + ('pytz/zoneinfo/Africa/Niamey', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Niamey', + 'DATA'), + ('pytz/zoneinfo/Asia/Amman', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Amman', + 'DATA'), + ('pytz/zoneinfo/Africa/Sao_Tome', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Sao_Tome', + 'DATA'), + ('pytz/zoneinfo/Asia/Shanghai', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Shanghai', + 'DATA'), + ('pytz/zoneinfo/America/Inuvik', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Inuvik', + 'DATA'), + ('pytz/zoneinfo/Asia/Gaza', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Gaza', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Canary', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Canary', + 'DATA'), + ('pytz/zoneinfo/Universal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Universal', + 'DATA'), + ('pytz/zoneinfo/Asia/Dubai', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Dubai', + 'DATA'), + ('pytz/zoneinfo/Asia/Katmandu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Katmandu', + 'DATA'), + ('pytz/zoneinfo/Asia/Tehran', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Tehran', + 'DATA'), + ('pytz/zoneinfo/Zulu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Zulu', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-6', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-6', + 'DATA'), + ('pytz/zoneinfo/Europe/Mariehamn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Mariehamn', + 'DATA'), + ('pytz/zoneinfo/America/Santiago', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Santiago', + 'DATA'), + ('pytz/zoneinfo/Egypt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Egypt', + 'DATA'), + ('pytz/zoneinfo/Europe/Sofia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Sofia', + 'DATA'), + ('pytz/zoneinfo/Pacific/Majuro', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Majuro', + 'DATA'), + ('pytz/zoneinfo/America/Fort_Nelson', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Fort_Nelson', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-14', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-14', + 'DATA'), + ('pytz/zoneinfo/Asia/Yakutsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Yakutsk', + 'DATA'), + ('pytz/zoneinfo/Africa/Libreville', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Libreville', + 'DATA'), + ('pytz/zoneinfo/EST', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/EST', + 'DATA'), + ('pytz/zoneinfo/Australia/South', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/South', + 'DATA'), + ('pytz/zoneinfo/America/Thunder_Bay', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Thunder_Bay', + 'DATA'), + ('pytz/zoneinfo/ROC', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/ROC', + 'DATA'), + ('pytz/zoneinfo/Europe/Zurich', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Zurich', + 'DATA'), + ('pytz/zoneinfo/Europe/Riga', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Riga', + 'DATA'), + ('pytz/zoneinfo/Pacific/Tarawa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Tarawa', + 'DATA'), + ('pytz/zoneinfo/Asia/Tel_Aviv', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Tel_Aviv', + 'DATA'), + ('pytz/zoneinfo/America/Dominica', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Dominica', + 'DATA'), + ('pytz/zoneinfo/America/Phoenix', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Phoenix', + 'DATA'), + ('pytz/zoneinfo/Europe/Andorra', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Andorra', + 'DATA'), + ('pytz/zoneinfo/GB-Eire', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/GB-Eire', + 'DATA'), + ('pytz/zoneinfo/Asia/Macao', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Macao', + 'DATA'), + ('pytz/zoneinfo/Pacific/Johnston', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Johnston', + 'DATA'), + ('pytz/zoneinfo/America/Aruba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Aruba', + 'DATA'), + ('pytz/zoneinfo/Europe/Copenhagen', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Copenhagen', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Syowa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Syowa', + 'DATA'), + ('pytz/zoneinfo/America/Danmarkshavn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Danmarkshavn', + 'DATA'), + ('pytz/zoneinfo/Asia/Samarkand', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Samarkand', + 'DATA'), + ('pytz/zoneinfo/Pacific/Apia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Apia', + 'DATA'), + ('pytz/zoneinfo/Indian/Comoro', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Comoro', + 'DATA'), + ('pytz/zoneinfo/US/Hawaii', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Hawaii', + 'DATA'), + ('pytz/zoneinfo/America/Manaus', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Manaus', + 'DATA'), + ('pytz/zoneinfo/Asia/Ujung_Pandang', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Ujung_Pandang', + 'DATA'), + ('pytz/zoneinfo/America/Havana', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Havana', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+10', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+10', + 'DATA'), + ('pytz/zoneinfo/Atlantic/St_Helena', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/St_Helena', + 'DATA'), + ('pytz/zoneinfo/America/Rosario', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Rosario', + 'DATA'), + ('pytz/zoneinfo/America/Hermosillo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Hermosillo', + 'DATA'), + ('pytz/zoneinfo/Europe/Amsterdam', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Amsterdam', + 'DATA'), + ('pytz/zoneinfo/Europe/Paris', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Paris', + 'DATA'), + ('pytz/zoneinfo/America/Antigua', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Antigua', + 'DATA'), + ('pytz/zoneinfo/Pacific/Kwajalein', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Kwajalein', + 'DATA'), + ('pytz/zoneinfo/Asia/Famagusta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Famagusta', + 'DATA'), + ('pytz/zoneinfo/Asia/Kathmandu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kathmandu', + 'DATA'), + ('pytz/zoneinfo/Indian/Cocos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Cocos', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-0', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-0', + 'DATA'), + ('pytz/zoneinfo/America/Scoresbysund', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Scoresbysund', + 'DATA'), + ('pytz/zoneinfo/America/Matamoros', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Matamoros', + 'DATA'), + ('pytz/zoneinfo/Asia/Omsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Omsk', + 'DATA'), + ('pytz/zoneinfo/America/Recife', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Recife', + 'DATA'), + ('pytz/zoneinfo/Pacific/Efate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Efate', + 'DATA'), + ('pytz/zoneinfo/GMT-0', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/GMT-0', + 'DATA'), + ('pytz/zoneinfo/Brazil/Acre', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Brazil/Acre', + 'DATA'), + ('pytz/zoneinfo/Cuba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Cuba', + 'DATA'), + ('pytz/zoneinfo/Europe/Chisinau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Chisinau', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT', + 'DATA'), + ('pytz/zoneinfo/America/St_Kitts', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/St_Kitts', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Vevay', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Vevay', + 'DATA'), + ('pytz/zoneinfo/Europe/Ljubljana', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Ljubljana', + 'DATA'), + ('pytz/zoneinfo/Pacific/Guam', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Guam', + 'DATA'), + ('pytz/zoneinfo/Asia/Choibalsan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Choibalsan', + 'DATA'), + ('pytz/zoneinfo/America/Juneau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Juneau', + 'DATA'), + ('pytz/zoneinfo/Asia/Chongqing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Chongqing', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Stanley', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Stanley', + 'DATA'), + ('pytz/zoneinfo/Asia/Thimphu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Thimphu', + 'DATA'), + ('pytz/zoneinfo/Asia/Calcutta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Calcutta', + 'DATA'), + ('pytz/zoneinfo/Antarctica/South_Pole', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/South_Pole', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Azores', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Azores', + 'DATA'), + ('pytz/zoneinfo/iso3166.tab', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/iso3166.tab', + 'DATA'), + ('pytz/zoneinfo/America/Mazatlan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Mazatlan', + 'DATA'), + ('pytz/zoneinfo/America/Halifax', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Halifax', + 'DATA'), + ('pytz/zoneinfo/zonenow.tab', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/zonenow.tab', + 'DATA'), + ('pytz/zoneinfo/US/Michigan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Michigan', + 'DATA'), + ('pytz/zoneinfo/Singapore', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Singapore', + 'DATA'), + ('pytz/zoneinfo/PST8PDT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/PST8PDT', + 'DATA'), + ('pytz/zoneinfo/Asia/Novokuznetsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Novokuznetsk', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Macquarie', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Macquarie', + 'DATA'), + ('pytz/zoneinfo/America/Fortaleza', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Fortaleza', + 'DATA'), + ('pytz/zoneinfo/Asia/Atyrau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Atyrau', + 'DATA'), + ('pytz/zoneinfo/America/Toronto', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Toronto', + 'DATA'), + ('pytz/zoneinfo/Asia/Ulaanbaatar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Ulaanbaatar', + 'DATA'), + ('pytz/zoneinfo/Pacific/Wake', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Wake', + 'DATA'), + ('pytz/zoneinfo/Asia/Yangon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Yangon', + 'DATA'), + ('pytz/zoneinfo/Europe/Bratislava', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Bratislava', + 'DATA'), + ('pytz/zoneinfo/Turkey', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Turkey', + 'DATA'), + ('pytz/zoneinfo/Africa/El_Aaiun', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/El_Aaiun', + 'DATA'), + ('pytz/zoneinfo/Asia/Novosibirsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Novosibirsk', + 'DATA'), + ('pytz/zoneinfo/Canada/Central', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Central', + 'DATA'), + ('pytz/zoneinfo/Israel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Israel', + 'DATA'), + ('pytz/zoneinfo/Asia/Barnaul', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Barnaul', + 'DATA'), + ('pytz/zoneinfo/Asia/Ashkhabad', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Ashkhabad', + 'DATA'), + ('pytz/zoneinfo/Pacific/Samoa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Samoa', + 'DATA'), + ('pytz/zoneinfo/America/Rio_Branco', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Rio_Branco', + 'DATA'), + ('pytz/zoneinfo/Pacific/Auckland', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Auckland', + 'DATA'), + ('pytz/zoneinfo/America/Costa_Rica', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Costa_Rica', + 'DATA'), + ('pytz/zoneinfo/US/Mountain', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Mountain', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-12', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-12', + 'DATA'), + ('pytz/zoneinfo/Pacific/Norfolk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Norfolk', + 'DATA'), + ('pytz/zoneinfo/America/Guayaquil', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Guayaquil', + 'DATA'), + ('pytz/zoneinfo/Africa/Lome', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Lome', + 'DATA'), + ('pytz/zoneinfo/Australia/Tasmania', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Tasmania', + 'DATA'), + ('pytz/zoneinfo/Europe/Prague', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Prague', + 'DATA'), + ('pytz/zoneinfo/Europe/Oslo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Oslo', + 'DATA'), + ('pytz/zoneinfo/Asia/Singapore', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Singapore', + 'DATA'), + ('pytz/zoneinfo/America/Swift_Current', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Swift_Current', + 'DATA'), + ('pytz/zoneinfo/Asia/Aqtau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Aqtau', + 'DATA'), + ('pytz/zoneinfo/Mexico/BajaSur', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Mexico/BajaSur', + 'DATA'), + ('pytz/zoneinfo/America/Rainy_River', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Rainy_River', + 'DATA'), + ('pytz/zoneinfo/WET', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/WET', + 'DATA'), + ('pytz/zoneinfo/leapseconds', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/leapseconds', + 'DATA'), + ('pytz/zoneinfo/America/Anguilla', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Anguilla', + 'DATA'), + ('pytz/zoneinfo/America/Marigot', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Marigot', + 'DATA'), + ('pytz/zoneinfo/America/Nassau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Nassau', + 'DATA'), + ('pytz/zoneinfo/Africa/Algiers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Algiers', + 'DATA'), + ('pytz/zoneinfo/Asia/Phnom_Penh', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Phnom_Penh', + 'DATA'), + ('pytz/zoneinfo/Asia/Sakhalin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Sakhalin', + 'DATA'), + ('pytz/zoneinfo/Etc/Universal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/Universal', + 'DATA'), + ('pytz/zoneinfo/Chile/Continental', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Chile/Continental', + 'DATA'), + ('pytz/zoneinfo/Europe/Minsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Minsk', + 'DATA'), + ('pytz/zoneinfo/America/Fort_Wayne', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Fort_Wayne', + 'DATA'), + ('pytz/zoneinfo/Africa/Djibouti', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Djibouti', + 'DATA'), + ('pytz/zoneinfo/Mexico/BajaNorte', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Mexico/BajaNorte', + 'DATA'), + ('pytz/zoneinfo/America/Dawson_Creek', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Dawson_Creek', + 'DATA'), + ('pytz/zoneinfo/Pacific/Enderbury', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Enderbury', + 'DATA'), + ('pytz/zoneinfo/Africa/Gaborone', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Gaborone', + 'DATA'), + ('pytz/zoneinfo/Australia/Melbourne', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Melbourne', + 'DATA'), + ('pytz/zoneinfo/Indian/Mauritius', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Mauritius', + 'DATA'), + ('pytz/zoneinfo/America/Shiprock', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Shiprock', + 'DATA'), + ('pytz/zoneinfo/Africa/Timbuktu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Timbuktu', + 'DATA'), + ('pytz/zoneinfo/EST5EDT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/EST5EDT', + 'DATA'), + ('pytz/zoneinfo/Asia/Manila', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Manila', + 'DATA'), + ('pytz/zoneinfo/Asia/Tomsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Tomsk', + 'DATA'), + ('pytz/zoneinfo/Africa/Windhoek', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Windhoek', + 'DATA'), + ('pytz/zoneinfo/NZ-CHAT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/NZ-CHAT', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+1', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+1', + 'DATA'), + ('pytz/zoneinfo/America/Moncton', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Moncton', + 'DATA'), + ('pytz/zoneinfo/America/Barbados', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Barbados', + 'DATA'), + ('pytz/zoneinfo/Asia/Chita', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Chita', + 'DATA'), + ('pytz/zoneinfo/Etc/Greenwich', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/Greenwich', + 'DATA'), + ('pytz/zoneinfo/Europe/Tallinn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Tallinn', + 'DATA'), + ('pytz/zoneinfo/Europe/Isle_of_Man', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Isle_of_Man', + 'DATA'), + ('pytz/zoneinfo/America/Louisville', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Louisville', + 'DATA'), + ('pytz/zoneinfo/Asia/Almaty', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Almaty', + 'DATA'), + ('pytz/zoneinfo/NZ', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/NZ', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Rio_Gallegos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Rio_Gallegos', + 'DATA'), + ('pytz/zoneinfo/Europe/Astrakhan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Astrakhan', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-2', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-2', + 'DATA'), + ('pytz/zoneinfo/America/Jamaica', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Jamaica', + 'DATA'), + ('pytz/zoneinfo/Africa/Banjul', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Banjul', + 'DATA'), + ('pytz/zoneinfo/Indian/Reunion', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Reunion', + 'DATA'), + ('pytz/zoneinfo/Europe/Kyiv', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Kyiv', + 'DATA'), + ('pytz/zoneinfo/Africa/Porto-Novo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Porto-Novo', + 'DATA'), + ('pytz/zoneinfo/US/Eastern', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Eastern', + 'DATA'), + ('pytz/zoneinfo/America/Yellowknife', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Yellowknife', + 'DATA'), + ('pytz/zoneinfo/Asia/Anadyr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Anadyr', + 'DATA'), + ('pytz/zoneinfo/Asia/Tashkent', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Tashkent', + 'DATA'), + ('pytz/zoneinfo/America/Thule', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Thule', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+7', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+7', + 'DATA'), + ('pytz/zoneinfo/Pacific/Midway', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Midway', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Catamarca', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Catamarca', + 'DATA'), + ('pytz/zoneinfo/America/Bahia_Banderas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Bahia_Banderas', + 'DATA'), + ('pytz/zoneinfo/America/Knox_IN', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Knox_IN', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Indianapolis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Indianapolis', + 'DATA'), + ('pytz/zoneinfo/Asia/Vientiane', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Vientiane', + 'DATA'), + ('pytz/zoneinfo/Africa/Douala', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Douala', + 'DATA'), + ('pytz/zoneinfo/Canada/Pacific', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Pacific', + 'DATA'), + ('pytz/zoneinfo/America/Yakutat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Yakutat', + 'DATA'), + ('pytz/zoneinfo/Europe/Guernsey', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Guernsey', + 'DATA'), + ('pytz/zoneinfo/Brazil/West', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Brazil/West', + 'DATA'), + ('pytz/zoneinfo/Europe/Monaco', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Monaco', + 'DATA'), + ('pytz/zoneinfo/Pacific/Tahiti', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Tahiti', + 'DATA'), + ('pytz/zoneinfo/America/Jujuy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Jujuy', + 'DATA'), + ('pytz/zoneinfo/America/Punta_Arenas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Punta_Arenas', + 'DATA'), + ('pytz/zoneinfo/Europe/Luxembourg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Luxembourg', + 'DATA'), + ('pytz/zoneinfo/Europe/Belgrade', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Belgrade', + 'DATA'), + ('pytz/zoneinfo/Antarctica/DumontDUrville', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/DumontDUrville', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+5', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+5', + 'DATA'), + ('pytz/zoneinfo/Atlantic/South_Georgia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/South_Georgia', + 'DATA'), + ('pytz/zoneinfo/America/Montserrat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Montserrat', + 'DATA'), + ('pytz/zoneinfo/America/Guatemala', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Guatemala', + 'DATA'), + ('pytz/zoneinfo/Europe/Rome', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Rome', + 'DATA'), + ('pytz/zoneinfo/America/Cayman', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Cayman', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Marengo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Marengo', + 'DATA'), + ('pytz/zoneinfo/Africa/Harare', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Harare', + 'DATA'), + ('pytz/zoneinfo/Europe/Samara', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Samara', + 'DATA'), + ('pytz/zoneinfo/zone1970.tab', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/zone1970.tab', + 'DATA'), + ('pytz/zoneinfo/America/Buenos_Aires', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Buenos_Aires', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Ushuaia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Ushuaia', + 'DATA'), + ('pytz/zoneinfo/Australia/Eucla', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Eucla', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-4', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-4', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Salta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Salta', + 'DATA'), + ('pytz/zoneinfo/Asia/Kamchatka', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kamchatka', + 'DATA'), + ('pytz/zoneinfo/MET', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/MET', + 'DATA'), + ('pytz/zoneinfo/Pacific/Pohnpei', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Pohnpei', + 'DATA'), + ('pytz/zoneinfo/America/Blanc-Sablon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Blanc-Sablon', + 'DATA'), + ('pytz/zoneinfo/America/Cayenne', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Cayenne', + 'DATA'), + ('pytz/zoneinfo/Pacific/Marquesas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Marquesas', + 'DATA'), + ('pytz/zoneinfo/America/Noronha', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Noronha', + 'DATA'), + ('pytz/zoneinfo/Asia/Karachi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Karachi', + 'DATA'), + ('pytz/zoneinfo/Europe/Kirov', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Kirov', + 'DATA'), + ('pytz/zoneinfo/Portugal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Portugal', + 'DATA'), + ('pytz/zoneinfo/Canada/Newfoundland', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Newfoundland', + 'DATA'), + ('pytz/zoneinfo/Europe/Budapest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Budapest', + 'DATA'), + ('pytz/zoneinfo/Asia/Yekaterinburg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Yekaterinburg', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT0', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT0', + 'DATA'), + ('pytz/zoneinfo/Asia/Thimbu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Thimbu', + 'DATA'), + ('pytz/zoneinfo/Asia/Macau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Macau', + 'DATA'), + ('pytz/zoneinfo/Asia/Bangkok', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Bangkok', + 'DATA'), + ('pytz/zoneinfo/Europe/Uzhgorod', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Uzhgorod', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-11', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-11', + 'DATA'), + ('pytz/zoneinfo/America/St_Lucia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/St_Lucia', + 'DATA'), + ('pytz/zoneinfo/Africa/Blantyre', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Blantyre', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Buenos_Aires', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Buenos_Aires', + 'DATA'), + ('pytz/zoneinfo/Asia/Hebron', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Hebron', + 'DATA'), + ('pytz/zoneinfo/Asia/Aqtobe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Aqtobe', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+2', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+2', + 'DATA'), + ('pytz/zoneinfo/Asia/Pontianak', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Pontianak', + 'DATA'), + ('pytz/zoneinfo/Africa/Malabo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Malabo', + 'DATA'), + ('pytz/zoneinfo/Australia/Canberra', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Canberra', + 'DATA'), + ('pytz/zoneinfo/Asia/Kuching', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kuching', + 'DATA'), + ('pytz/zoneinfo/Asia/Nicosia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Nicosia', + 'DATA'), + ('pytz/zoneinfo/Africa/Bamako', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Bamako', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Tucuman', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Tucuman', + 'DATA'), + ('pytz/zoneinfo/America/Guadeloupe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Guadeloupe', + 'DATA'), + ('pytz/zoneinfo/Africa/Accra', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Accra', + 'DATA'), + ('pytz/zoneinfo/Asia/Kuala_Lumpur', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kuala_Lumpur', + 'DATA'), + ('pytz/zoneinfo/Hongkong', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Hongkong', + 'DATA'), + ('pytz/zoneinfo/Australia/Perth', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Perth', + 'DATA'), + ('pytz/zoneinfo/America/Metlakatla', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Metlakatla', + 'DATA'), + ('pytz/zoneinfo/US/Samoa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Samoa', + 'DATA'), + ('pytz/zoneinfo/Asia/Jerusalem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Jerusalem', + 'DATA'), + ('pytz/zoneinfo/America/St_Johns', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/St_Johns', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-3', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-3', + 'DATA'), + ('pytz/zoneinfo/America/Belem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Belem', + 'DATA'), + ('pytz/zoneinfo/America/Nuuk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Nuuk', + 'DATA'), + ('pytz/zoneinfo/America/Panama', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Panama', + 'DATA'), + ('pytz/zoneinfo/Europe/Stockholm', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Stockholm', + 'DATA'), + ('pytz/zoneinfo/US/Pacific', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Pacific', + 'DATA'), + ('pytz/zoneinfo/America/Detroit', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Detroit', + 'DATA'), + ('pytz/zoneinfo/Europe/Lisbon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Lisbon', + 'DATA'), + ('pytz/zoneinfo/EET', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/EET', + 'DATA'), + ('pytz/zoneinfo/Asia/Yerevan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Yerevan', + 'DATA'), + ('pytz/zoneinfo/Asia/Makassar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Makassar', + 'DATA'), + ('pytz/zoneinfo/America/Anchorage', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Anchorage', + 'DATA'), + ('pytz/zoneinfo/Australia/Yancowinna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Yancowinna', + 'DATA'), + ('pytz/zoneinfo/Asia/Istanbul', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Istanbul', + 'DATA'), + ('pytz/zoneinfo/Australia/Victoria', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Victoria', + 'DATA'), + ('pytz/zoneinfo/Asia/Ulan_Bator', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Ulan_Bator', + 'DATA'), + ('pytz/zoneinfo/Pacific/Galapagos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Galapagos', + 'DATA'), + ('pytz/zoneinfo/America/Pangnirtung', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Pangnirtung', + 'DATA'), + ('pytz/zoneinfo/Factory', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Factory', + 'DATA'), + ('pytz/zoneinfo/Pacific/Tongatapu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Tongatapu', + 'DATA'), + ('pytz/zoneinfo/Africa/Conakry', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Conakry', + 'DATA'), + ('pytz/zoneinfo/Africa/Khartoum', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Khartoum', + 'DATA'), + ('pytz/zoneinfo/America/Atikokan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Atikokan', + 'DATA'), + ('pytz/zoneinfo/America/Monterrey', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Monterrey', + 'DATA'), + ('pytz/zoneinfo/America/Mendoza', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Mendoza', + 'DATA'), + ('pytz/zoneinfo/America/Whitehorse', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Whitehorse', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Vincennes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Vincennes', + 'DATA'), + ('pytz/zoneinfo/Australia/Adelaide', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Adelaide', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-7', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-7', + 'DATA'), + ('pytz/zoneinfo/Africa/Bangui', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Bangui', + 'DATA'), + ('pytz/zoneinfo/Africa/Maputo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Maputo', + 'DATA'), + ('pytz/zoneinfo/Pacific/Kanton', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Kanton', + 'DATA'), + ('pytz/zoneinfo/America/Araguaina', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Araguaina', + 'DATA'), + ('pytz/zoneinfo/Pacific/Nauru', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Nauru', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Cordoba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Cordoba', + 'DATA'), + ('pytz/zoneinfo/America/Catamarca', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Catamarca', + 'DATA'), + ('pytz/zoneinfo/Africa/Mogadishu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Mogadishu', + 'DATA'), + ('pytz/zoneinfo/Asia/Baghdad', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Baghdad', + 'DATA'), + ('pytz/zoneinfo/Africa/Maseru', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Maseru', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/La_Rioja', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/La_Rioja', + 'DATA'), + ('pytz/zoneinfo/Pacific/Saipan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Saipan', + 'DATA'), + ('pytz/zoneinfo/Asia/Urumqi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Urumqi', + 'DATA'), + ('pandas/io/formats/templates/string.tpl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/templates/string.tpl', + 'DATA'), + ('pandas/io/formats/templates/html_style.tpl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/templates/html_style.tpl', + 'DATA'), + ('pandas/io/formats/templates/latex.tpl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/templates/latex.tpl', + 'DATA'), + ('pandas/io/formats/templates/html.tpl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/templates/html.tpl', + 'DATA'), + ('pandas/io/formats/templates/html_table.tpl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/templates/html_table.tpl', + 'DATA'), + ('pandas/io/formats/templates/latex_longtable.tpl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/templates/latex_longtable.tpl', + 'DATA'), + ('pandas/io/formats/templates/latex_table.tpl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/templates/latex_table.tpl', + 'DATA'), + ('wheel-0.45.1.dist-info/RECORD', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel-0.45.1.dist-info/RECORD', + 'DATA'), + ('wheel-0.45.1.dist-info/entry_points.txt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel-0.45.1.dist-info/entry_points.txt', + 'DATA'), + ('wheel-0.45.1.dist-info/WHEEL', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel-0.45.1.dist-info/WHEEL', + 'DATA'), + ('wheel-0.45.1.dist-info/METADATA', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel-0.45.1.dist-info/METADATA', + 'DATA'), + ('wheel-0.45.1.dist-info/LICENSE.txt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel-0.45.1.dist-info/LICENSE.txt', + 'DATA'), + ('base_library.zip', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/build/ad_user_creator/base_library.zip', + 'DATA'), + ('libc++.dylib', 'libc++.1.0.dylib', 'SYMLINK'), + ('libc++.1.dylib', 'libc++.1.0.dylib', 'SYMLINK'), + ('libsqlite3.dylib', 'libsqlite3.0.dylib', 'SYMLINK'), + ('libgomp.dylib', 'libomp.dylib', 'SYMLINK'), + ('libreadline.8.dylib', 'libreadline.8.2.dylib', 'SYMLINK'), + ('libexpat.dylib', 'libexpat.1.10.0.dylib', 'SYMLINK'), + ('libiomp5.dylib', 'libomp.dylib', 'SYMLINK'), + ('libgfortran.dylib', 'libgfortran.5.dylib', 'SYMLINK'), + ('libformw.dylib', 'libformw.6.dylib', 'SYMLINK'), + ('libblas.dylib', 'libopenblas.dylib', 'SYMLINK'), + ('libreadline.dylib', 'libreadline.8.2.dylib', 'SYMLINK'), + ('libmenu.dylib', 'libmenuw.6.dylib', 'SYMLINK'), + ('libcrypto.dylib', 'libcrypto.3.dylib', 'SYMLINK'), + ('libhistory.8.dylib', 'libhistory.8.2.dylib', 'SYMLINK'), + ('libpanelw.dylib', 'libpanelw.6.dylib', 'SYMLINK'), + ('libcblas.dylib', 'libopenblas.dylib', 'SYMLINK'), + ('libmenuw.dylib', 'libmenuw.6.dylib', 'SYMLINK'), + ('libform.dylib', 'libformw.6.dylib', 'SYMLINK'), + ('libmenu.6.dylib', 'libmenuw.6.dylib', 'SYMLINK'), + ('libncurses.6.dylib', 'libncursesw.6.dylib', 'SYMLINK'), + ('libncursesw.dylib', 'libncursesw.6.dylib', 'SYMLINK'), + ('libncurses.dylib', 'libncursesw.6.dylib', 'SYMLINK'), + ('libpanel.dylib', 'libpanelw.6.dylib', 'SYMLINK'), + ('liblapack.dylib', 'libopenblas.dylib', 'SYMLINK'), + ('libpanel.6.dylib', 'libpanelw.6.dylib', 'SYMLINK'), + ('libssl.dylib', 'libssl.3.dylib', 'SYMLINK'), + ('libtinfow.dylib', 'libtinfow.6.dylib', 'SYMLINK'), + ('libffi.7.dylib', 'libffi.8.dylib', 'SYMLINK'), + ('libexpat.1.dylib', 'libexpat.1.10.0.dylib', 'SYMLINK'), + ('libtinfo.6.dylib', 'libtinfow.6.dylib', 'SYMLINK'), + ('libbz2.dylib', 'libbz2.1.0.8.dylib', 'SYMLINK'), + ('libz.1.dylib', 'libz.1.2.13.dylib', 'SYMLINK'), + ('liblzma.5.dylib', 'PIL/.dylibs/liblzma.5.dylib', 'SYMLINK'), + ('libhistory.dylib', 'libhistory.8.2.dylib', 'SYMLINK'), + ('libopenblas.0.dylib', 'libopenblasp-r0.3.21.dylib', 'SYMLINK'), + ('libform.6.dylib', 'libformw.6.dylib', 'SYMLINK'), + ('liblzma.dylib', 'liblzma.5.dylib', 'SYMLINK'), + ('libz.dylib', 'libz.1.2.13.dylib', 'SYMLINK'), + ('libtinfo.dylib', 'libtinfow.6.dylib', 'SYMLINK'), + ('libquadmath.dylib', 'libquadmath.0.dylib', 'SYMLINK'), + ('libgomp.1.dylib', 'libomp.dylib', 'SYMLINK'), + ('libffi.dylib', 'libffi.8.dylib', 'SYMLINK'), + ('libwebpdemux.2.dylib', 'PIL/.dylibs/libwebpdemux.2.dylib', 'SYMLINK'), + ('libwebp.7.dylib', 'PIL/.dylibs/libwebp.7.dylib', 'SYMLINK'), + ('libwebpmux.3.dylib', 'PIL/.dylibs/libwebpmux.3.dylib', 'SYMLINK'), + ('liblcms2.2.dylib', 'PIL/.dylibs/liblcms2.2.dylib', 'SYMLINK'), + ('libtiff.6.dylib', 'PIL/.dylibs/libtiff.6.dylib', 'SYMLINK'), + ('libxcb.1.1.0.dylib', 'PIL/.dylibs/libxcb.1.1.0.dylib', 'SYMLINK'), + ('libopenjp2.2.5.3.dylib', 'PIL/.dylibs/libopenjp2.2.5.3.dylib', 'SYMLINK'), + ('libjpeg.62.4.0.dylib', 'PIL/.dylibs/libjpeg.62.4.0.dylib', 'SYMLINK'), + ('libz.1.3.1.zlib-ng.dylib', + 'PIL/.dylibs/libz.1.3.1.zlib-ng.dylib', + 'SYMLINK'), + ('libsharpyuv.0.dylib', 'PIL/.dylibs/libsharpyuv.0.dylib', 'SYMLINK'), + ('libXau.6.dylib', 'PIL/.dylibs/libXau.6.dylib', 'SYMLINK')], + [('posixpath', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/posixpath.py', + 'PYMODULE'), + ('_collections_abc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_collections_abc.py', + 'PYMODULE'), + ('locale', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/locale.py', + 'PYMODULE'), + ('sre_constants', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/sre_constants.py', + 'PYMODULE'), + ('ntpath', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ntpath.py', + 'PYMODULE'), + ('stat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/stat.py', + 'PYMODULE'), + ('functools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/functools.py', + 'PYMODULE'), + ('encodings.zlib_codec', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/zlib_codec.py', + 'PYMODULE'), + ('encodings.uu_codec', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/uu_codec.py', + 'PYMODULE'), + ('encodings.utf_8_sig', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/utf_8_sig.py', + 'PYMODULE'), + ('encodings.utf_8', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/utf_8.py', + 'PYMODULE'), + ('encodings.utf_7', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/utf_7.py', + 'PYMODULE'), + ('encodings.utf_32_le', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/utf_32_le.py', + 'PYMODULE'), + ('encodings.utf_32_be', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/utf_32_be.py', + 'PYMODULE'), + ('encodings.utf_32', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/utf_32.py', + 'PYMODULE'), + ('encodings.utf_16_le', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/utf_16_le.py', + 'PYMODULE'), + ('encodings.utf_16_be', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/utf_16_be.py', + 'PYMODULE'), + ('encodings.utf_16', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/utf_16.py', + 'PYMODULE'), + ('encodings.unicode_escape', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/unicode_escape.py', + 'PYMODULE'), + ('encodings.undefined', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/undefined.py', + 'PYMODULE'), + ('encodings.tis_620', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/tis_620.py', + 'PYMODULE'), + ('encodings.shift_jisx0213', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/shift_jisx0213.py', + 'PYMODULE'), + ('encodings.shift_jis_2004', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/shift_jis_2004.py', + 'PYMODULE'), + ('encodings.shift_jis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/shift_jis.py', + 'PYMODULE'), + ('encodings.rot_13', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/rot_13.py', + 'PYMODULE'), + ('encodings.raw_unicode_escape', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/raw_unicode_escape.py', + 'PYMODULE'), + ('encodings.quopri_codec', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/quopri_codec.py', + 'PYMODULE'), + ('encodings.punycode', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/punycode.py', + 'PYMODULE'), + ('encodings.ptcp154', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/ptcp154.py', + 'PYMODULE'), + ('encodings.palmos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/palmos.py', + 'PYMODULE'), + ('encodings.oem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/oem.py', + 'PYMODULE'), + ('encodings.mbcs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/mbcs.py', + 'PYMODULE'), + ('encodings.mac_turkish', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/mac_turkish.py', + 'PYMODULE'), + ('encodings.mac_romanian', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/mac_romanian.py', + 'PYMODULE'), + ('encodings.mac_roman', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/mac_roman.py', + 'PYMODULE'), + ('encodings.mac_latin2', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/mac_latin2.py', + 'PYMODULE'), + ('encodings.mac_iceland', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/mac_iceland.py', + 'PYMODULE'), + ('encodings.mac_greek', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/mac_greek.py', + 'PYMODULE'), + ('encodings.mac_farsi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/mac_farsi.py', + 'PYMODULE'), + ('encodings.mac_cyrillic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/mac_cyrillic.py', + 'PYMODULE'), + ('encodings.mac_croatian', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/mac_croatian.py', + 'PYMODULE'), + ('encodings.mac_arabic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/mac_arabic.py', + 'PYMODULE'), + ('encodings.latin_1', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/latin_1.py', + 'PYMODULE'), + ('encodings.kz1048', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/kz1048.py', + 'PYMODULE'), + ('encodings.koi8_u', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/koi8_u.py', + 'PYMODULE'), + ('encodings.koi8_t', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/koi8_t.py', + 'PYMODULE'), + ('encodings.koi8_r', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/koi8_r.py', + 'PYMODULE'), + ('encodings.johab', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/johab.py', + 'PYMODULE'), + ('encodings.iso8859_9', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/iso8859_9.py', + 'PYMODULE'), + ('encodings.iso8859_8', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/iso8859_8.py', + 'PYMODULE'), + ('encodings.iso8859_7', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/iso8859_7.py', + 'PYMODULE'), + ('encodings.iso8859_6', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/iso8859_6.py', + 'PYMODULE'), + ('encodings.iso8859_5', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/iso8859_5.py', + 'PYMODULE'), + ('encodings.iso8859_4', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/iso8859_4.py', + 'PYMODULE'), + ('encodings.iso8859_3', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/iso8859_3.py', + 'PYMODULE'), + ('encodings.iso8859_2', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/iso8859_2.py', + 'PYMODULE'), + ('encodings.iso8859_16', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/iso8859_16.py', + 'PYMODULE'), + ('encodings.iso8859_15', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/iso8859_15.py', + 'PYMODULE'), + ('encodings.iso8859_14', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/iso8859_14.py', + 'PYMODULE'), + ('encodings.iso8859_13', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/iso8859_13.py', + 'PYMODULE'), + ('encodings.iso8859_11', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/iso8859_11.py', + 'PYMODULE'), + ('encodings.iso8859_10', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/iso8859_10.py', + 'PYMODULE'), + ('encodings.iso8859_1', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/iso8859_1.py', + 'PYMODULE'), + ('encodings.iso2022_kr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/iso2022_kr.py', + 'PYMODULE'), + ('encodings.iso2022_jp_ext', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/iso2022_jp_ext.py', + 'PYMODULE'), + ('encodings.iso2022_jp_3', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/iso2022_jp_3.py', + 'PYMODULE'), + ('encodings.iso2022_jp_2004', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/iso2022_jp_2004.py', + 'PYMODULE'), + ('encodings.iso2022_jp_2', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/iso2022_jp_2.py', + 'PYMODULE'), + ('encodings.iso2022_jp_1', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/iso2022_jp_1.py', + 'PYMODULE'), + ('encodings.iso2022_jp', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/iso2022_jp.py', + 'PYMODULE'), + ('encodings.idna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/idna.py', + 'PYMODULE'), + ('encodings.hz', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/hz.py', + 'PYMODULE'), + ('encodings.hp_roman8', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/hp_roman8.py', + 'PYMODULE'), + ('encodings.hex_codec', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/hex_codec.py', + 'PYMODULE'), + ('encodings.gbk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/gbk.py', + 'PYMODULE'), + ('encodings.gb2312', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/gb2312.py', + 'PYMODULE'), + ('encodings.gb18030', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/gb18030.py', + 'PYMODULE'), + ('encodings.euc_kr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/euc_kr.py', + 'PYMODULE'), + ('encodings.euc_jp', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/euc_jp.py', + 'PYMODULE'), + ('encodings.euc_jisx0213', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/euc_jisx0213.py', + 'PYMODULE'), + ('encodings.euc_jis_2004', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/euc_jis_2004.py', + 'PYMODULE'), + ('encodings.cp950', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp950.py', + 'PYMODULE'), + ('encodings.cp949', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp949.py', + 'PYMODULE'), + ('encodings.cp932', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp932.py', + 'PYMODULE'), + ('encodings.cp875', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp875.py', + 'PYMODULE'), + ('encodings.cp874', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp874.py', + 'PYMODULE'), + ('encodings.cp869', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp869.py', + 'PYMODULE'), + ('encodings.cp866', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp866.py', + 'PYMODULE'), + ('encodings.cp865', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp865.py', + 'PYMODULE'), + ('encodings.cp864', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp864.py', + 'PYMODULE'), + ('encodings.cp863', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp863.py', + 'PYMODULE'), + ('encodings.cp862', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp862.py', + 'PYMODULE'), + ('encodings.cp861', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp861.py', + 'PYMODULE'), + ('encodings.cp860', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp860.py', + 'PYMODULE'), + ('encodings.cp858', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp858.py', + 'PYMODULE'), + ('encodings.cp857', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp857.py', + 'PYMODULE'), + ('encodings.cp856', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp856.py', + 'PYMODULE'), + ('encodings.cp855', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp855.py', + 'PYMODULE'), + ('encodings.cp852', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp852.py', + 'PYMODULE'), + ('encodings.cp850', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp850.py', + 'PYMODULE'), + ('encodings.cp775', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp775.py', + 'PYMODULE'), + ('encodings.cp737', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp737.py', + 'PYMODULE'), + ('encodings.cp720', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp720.py', + 'PYMODULE'), + ('encodings.cp500', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp500.py', + 'PYMODULE'), + ('encodings.cp437', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp437.py', + 'PYMODULE'), + ('encodings.cp424', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp424.py', + 'PYMODULE'), + ('encodings.cp273', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp273.py', + 'PYMODULE'), + ('encodings.cp1258', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp1258.py', + 'PYMODULE'), + ('encodings.cp1257', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp1257.py', + 'PYMODULE'), + ('encodings.cp1256', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp1256.py', + 'PYMODULE'), + ('encodings.cp1255', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp1255.py', + 'PYMODULE'), + ('encodings.cp1254', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp1254.py', + 'PYMODULE'), + ('encodings.cp1253', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp1253.py', + 'PYMODULE'), + ('encodings.cp1252', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp1252.py', + 'PYMODULE'), + ('encodings.cp1251', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp1251.py', + 'PYMODULE'), + ('encodings.cp1250', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp1250.py', + 'PYMODULE'), + ('encodings.cp1140', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp1140.py', + 'PYMODULE'), + ('encodings.cp1125', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp1125.py', + 'PYMODULE'), + ('encodings.cp1026', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp1026.py', + 'PYMODULE'), + ('encodings.cp1006', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp1006.py', + 'PYMODULE'), + ('encodings.cp037', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/cp037.py', + 'PYMODULE'), + ('encodings.charmap', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/charmap.py', + 'PYMODULE'), + ('encodings.bz2_codec', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/bz2_codec.py', + 'PYMODULE'), + ('encodings.big5hkscs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/big5hkscs.py', + 'PYMODULE'), + ('encodings.big5', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/big5.py', + 'PYMODULE'), + ('encodings.base64_codec', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/base64_codec.py', + 'PYMODULE'), + ('encodings.ascii', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/ascii.py', + 'PYMODULE'), + ('encodings.aliases', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/aliases.py', + 'PYMODULE'), + ('encodings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/encodings/__init__.py', + 'PYMODULE'), + ('re._parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/re/_parser.py', + 'PYMODULE'), + ('re._constants', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/re/_constants.py', + 'PYMODULE'), + ('re._compiler', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/re/_compiler.py', + 'PYMODULE'), + ('re._casefix', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/re/_casefix.py', + 'PYMODULE'), + ('re', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/re/__init__.py', + 'PYMODULE'), + ('sre_parse', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/sre_parse.py', + 'PYMODULE'), + ('operator', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/operator.py', + 'PYMODULE'), + ('io', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/io.py', + 'PYMODULE'), + ('copyreg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/copyreg.py', + 'PYMODULE'), + ('heapq', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/heapq.py', + 'PYMODULE'), + ('codecs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/codecs.py', + 'PYMODULE'), + ('genericpath', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/genericpath.py', + 'PYMODULE'), + ('reprlib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/reprlib.py', + 'PYMODULE'), + ('keyword', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/keyword.py', + 'PYMODULE'), + ('types', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/types.py', + 'PYMODULE'), + ('_weakrefset', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_weakrefset.py', + 'PYMODULE'), + ('os', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/os.py', + 'PYMODULE'), + ('collections.abc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/collections/abc.py', + 'PYMODULE'), + ('collections', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/collections/__init__.py', + 'PYMODULE'), + ('weakref', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/weakref.py', + 'PYMODULE'), + ('sre_compile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/sre_compile.py', + 'PYMODULE'), + ('traceback', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/traceback.py', + 'PYMODULE'), + ('abc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/abc.py', + 'PYMODULE'), + ('linecache', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/linecache.py', + 'PYMODULE'), + ('warnings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/warnings.py', + 'PYMODULE'), + ('enum', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/enum.py', + 'PYMODULE')]) diff --git a/build/ad_user_creator/EXE-00.toc b/build/ad_user_creator/EXE-00.toc new file mode 100644 index 0000000..5e21052 --- /dev/null +++ b/build/ad_user_creator/EXE-00.toc @@ -0,0 +1,2675 @@ +('/Users/marsway/Workspace/Aflowx/AD-User-Creator/dist/ad-user-creator', + True, + False, + False, + None, + None, + False, + False, + None, + True, + False, + 'arm64', + None, + None, + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/build/ad_user_creator/ad-user-creator.pkg', + [('pyi-contents-directory _internal', '', 'OPTION'), + ('PYZ-00.pyz', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/build/ad_user_creator/PYZ-00.pyz', + 'PYZ'), + ('python3.12/lib-dynload/_struct.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_struct.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/zlib.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/zlib.cpython-312-darwin.so', + 'EXTENSION'), + ('struct', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/build/ad_user_creator/localpycs/struct.pyc', + 'PYMODULE'), + ('pyimod01_archive', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/build/ad_user_creator/localpycs/pyimod01_archive.pyc', + 'PYMODULE'), + ('pyimod02_importers', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/build/ad_user_creator/localpycs/pyimod02_importers.pyc', + 'PYMODULE'), + ('pyimod03_ctypes', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/build/ad_user_creator/localpycs/pyimod03_ctypes.pyc', + 'PYMODULE'), + ('pyiboot01_bootstrap', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PyInstaller/loader/pyiboot01_bootstrap.py', + 'PYSOURCE'), + ('pyi_rth_inspect', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PyInstaller/hooks/rthooks/pyi_rth_inspect.py', + 'PYSOURCE'), + ('pyi_rth_pkgutil', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py', + 'PYSOURCE'), + ('pyi_rth_multiprocessing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PyInstaller/hooks/rthooks/pyi_rth_multiprocessing.py', + 'PYSOURCE'), + ('pyi_rth_setuptools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PyInstaller/hooks/rthooks/pyi_rth_setuptools.py', + 'PYSOURCE'), + ('pyi_rth_pkgres', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgres.py', + 'PYSOURCE'), + ('pyi_rth_cryptography_openssl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/_pyinstaller_hooks_contrib/rthooks/pyi_rth_cryptography_openssl.py', + 'PYSOURCE'), + ('entry', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/entry.py', + 'PYSOURCE'), + ('libgcc_s.1.1.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libgcc_s.1.1.dylib', + 'BINARY'), + ('libncursesw.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libncursesw.6.dylib', + 'BINARY'), + ('libpanelw.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libpanelw.6.dylib', + 'BINARY'), + ('libmenuw.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libmenuw.6.dylib', + 'BINARY'), + ('libexpat.1.10.0.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libexpat.1.10.0.dylib', + 'BINARY'), + ('libssl.3.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libssl.3.dylib', + 'BINARY'), + ('libgfortran.5.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libgfortran.5.dylib', + 'BINARY'), + ('libz.1.2.13.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libz.1.2.13.dylib', + 'BINARY'), + ('libtcl8.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libtcl8.6.dylib', + 'BINARY'), + ('libcrypto.3.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libcrypto.3.dylib', + 'BINARY'), + ('libopenblasp-r0.3.21.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libopenblasp-r0.3.21.dylib', + 'BINARY'), + ('libc++.1.0.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libc++.1.0.dylib', + 'BINARY'), + ('libtk8.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libtk8.6.dylib', + 'BINARY'), + ('libhistory.8.2.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libhistory.8.2.dylib', + 'BINARY'), + ('libbz2.1.0.8.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libbz2.1.0.8.dylib', + 'BINARY'), + ('libsqlite3.0.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libsqlite3.0.dylib', + 'BINARY'), + ('libreadline.8.2.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libreadline.8.2.dylib', + 'BINARY'), + ('libomp.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libomp.dylib', + 'BINARY'), + ('libffi.8.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libffi.8.dylib', + 'BINARY'), + ('libopenblas.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libopenblas.dylib', + 'BINARY'), + ('libpython3.12.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libpython3.12.dylib', + 'BINARY'), + ('libquadmath.0.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libquadmath.0.dylib', + 'BINARY'), + ('libtinfow.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libtinfow.6.dylib', + 'BINARY'), + ('libformw.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libformw.6.dylib', + 'BINARY'), + ('Crypto/PublicKey/_ed25519.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/PublicKey/_ed25519.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_cfb.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_cfb.abi3.so', + 'BINARY'), + ('Crypto/Util/_strxor.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Util/_strxor.abi3.so', + 'BINARY'), + ('Crypto/Hash/_MD4.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_MD4.abi3.so', + 'BINARY'), + ('Crypto/PublicKey/_ed448.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/PublicKey/_ed448.abi3.so', + 'BINARY'), + ('Crypto/PublicKey/_curve448.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/PublicKey/_curve448.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_cast.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_cast.abi3.so', + 'BINARY'), + ('Crypto/Hash/_SHA224.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_SHA224.abi3.so', + 'BINARY'), + ('Crypto/PublicKey/_curve25519.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/PublicKey/_curve25519.abi3.so', + 'BINARY'), + ('Crypto/Hash/_MD2.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_MD2.abi3.so', + 'BINARY'), + ('Crypto/Hash/_SHA256.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_SHA256.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_Salsa20.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_Salsa20.abi3.so', + 'BINARY'), + ('Crypto/Hash/_SHA512.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_SHA512.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_des.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_des.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_des3.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_des3.abi3.so', + 'BINARY'), + ('Crypto/Hash/_keccak.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_keccak.abi3.so', + 'BINARY'), + ('Crypto/Hash/_RIPEMD160.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_RIPEMD160.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_pkcs1_decode.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_pkcs1_decode.abi3.so', + 'BINARY'), + ('Crypto/Hash/_BLAKE2s.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_BLAKE2s.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_aes.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_aes.abi3.so', + 'BINARY'), + ('Crypto/PublicKey/_ec_ws.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/PublicKey/_ec_ws.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_arc2.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_arc2.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_eksblowfish.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_eksblowfish.abi3.so', + 'BINARY'), + ('Crypto/Protocol/_scrypt.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Protocol/_scrypt.abi3.so', + 'BINARY'), + ('Crypto/Hash/_ghash_portable.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_ghash_portable.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_cbc.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_cbc.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_chacha20.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_chacha20.abi3.so', + 'BINARY'), + ('Crypto/Util/_cpuid_c.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Util/_cpuid_c.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_ocb.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_ocb.abi3.so', + 'BINARY'), + ('Crypto/Hash/_poly1305.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_poly1305.abi3.so', + 'BINARY'), + ('Crypto/Hash/_SHA384.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_SHA384.abi3.so', + 'BINARY'), + ('Crypto/Hash/_BLAKE2b.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_BLAKE2b.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_ecb.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_ecb.abi3.so', + 'BINARY'), + ('Crypto/Hash/_SHA1.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_SHA1.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_ofb.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_ofb.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_blowfish.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_blowfish.abi3.so', + 'BINARY'), + ('Crypto/Math/_modexp.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Math/_modexp.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_ctr.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_ctr.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_ARC4.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_ARC4.abi3.so', + 'BINARY'), + ('Crypto/Hash/_MD5.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_MD5.abi3.so', + 'BINARY'), + ('ossl-modules/legacy.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/ossl-modules/legacy.dylib', + 'BINARY'), + ('python3.12/lib-dynload/grp.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/grp.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/math.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/math.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/select.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/select.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_posixsubprocess.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_posixsubprocess.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/fcntl.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/fcntl.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_pickle.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_pickle.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/binascii.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/binascii.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/resource.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/resource.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_lzma.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_lzma.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_bz2.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_bz2.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/unicodedata.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/unicodedata.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_datetime.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_datetime.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/array.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/array.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_socket.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_socket.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_statistics.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_statistics.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_contextvars.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_contextvars.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_decimal.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_decimal.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_hashlib.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_hashlib.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_sha3.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_sha3.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_blake2.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_blake2.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_md5.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_md5.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_sha1.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_sha1.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_sha2.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_sha2.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_random.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_random.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_bisect.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_bisect.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_ctypes.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_ctypes.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/syslog.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/syslog.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_queue.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_queue.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_json.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_json.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_ssl.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_ssl.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_asyncio.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_asyncio.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/mmap.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/mmap.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_posixshmem.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_posixshmem.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_csv.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_csv.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_multiprocessing.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_multiprocessing.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/termios.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/termios.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/pyexpat.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/pyexpat.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_scproxy.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_scproxy.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/readline.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/readline.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_opcode.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_opcode.cpython-312-darwin.so', + 'EXTENSION'), + ('_cffi_backend.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/_cffi_backend.cpython-312-darwin.so', + 'EXTENSION'), + ('cryptography/hazmat/bindings/_rust.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/bindings/_rust.abi3.so', + 'EXTENSION'), + ('bcrypt/_bcrypt.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bcrypt/_bcrypt.abi3.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_uuid.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_uuid.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_elementtree.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_elementtree.cpython-312-darwin.so', + 'EXTENSION'), + ('lxml/etree.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/etree.cpython-312-darwin.so', + 'EXTENSION'), + ('lxml/_elementpath.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/_elementpath.cpython-312-darwin.so', + 'EXTENSION'), + ('lxml/sax.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/sax.cpython-312-darwin.so', + 'EXTENSION'), + ('lxml/objectify.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/objectify.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_multibytecodec.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_multibytecodec.cpython-312-darwin.so', + 'EXTENSION'), + ('lxml/html/diff.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/diff.cpython-312-darwin.so', + 'EXTENSION'), + ('lxml/builder.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/builder.cpython-312-darwin.so', + 'EXTENSION'), + ('openpyxl/worksheet/_writer.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/_writer.cpython-312-darwin.so', + 'EXTENSION'), + ('openpyxl/worksheet/_reader.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/_reader.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/_core/_multiarray_tests.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_multiarray_tests.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/_core/_multiarray_umath.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_multiarray_umath.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/linalg/_umath_linalg.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/linalg/_umath_linalg.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/mtrand.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/mtrand.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/_sfc64.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_sfc64.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/_philox.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_philox.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/_pcg64.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_pcg64.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/_mt19937.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_mt19937.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/bit_generator.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/bit_generator.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/_generator.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_generator.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/_bounded_integers.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_bounded_integers.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/_common.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_common.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/fft/_pocketfft_umath.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/fft/_pocketfft_umath.cpython-312-darwin.so', + 'EXTENSION'), + ('yaml/_yaml.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/_yaml.cpython-312-darwin.so', + 'EXTENSION'), + ('openpyxl/utils/cell.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/cell.cpython-312-darwin.so', + 'EXTENSION'), + ('PIL/_webp.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_webp.cpython-312-darwin.so', + 'EXTENSION'), + ('PIL/_imagingtk.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_imagingtk.cpython-312-darwin.so', + 'EXTENSION'), + ('PIL/_imagingcms.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_imagingcms.cpython-312-darwin.so', + 'EXTENSION'), + ('PIL/_imagingmath.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_imagingmath.cpython-312-darwin.so', + 'EXTENSION'), + ('PIL/_imaging.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_imaging.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_zoneinfo.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_zoneinfo.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_sqlite3.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_sqlite3.cpython-312-darwin.so', + 'EXTENSION'), + ('numexpr/interpreter.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numexpr/interpreter.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/writers.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/writers.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/window/indexers.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/window/indexers.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/window/aggregations.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/window/aggregations.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/vectorized.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/vectorized.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/tzconversion.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/tzconversion.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/timezones.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/timezones.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/timestamps.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/timestamps.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/timedeltas.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/timedeltas.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/strptime.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/strptime.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/period.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/period.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/parsing.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/parsing.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/offsets.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/offsets.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/np_datetime.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/np_datetime.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/nattype.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/nattype.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/fields.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/fields.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/dtypes.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/dtypes.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/conversion.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/conversion.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/ccalendar.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/ccalendar.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/base.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/base.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslib.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslib.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/testing.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/testing.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/sparse.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/sparse.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/sas.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/sas.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/reshape.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/reshape.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/properties.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/properties.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/parsers.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/parsers.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/pandas_parser.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/pandas_parser.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/pandas_datetime.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/pandas_datetime.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/ops_dispatch.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/ops_dispatch.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/ops.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/ops.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/missing.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/missing.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/lib.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/lib.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/json.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/json.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/join.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/join.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/interval.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/interval.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/internals.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/internals.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/indexing.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/indexing.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/index.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/index.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/hashtable.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/hashtable.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/hashing.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/hashing.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/groupby.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/groupby.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/byteswap.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/byteswap.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/arrays.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/arrays.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/algos.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/algos.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/cmath.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/cmath.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_codecs_jp.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_jp.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_codecs_kr.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_kr.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_codecs_iso2022.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_iso2022.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_codecs_cn.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_cn.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_codecs_tw.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_tw.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_codecs_hk.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_hk.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_heapq.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_heapq.cpython-312-darwin.so', + 'EXTENSION'), + ('PIL/.dylibs/libwebpdemux.2.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libwebpdemux.2.dylib', + 'BINARY'), + ('PIL/.dylibs/libwebp.7.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libwebp.7.dylib', + 'BINARY'), + ('PIL/.dylibs/libwebpmux.3.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libwebpmux.3.dylib', + 'BINARY'), + ('PIL/.dylibs/liblcms2.2.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/liblcms2.2.dylib', + 'BINARY'), + ('PIL/.dylibs/libtiff.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libtiff.6.dylib', + 'BINARY'), + ('PIL/.dylibs/libxcb.1.1.0.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libxcb.1.1.0.dylib', + 'BINARY'), + ('PIL/.dylibs/libopenjp2.2.5.3.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libopenjp2.2.5.3.dylib', + 'BINARY'), + ('PIL/.dylibs/libjpeg.62.4.0.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libjpeg.62.4.0.dylib', + 'BINARY'), + ('PIL/.dylibs/libz.1.3.1.zlib-ng.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libz.1.3.1.zlib-ng.dylib', + 'BINARY'), + ('PIL/.dylibs/libsharpyuv.0.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libsharpyuv.0.dylib', + 'BINARY'), + ('PIL/.dylibs/liblzma.5.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/liblzma.5.dylib', + 'BINARY'), + ('PIL/.dylibs/libXau.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libXau.6.dylib', + 'BINARY'), + ('config/config.yaml.example', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/config/config.yaml.example', + 'DATA'), + ('setuptools/_vendor/importlib_metadata-8.0.0.dist-info/INSTALLER', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/INSTALLER', + 'DATA'), + ('setuptools/_vendor/importlib_metadata-8.0.0.dist-info/REQUESTED', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/REQUESTED', + 'DATA'), + ('setuptools/_vendor/importlib_metadata-8.0.0.dist-info/RECORD', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/RECORD', + 'DATA'), + ('setuptools/_vendor/importlib_metadata-8.0.0.dist-info/top_level.txt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/top_level.txt', + 'DATA'), + ('setuptools/_vendor/importlib_metadata-8.0.0.dist-info/METADATA', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/METADATA', + 'DATA'), + ('setuptools/_vendor/importlib_metadata-8.0.0.dist-info/WHEEL', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/WHEEL', + 'DATA'), + ('setuptools/_vendor/importlib_metadata-8.0.0.dist-info/LICENSE', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/LICENSE', + 'DATA'), + ('setuptools/_vendor/jaraco/text/Lorem ipsum.txt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/Lorem ' + 'ipsum.txt', + 'DATA'), + ('cryptography-43.0.3.dist-info/license_files/LICENSE', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/license_files/LICENSE', + 'DATA'), + ('cryptography-43.0.3.dist-info/direct_url.json', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/direct_url.json', + 'DATA'), + ('cryptography-43.0.3.dist-info/INSTALLER', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/INSTALLER', + 'DATA'), + ('cryptography-43.0.3.dist-info/REQUESTED', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/REQUESTED', + 'DATA'), + ('cryptography-43.0.3.dist-info/RECORD', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/RECORD', + 'DATA'), + ('cryptography-43.0.3.dist-info/license_files/LICENSE.APACHE', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/license_files/LICENSE.APACHE', + 'DATA'), + ('cryptography-43.0.3.dist-info/METADATA', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/METADATA', + 'DATA'), + ('cryptography-43.0.3.dist-info/license_files/LICENSE.BSD', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/license_files/LICENSE.BSD', + 'DATA'), + ('cryptography-43.0.3.dist-info/WHEEL', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/WHEEL', + 'DATA'), + ('lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl', + 'DATA'), + ('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_abstract_expand.xsl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_abstract_expand.xsl', + 'DATA'), + ('lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl', + 'DATA'), + ('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_dsdl_include.xsl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_dsdl_include.xsl', + 'DATA'), + ('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_message.xsl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_message.xsl', + 'DATA'), + ('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl', + 'DATA'), + ('lxml/isoschematron/resources/rng/iso-schematron.rng', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/rng/iso-schematron.rng', + 'DATA'), + ('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl', + 'DATA'), + ('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/readme.txt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/readme.txt', + 'DATA'), + ('dateutil/zoneinfo/dateutil-zoneinfo.tar.gz', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/zoneinfo/dateutil-zoneinfo.tar.gz', + 'DATA'), + ('pytz/zoneinfo/Europe/Simferopol', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Simferopol', + 'DATA'), + ('pytz/zoneinfo/Africa/Kigali', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Kigali', + 'DATA'), + ('pytz/zoneinfo/Asia/Dushanbe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Dushanbe', + 'DATA'), + ('pytz/zoneinfo/Africa/Tunis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Tunis', + 'DATA'), + ('pytz/zoneinfo/America/Glace_Bay', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Glace_Bay', + 'DATA'), + ('pytz/zoneinfo/America/Nipigon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Nipigon', + 'DATA'), + ('pytz/zoneinfo/Pacific/Kiritimati', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Kiritimati', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+9', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+9', + 'DATA'), + ('pytz/zoneinfo/America/St_Vincent', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/St_Vincent', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Davis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Davis', + 'DATA'), + ('pytz/zoneinfo/US/Indiana-Starke', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Indiana-Starke', + 'DATA'), + ('pytz/zoneinfo/Australia/Queensland', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Queensland', + 'DATA'), + ('pytz/zoneinfo/Asia/Muscat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Muscat', + 'DATA'), + ('pytz/zoneinfo/Australia/NSW', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/NSW', + 'DATA'), + ('pytz/zoneinfo/Asia/Kashgar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kashgar', + 'DATA'), + ('pytz/zoneinfo/Iran', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Iran', + 'DATA'), + ('pytz/zoneinfo/America/Maceio', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Maceio', + 'DATA'), + ('pytz/zoneinfo/Pacific/Rarotonga', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Rarotonga', + 'DATA'), + ('pytz/zoneinfo/Asia/Baku', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Baku', + 'DATA'), + ('pytz/zoneinfo/Europe/San_Marino', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/San_Marino', + 'DATA'), + ('pytz/zoneinfo/America/Bogota', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Bogota', + 'DATA'), + ('pytz/zoneinfo/US/Arizona', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Arizona', + 'DATA'), + ('pytz/zoneinfo/Asia/Dhaka', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Dhaka', + 'DATA'), + ('pytz/zoneinfo/America/Cambridge_Bay', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Cambridge_Bay', + 'DATA'), + ('pytz/zoneinfo/Europe/Kaliningrad', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Kaliningrad', + 'DATA'), + ('pytz/zoneinfo/US/Aleutian', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Aleutian', + 'DATA'), + ('pytz/zoneinfo/Etc/Zulu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/Zulu', + 'DATA'), + ('pytz/zoneinfo/Europe/Nicosia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Nicosia', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+6', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+6', + 'DATA'), + ('pytz/zoneinfo/America/Kralendijk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Kralendijk', + 'DATA'), + ('pytz/zoneinfo/America/Ojinaga', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Ojinaga', + 'DATA'), + ('pytz/zoneinfo/Asia/Oral', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Oral', + 'DATA'), + ('pytz/zoneinfo/Africa/Nouakchott', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Nouakchott', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Palmer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Palmer', + 'DATA'), + ('pytz/zoneinfo/America/Port-au-Prince', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Port-au-Prince', + 'DATA'), + ('pytz/zoneinfo/Africa/Monrovia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Monrovia', + 'DATA'), + ('pytz/zoneinfo/Pacific/Gambier', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Gambier', + 'DATA'), + ('pytz/zoneinfo/America/Sitka', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Sitka', + 'DATA'), + ('pytz/zoneinfo/Indian/Mayotte', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Mayotte', + 'DATA'), + ('pytz/zoneinfo/America/Atka', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Atka', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-13', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-13', + 'DATA'), + ('pytz/zoneinfo/Pacific/Chuuk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Chuuk', + 'DATA'), + ('pytz/zoneinfo/ROK', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/ROK', + 'DATA'), + ('pytz/zoneinfo/Asia/Dacca', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Dacca', + 'DATA'), + ('pytz/zoneinfo/Asia/Rangoon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Rangoon', + 'DATA'), + ('pytz/zoneinfo/Asia/Brunei', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Brunei', + 'DATA'), + ('pytz/zoneinfo/Asia/Qatar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Qatar', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-5', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-5', + 'DATA'), + ('pytz/zoneinfo/Europe/Zagreb', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Zagreb', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Knox', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Knox', + 'DATA'), + ('pytz/zoneinfo/tzdata.zi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/tzdata.zi', + 'DATA'), + ('pytz/zoneinfo/Indian/Chagos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Chagos', + 'DATA'), + ('pytz/zoneinfo/Australia/Lord_Howe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Lord_Howe', + 'DATA'), + ('pytz/zoneinfo/Europe/Ulyanovsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Ulyanovsk', + 'DATA'), + ('pytz/zoneinfo/America/Vancouver', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Vancouver', + 'DATA'), + ('pytz/zoneinfo/MST7MDT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/MST7MDT', + 'DATA'), + ('pytz/zoneinfo/Asia/Kolkata', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kolkata', + 'DATA'), + ('pytz/zoneinfo/Europe/Vaduz', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Vaduz', + 'DATA'), + ('pytz/zoneinfo/Australia/Darwin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Darwin', + 'DATA'), + ('pytz/zoneinfo/Africa/Asmara', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Asmara', + 'DATA'), + ('pytz/zoneinfo/Asia/Hovd', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Hovd', + 'DATA'), + ('pytz/zoneinfo/Asia/Bahrain', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Bahrain', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Rothera', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Rothera', + 'DATA'), + ('pytz/zoneinfo/Asia/Damascus', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Damascus', + 'DATA'), + ('pytz/zoneinfo/America/Boa_Vista', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Boa_Vista', + 'DATA'), + ('pytz/zoneinfo/Europe/Bucharest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Bucharest', + 'DATA'), + ('pytz/zoneinfo/America/Edmonton', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Edmonton', + 'DATA'), + ('pytz/zoneinfo/Asia/Dili', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Dili', + 'DATA'), + ('pytz/zoneinfo/Pacific/Kosrae', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Kosrae', + 'DATA'), + ('pytz/zoneinfo/Antarctica/McMurdo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/McMurdo', + 'DATA'), + ('pytz/zoneinfo/America/St_Barthelemy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/St_Barthelemy', + 'DATA'), + ('pytz/zoneinfo/America/Puerto_Rico', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Puerto_Rico', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-1', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-1', + 'DATA'), + ('pytz/zoneinfo/America/Adak', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Adak', + 'DATA'), + ('pytz/zoneinfo/CET', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/CET', + 'DATA'), + ('pytz/zoneinfo/Europe/Vatican', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Vatican', + 'DATA'), + ('pytz/zoneinfo/Europe/Tirane', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Tirane', + 'DATA'), + ('pytz/zoneinfo/Africa/Dar_es_Salaam', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Dar_es_Salaam', + 'DATA'), + ('pytz/zoneinfo/Australia/North', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/North', + 'DATA'), + ('pytz/zoneinfo/Asia/Irkutsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Irkutsk', + 'DATA'), + ('pytz/zoneinfo/Libya', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Libya', + 'DATA'), + ('pytz/zoneinfo/Arctic/Longyearbyen', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Arctic/Longyearbyen', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Winamac', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Winamac', + 'DATA'), + ('pytz/zoneinfo/GMT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/GMT', + 'DATA'), + ('pytz/zoneinfo/Australia/West', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/West', + 'DATA'), + ('pytz/zoneinfo/Africa/Abidjan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Abidjan', + 'DATA'), + ('pytz/zoneinfo/Pacific/Guadalcanal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Guadalcanal', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Jujuy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Jujuy', + 'DATA'), + ('pytz/zoneinfo/America/Cordoba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Cordoba', + 'DATA'), + ('pytz/zoneinfo/Canada/Atlantic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Atlantic', + 'DATA'), + ('pytz/zoneinfo/America/Lower_Princes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Lower_Princes', + 'DATA'), + ('pytz/zoneinfo/Africa/Freetown', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Freetown', + 'DATA'), + ('pytz/zoneinfo/Indian/Maldives', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Maldives', + 'DATA'), + ('pytz/zoneinfo/Asia/Taipei', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Taipei', + 'DATA'), + ('pytz/zoneinfo/GMT0', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/GMT0', + 'DATA'), + ('pytz/zoneinfo/America/Santa_Isabel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Santa_Isabel', + 'DATA'), + ('pytz/zoneinfo/America/Indianapolis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indianapolis', + 'DATA'), + ('pytz/zoneinfo/America/Porto_Velho', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Porto_Velho', + 'DATA'), + ('pytz/zoneinfo/Pacific/Truk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Truk', + 'DATA'), + ('pytz/zoneinfo/Brazil/DeNoronha', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Brazil/DeNoronha', + 'DATA'), + ('pytz/zoneinfo/Europe/Busingen', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Busingen', + 'DATA'), + ('pytz/zoneinfo/Pacific/Fiji', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Fiji', + 'DATA'), + ('pytz/zoneinfo/Asia/Saigon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Saigon', + 'DATA'), + ('pytz/zoneinfo/America/Santo_Domingo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Santo_Domingo', + 'DATA'), + ('pytz/zoneinfo/Japan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Japan', + 'DATA'), + ('pytz/zoneinfo/Pacific/Wallis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Wallis', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+8', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+8', + 'DATA'), + ('pytz/zoneinfo/Africa/Lubumbashi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Lubumbashi', + 'DATA'), + ('pytz/zoneinfo/America/Montevideo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Montevideo', + 'DATA'), + ('pytz/zoneinfo/Africa/Addis_Ababa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Addis_Ababa', + 'DATA'), + ('pytz/zoneinfo/Africa/Asmera', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Asmera', + 'DATA'), + ('pytz/zoneinfo/Europe/Zaporozhye', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Zaporozhye', + 'DATA'), + ('pytz/zoneinfo/Etc/UTC', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/UTC', + 'DATA'), + ('pytz/zoneinfo/America/St_Thomas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/St_Thomas', + 'DATA'), + ('pytz/zoneinfo/Canada/Eastern', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Eastern', + 'DATA'), + ('pytz/zoneinfo/America/Sao_Paulo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Sao_Paulo', + 'DATA'), + ('pytz/zoneinfo/America/Chicago', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Chicago', + 'DATA'), + ('pytz/zoneinfo/America/Winnipeg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Winnipeg', + 'DATA'), + ('pytz/zoneinfo/America/Caracas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Caracas', + 'DATA'), + ('pytz/zoneinfo/Europe/Tiraspol', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Tiraspol', + 'DATA'), + ('pytz/zoneinfo/zone.tab', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/zone.tab', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-9', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-9', + 'DATA'), + ('pytz/zoneinfo/Pacific/Funafuti', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Funafuti', + 'DATA'), + ('pytz/zoneinfo/Chile/EasterIsland', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Chile/EasterIsland', + 'DATA'), + ('pytz/zoneinfo/America/Goose_Bay', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Goose_Bay', + 'DATA'), + ('pytz/zoneinfo/Poland', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Poland', + 'DATA'), + ('pytz/zoneinfo/Asia/Seoul', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Seoul', + 'DATA'), + ('pytz/zoneinfo/Pacific/Chatham', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Chatham', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-8', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-8', + 'DATA'), + ('pytz/zoneinfo/Pacific/Niue', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Niue', + 'DATA'), + ('pytz/zoneinfo/America/Port_of_Spain', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Port_of_Spain', + 'DATA'), + ('pytz/zoneinfo/Europe/Saratov', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Saratov', + 'DATA'), + ('pytz/zoneinfo/Pacific/Bougainville', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Bougainville', + 'DATA'), + ('pytz/zoneinfo/America/El_Salvador', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/El_Salvador', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+3', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+3', + 'DATA'), + ('pytz/zoneinfo/Europe/Brussels', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Brussels', + 'DATA'), + ('pytz/zoneinfo/America/La_Paz', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/La_Paz', + 'DATA'), + ('pytz/zoneinfo/US/Central', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Central', + 'DATA'), + ('pytz/zoneinfo/America/Menominee', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Menominee', + 'DATA'), + ('pytz/zoneinfo/Asia/Jayapura', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Jayapura', + 'DATA'), + ('pytz/zoneinfo/America/Guyana', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Guyana', + 'DATA'), + ('pytz/zoneinfo/America/Nome', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Nome', + 'DATA'), + ('pytz/zoneinfo/Australia/ACT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/ACT', + 'DATA'), + ('pytz/zoneinfo/Asia/Tokyo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Tokyo', + 'DATA'), + ('pytz/zoneinfo/Australia/LHI', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/LHI', + 'DATA'), + ('pytz/zoneinfo/Pacific/Pago_Pago', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Pago_Pago', + 'DATA'), + ('pytz/zoneinfo/Europe/London', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/London', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Mendoza', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Mendoza', + 'DATA'), + ('pytz/zoneinfo/America/Cancun', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Cancun', + 'DATA'), + ('pytz/zoneinfo/Asia/Riyadh', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Riyadh', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Vostok', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Vostok', + 'DATA'), + ('pytz/zoneinfo/Europe/Warsaw', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Warsaw', + 'DATA'), + ('pytz/zoneinfo/America/Kentucky/Louisville', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Kentucky/Louisville', + 'DATA'), + ('pytz/zoneinfo/Asia/Pyongyang', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Pyongyang', + 'DATA'), + ('pytz/zoneinfo/America/Virgin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Virgin', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Tell_City', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Tell_City', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+11', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+11', + 'DATA'), + ('pytz/zoneinfo/HST', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/HST', + 'DATA'), + ('pytz/zoneinfo/Iceland', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Iceland', + 'DATA'), + ('pytz/zoneinfo/America/Coral_Harbour', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Coral_Harbour', + 'DATA'), + ('pytz/zoneinfo/Australia/Sydney', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Sydney', + 'DATA'), + ('pytz/zoneinfo/UCT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/UCT', + 'DATA'), + ('pytz/zoneinfo/America/Porto_Acre', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Porto_Acre', + 'DATA'), + ('pytz/zoneinfo/Africa/Ndjamena', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Ndjamena', + 'DATA'), + ('pytz/zoneinfo/America/Los_Angeles', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Los_Angeles', + 'DATA'), + ('pytz/zoneinfo/America/Eirunepe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Eirunepe', + 'DATA'), + ('pytz/zoneinfo/America/New_York', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/New_York', + 'DATA'), + ('pytz/zoneinfo/Asia/Magadan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Magadan', + 'DATA'), + ('pytz/zoneinfo/Greenwich', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Greenwich', + 'DATA'), + ('pytz/zoneinfo/Asia/Kabul', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kabul', + 'DATA'), + ('pytz/zoneinfo/Asia/Harbin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Harbin', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/San_Juan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/San_Juan', + 'DATA'), + ('pytz/zoneinfo/Pacific/Pitcairn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Pitcairn', + 'DATA'), + ('pytz/zoneinfo/Pacific/Easter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Easter', + 'DATA'), + ('pytz/zoneinfo/Kwajalein', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Kwajalein', + 'DATA'), + ('pytz/zoneinfo/Eire', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Eire', + 'DATA'), + ('pytz/zoneinfo/Africa/Brazzaville', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Brazzaville', + 'DATA'), + ('pytz/zoneinfo/America/Paramaribo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Paramaribo', + 'DATA'), + ('pytz/zoneinfo/Africa/Ceuta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Ceuta', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+4', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+4', + 'DATA'), + ('pytz/zoneinfo/Asia/Beirut', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Beirut', + 'DATA'), + ('pytz/zoneinfo/Africa/Mbabane', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Mbabane', + 'DATA'), + ('pytz/zoneinfo/Asia/Qostanay', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Qostanay', + 'DATA'), + ('pytz/zoneinfo/Africa/Casablanca', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Casablanca', + 'DATA'), + ('pytz/zoneinfo/Europe/Malta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Malta', + 'DATA'), + ('pytz/zoneinfo/MST', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/MST', + 'DATA'), + ('pytz/zoneinfo/America/Lima', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Lima', + 'DATA'), + ('pytz/zoneinfo/Asia/Ust-Nera', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Ust-Nera', + 'DATA'), + ('pytz/zoneinfo/Australia/Hobart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Hobart', + 'DATA'), + ('pytz/zoneinfo/Europe/Kiev', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Kiev', + 'DATA'), + ('pytz/zoneinfo/Europe/Skopje', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Skopje', + 'DATA'), + ('pytz/zoneinfo/America/Belize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Belize', + 'DATA'), + ('pytz/zoneinfo/America/Ciudad_Juarez', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Ciudad_Juarez', + 'DATA'), + ('pytz/zoneinfo/America/Curacao', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Curacao', + 'DATA'), + ('pytz/zoneinfo/Asia/Qyzylorda', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Qyzylorda', + 'DATA'), + ('pytz/zoneinfo/UTC', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/UTC', + 'DATA'), + ('pytz/zoneinfo/America/Denver', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Denver', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Troll', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Troll', + 'DATA'), + ('pytz/zoneinfo/America/Resolute', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Resolute', + 'DATA'), + ('pytz/zoneinfo/Asia/Chungking', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Chungking', + 'DATA'), + ('pytz/zoneinfo/Africa/Tripoli', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Tripoli', + 'DATA'), + ('pytz/zoneinfo/America/Chihuahua', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Chihuahua', + 'DATA'), + ('pytz/zoneinfo/Africa/Bissau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Bissau', + 'DATA'), + ('pytz/zoneinfo/Australia/Broken_Hill', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Broken_Hill', + 'DATA'), + ('pytz/zoneinfo/Australia/Lindeman', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Lindeman', + 'DATA'), + ('pytz/zoneinfo/America/Tijuana', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Tijuana', + 'DATA'), + ('pytz/zoneinfo/CST6CDT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/CST6CDT', + 'DATA'), + ('pytz/zoneinfo/Europe/Vienna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Vienna', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Mawson', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Mawson', + 'DATA'), + ('pytz/zoneinfo/Europe/Moscow', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Moscow', + 'DATA'), + ('pytz/zoneinfo/Africa/Juba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Juba', + 'DATA'), + ('pytz/zoneinfo/W-SU', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/W-SU', + 'DATA'), + ('pytz/zoneinfo/US/East-Indiana', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/East-Indiana', + 'DATA'), + ('pytz/zoneinfo/America/Grenada', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Grenada', + 'DATA'), + ('pytz/zoneinfo/Africa/Cairo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Cairo', + 'DATA'), + ('pytz/zoneinfo/Asia/Colombo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Colombo', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+12', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+12', + 'DATA'), + ('pytz/zoneinfo/Asia/Kuwait', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kuwait', + 'DATA'), + ('pytz/zoneinfo/Africa/Luanda', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Luanda', + 'DATA'), + ('pytz/zoneinfo/America/Kentucky/Monticello', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Kentucky/Monticello', + 'DATA'), + ('pytz/zoneinfo/Europe/Madrid', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Madrid', + 'DATA'), + ('pytz/zoneinfo/Pacific/Fakaofo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Fakaofo', + 'DATA'), + ('pytz/zoneinfo/Canada/Mountain', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Mountain', + 'DATA'), + ('pytz/zoneinfo/America/Boise', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Boise', + 'DATA'), + ('pytz/zoneinfo/Etc/UCT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/UCT', + 'DATA'), + ('pytz/zoneinfo/Asia/Ho_Chi_Minh', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Ho_Chi_Minh', + 'DATA'), + ('pytz/zoneinfo/Europe/Belfast', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Belfast', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Casey', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Casey', + 'DATA'), + ('pytz/zoneinfo/GMT+0', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/GMT+0', + 'DATA'), + ('pytz/zoneinfo/US/Alaska', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Alaska', + 'DATA'), + ('pytz/zoneinfo/Africa/Nairobi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Nairobi', + 'DATA'), + ('pytz/zoneinfo/Brazil/East', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Brazil/East', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+0', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+0', + 'DATA'), + ('pytz/zoneinfo/Europe/Sarajevo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Sarajevo', + 'DATA'), + ('pytz/zoneinfo/America/Miquelon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Miquelon', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Faroe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Faroe', + 'DATA'), + ('pytz/zoneinfo/Indian/Antananarivo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Antananarivo', + 'DATA'), + ('pytz/zoneinfo/GB', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/GB', + 'DATA'), + ('pytz/zoneinfo/America/Rankin_Inlet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Rankin_Inlet', + 'DATA'), + ('pytz/zoneinfo/Africa/Kampala', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Kampala', + 'DATA'), + ('pytz/zoneinfo/Europe/Istanbul', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Istanbul', + 'DATA'), + ('pytz/zoneinfo/PRC', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/PRC', + 'DATA'), + ('pytz/zoneinfo/America/Managua', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Managua', + 'DATA'), + ('pytz/zoneinfo/America/Asuncion', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Asuncion', + 'DATA'), + ('pytz/zoneinfo/America/Grand_Turk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Grand_Turk', + 'DATA'), + ('pytz/zoneinfo/Europe/Podgorica', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Podgorica', + 'DATA'), + ('pytz/zoneinfo/Europe/Athens', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Athens', + 'DATA'), + ('pytz/zoneinfo/Europe/Vilnius', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Vilnius', + 'DATA'), + ('pytz/zoneinfo/Africa/Ouagadougou', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Ouagadougou', + 'DATA'), + ('pytz/zoneinfo/America/Iqaluit', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Iqaluit', + 'DATA'), + ('pytz/zoneinfo/Africa/Lusaka', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Lusaka', + 'DATA'), + ('pytz/zoneinfo/Europe/Dublin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Dublin', + 'DATA'), + ('pytz/zoneinfo/Indian/Christmas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Christmas', + 'DATA'), + ('pytz/zoneinfo/America/Bahia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Bahia', + 'DATA'), + ('pytz/zoneinfo/Asia/Aden', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Aden', + 'DATA'), + ('pytz/zoneinfo/Europe/Gibraltar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Gibraltar', + 'DATA'), + ('pytz/zoneinfo/Asia/Bishkek', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Bishkek', + 'DATA'), + ('pytz/zoneinfo/Pacific/Yap', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Yap', + 'DATA'), + ('pytz/zoneinfo/Mexico/General', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Mexico/General', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/ComodRivadavia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/ComodRivadavia', + 'DATA'), + ('pytz/zoneinfo/America/Dawson', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Dawson', + 'DATA'), + ('pytz/zoneinfo/Africa/Bujumbura', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Bujumbura', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Petersburg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Petersburg', + 'DATA'), + ('pytz/zoneinfo/America/Santarem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Santarem', + 'DATA'), + ('pytz/zoneinfo/America/Ensenada', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Ensenada', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Cape_Verde', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Cape_Verde', + 'DATA'), + ('pytz/zoneinfo/Asia/Tbilisi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Tbilisi', + 'DATA'), + ('pytz/zoneinfo/Pacific/Noumea', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Noumea', + 'DATA'), + ('pytz/zoneinfo/Africa/Johannesburg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Johannesburg', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-10', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-10', + 'DATA'), + ('pytz/zoneinfo/Asia/Khandyga', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Khandyga', + 'DATA'), + ('pytz/zoneinfo/Asia/Hong_Kong', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Hong_Kong', + 'DATA'), + ('pytz/zoneinfo/Pacific/Palau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Palau', + 'DATA'), + ('pytz/zoneinfo/America/Regina', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Regina', + 'DATA'), + ('pytz/zoneinfo/Canada/Saskatchewan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Saskatchewan', + 'DATA'), + ('pytz/zoneinfo/America/Merida', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Merida', + 'DATA'), + ('pytz/zoneinfo/America/Cuiaba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Cuiaba', + 'DATA'), + ('pytz/zoneinfo/Indian/Kerguelen', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Kerguelen', + 'DATA'), + ('pytz/zoneinfo/Europe/Volgograd', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Volgograd', + 'DATA'), + ('pytz/zoneinfo/America/North_Dakota/Beulah', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/North_Dakota/Beulah', + 'DATA'), + ('pytz/zoneinfo/America/Campo_Grande', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Campo_Grande', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Reykjavik', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Reykjavik', + 'DATA'), + ('pytz/zoneinfo/Asia/Vladivostok', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Vladivostok', + 'DATA'), + ('pytz/zoneinfo/Jamaica', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Jamaica', + 'DATA'), + ('pytz/zoneinfo/America/Creston', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Creston', + 'DATA'), + ('pytz/zoneinfo/Europe/Helsinki', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Helsinki', + 'DATA'), + ('pytz/zoneinfo/America/Martinique', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Martinique', + 'DATA'), + ('pytz/zoneinfo/America/Tegucigalpa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Tegucigalpa', + 'DATA'), + ('pytz/zoneinfo/Pacific/Ponape', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Ponape', + 'DATA'), + ('pytz/zoneinfo/Pacific/Port_Moresby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Port_Moresby', + 'DATA'), + ('pytz/zoneinfo/America/North_Dakota/Center', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/North_Dakota/Center', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/San_Luis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/San_Luis', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Bermuda', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Bermuda', + 'DATA'), + ('pytz/zoneinfo/Australia/Brisbane', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Brisbane', + 'DATA'), + ('pytz/zoneinfo/America/Godthab', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Godthab', + 'DATA'), + ('pytz/zoneinfo/Asia/Ashgabat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Ashgabat', + 'DATA'), + ('pytz/zoneinfo/America/North_Dakota/New_Salem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/North_Dakota/New_Salem', + 'DATA'), + ('pytz/zoneinfo/Europe/Jersey', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Jersey', + 'DATA'), + ('pytz/zoneinfo/Asia/Srednekolymsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Srednekolymsk', + 'DATA'), + ('pytz/zoneinfo/Asia/Jakarta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Jakarta', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Madeira', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Madeira', + 'DATA'), + ('pytz/zoneinfo/America/Montreal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Montreal', + 'DATA'), + ('pytz/zoneinfo/Asia/Krasnoyarsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Krasnoyarsk', + 'DATA'), + ('pytz/zoneinfo/America/Mexico_City', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Mexico_City', + 'DATA'), + ('pytz/zoneinfo/Africa/Dakar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Dakar', + 'DATA'), + ('pytz/zoneinfo/Africa/Kinshasa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Kinshasa', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Jan_Mayen', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Jan_Mayen', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Faeroe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Faeroe', + 'DATA'), + ('pytz/zoneinfo/Australia/Currie', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Currie', + 'DATA'), + ('pytz/zoneinfo/Africa/Lagos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Lagos', + 'DATA'), + ('pytz/zoneinfo/Pacific/Honolulu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Honolulu', + 'DATA'), + ('pytz/zoneinfo/Indian/Mahe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Mahe', + 'DATA'), + ('pytz/zoneinfo/Canada/Yukon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Yukon', + 'DATA'), + ('pytz/zoneinfo/Europe/Berlin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Berlin', + 'DATA'), + ('pytz/zoneinfo/America/Tortola', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Tortola', + 'DATA'), + ('pytz/zoneinfo/Navajo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Navajo', + 'DATA'), + ('pytz/zoneinfo/Africa/Niamey', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Niamey', + 'DATA'), + ('pytz/zoneinfo/Asia/Amman', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Amman', + 'DATA'), + ('pytz/zoneinfo/Africa/Sao_Tome', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Sao_Tome', + 'DATA'), + ('pytz/zoneinfo/Asia/Shanghai', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Shanghai', + 'DATA'), + ('pytz/zoneinfo/America/Inuvik', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Inuvik', + 'DATA'), + ('pytz/zoneinfo/Asia/Gaza', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Gaza', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Canary', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Canary', + 'DATA'), + ('pytz/zoneinfo/Universal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Universal', + 'DATA'), + ('pytz/zoneinfo/Asia/Dubai', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Dubai', + 'DATA'), + ('pytz/zoneinfo/Asia/Katmandu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Katmandu', + 'DATA'), + ('pytz/zoneinfo/Asia/Tehran', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Tehran', + 'DATA'), + ('pytz/zoneinfo/Zulu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Zulu', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-6', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-6', + 'DATA'), + ('pytz/zoneinfo/Europe/Mariehamn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Mariehamn', + 'DATA'), + ('pytz/zoneinfo/America/Santiago', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Santiago', + 'DATA'), + ('pytz/zoneinfo/Egypt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Egypt', + 'DATA'), + ('pytz/zoneinfo/Europe/Sofia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Sofia', + 'DATA'), + ('pytz/zoneinfo/Pacific/Majuro', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Majuro', + 'DATA'), + ('pytz/zoneinfo/America/Fort_Nelson', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Fort_Nelson', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-14', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-14', + 'DATA'), + ('pytz/zoneinfo/Asia/Yakutsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Yakutsk', + 'DATA'), + ('pytz/zoneinfo/Africa/Libreville', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Libreville', + 'DATA'), + ('pytz/zoneinfo/EST', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/EST', + 'DATA'), + ('pytz/zoneinfo/Australia/South', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/South', + 'DATA'), + ('pytz/zoneinfo/America/Thunder_Bay', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Thunder_Bay', + 'DATA'), + ('pytz/zoneinfo/ROC', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/ROC', + 'DATA'), + ('pytz/zoneinfo/Europe/Zurich', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Zurich', + 'DATA'), + ('pytz/zoneinfo/Europe/Riga', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Riga', + 'DATA'), + ('pytz/zoneinfo/Pacific/Tarawa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Tarawa', + 'DATA'), + ('pytz/zoneinfo/Asia/Tel_Aviv', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Tel_Aviv', + 'DATA'), + ('pytz/zoneinfo/America/Dominica', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Dominica', + 'DATA'), + ('pytz/zoneinfo/America/Phoenix', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Phoenix', + 'DATA'), + ('pytz/zoneinfo/Europe/Andorra', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Andorra', + 'DATA'), + ('pytz/zoneinfo/GB-Eire', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/GB-Eire', + 'DATA'), + ('pytz/zoneinfo/Asia/Macao', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Macao', + 'DATA'), + ('pytz/zoneinfo/Pacific/Johnston', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Johnston', + 'DATA'), + ('pytz/zoneinfo/America/Aruba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Aruba', + 'DATA'), + ('pytz/zoneinfo/Europe/Copenhagen', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Copenhagen', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Syowa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Syowa', + 'DATA'), + ('pytz/zoneinfo/America/Danmarkshavn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Danmarkshavn', + 'DATA'), + ('pytz/zoneinfo/Asia/Samarkand', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Samarkand', + 'DATA'), + ('pytz/zoneinfo/Pacific/Apia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Apia', + 'DATA'), + ('pytz/zoneinfo/Indian/Comoro', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Comoro', + 'DATA'), + ('pytz/zoneinfo/US/Hawaii', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Hawaii', + 'DATA'), + ('pytz/zoneinfo/America/Manaus', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Manaus', + 'DATA'), + ('pytz/zoneinfo/Asia/Ujung_Pandang', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Ujung_Pandang', + 'DATA'), + ('pytz/zoneinfo/America/Havana', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Havana', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+10', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+10', + 'DATA'), + ('pytz/zoneinfo/Atlantic/St_Helena', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/St_Helena', + 'DATA'), + ('pytz/zoneinfo/America/Rosario', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Rosario', + 'DATA'), + ('pytz/zoneinfo/America/Hermosillo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Hermosillo', + 'DATA'), + ('pytz/zoneinfo/Europe/Amsterdam', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Amsterdam', + 'DATA'), + ('pytz/zoneinfo/Europe/Paris', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Paris', + 'DATA'), + ('pytz/zoneinfo/America/Antigua', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Antigua', + 'DATA'), + ('pytz/zoneinfo/Pacific/Kwajalein', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Kwajalein', + 'DATA'), + ('pytz/zoneinfo/Asia/Famagusta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Famagusta', + 'DATA'), + ('pytz/zoneinfo/Asia/Kathmandu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kathmandu', + 'DATA'), + ('pytz/zoneinfo/Indian/Cocos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Cocos', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-0', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-0', + 'DATA'), + ('pytz/zoneinfo/America/Scoresbysund', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Scoresbysund', + 'DATA'), + ('pytz/zoneinfo/America/Matamoros', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Matamoros', + 'DATA'), + ('pytz/zoneinfo/Asia/Omsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Omsk', + 'DATA'), + ('pytz/zoneinfo/America/Recife', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Recife', + 'DATA'), + ('pytz/zoneinfo/Pacific/Efate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Efate', + 'DATA'), + ('pytz/zoneinfo/GMT-0', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/GMT-0', + 'DATA'), + ('pytz/zoneinfo/Brazil/Acre', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Brazil/Acre', + 'DATA'), + ('pytz/zoneinfo/Cuba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Cuba', + 'DATA'), + ('pytz/zoneinfo/Europe/Chisinau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Chisinau', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT', + 'DATA'), + ('pytz/zoneinfo/America/St_Kitts', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/St_Kitts', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Vevay', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Vevay', + 'DATA'), + ('pytz/zoneinfo/Europe/Ljubljana', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Ljubljana', + 'DATA'), + ('pytz/zoneinfo/Pacific/Guam', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Guam', + 'DATA'), + ('pytz/zoneinfo/Asia/Choibalsan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Choibalsan', + 'DATA'), + ('pytz/zoneinfo/America/Juneau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Juneau', + 'DATA'), + ('pytz/zoneinfo/Asia/Chongqing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Chongqing', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Stanley', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Stanley', + 'DATA'), + ('pytz/zoneinfo/Asia/Thimphu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Thimphu', + 'DATA'), + ('pytz/zoneinfo/Asia/Calcutta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Calcutta', + 'DATA'), + ('pytz/zoneinfo/Antarctica/South_Pole', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/South_Pole', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Azores', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Azores', + 'DATA'), + ('pytz/zoneinfo/iso3166.tab', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/iso3166.tab', + 'DATA'), + ('pytz/zoneinfo/America/Mazatlan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Mazatlan', + 'DATA'), + ('pytz/zoneinfo/America/Halifax', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Halifax', + 'DATA'), + ('pytz/zoneinfo/zonenow.tab', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/zonenow.tab', + 'DATA'), + ('pytz/zoneinfo/US/Michigan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Michigan', + 'DATA'), + ('pytz/zoneinfo/Singapore', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Singapore', + 'DATA'), + ('pytz/zoneinfo/PST8PDT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/PST8PDT', + 'DATA'), + ('pytz/zoneinfo/Asia/Novokuznetsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Novokuznetsk', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Macquarie', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Macquarie', + 'DATA'), + ('pytz/zoneinfo/America/Fortaleza', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Fortaleza', + 'DATA'), + ('pytz/zoneinfo/Asia/Atyrau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Atyrau', + 'DATA'), + ('pytz/zoneinfo/America/Toronto', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Toronto', + 'DATA'), + ('pytz/zoneinfo/Asia/Ulaanbaatar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Ulaanbaatar', + 'DATA'), + ('pytz/zoneinfo/Pacific/Wake', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Wake', + 'DATA'), + ('pytz/zoneinfo/Asia/Yangon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Yangon', + 'DATA'), + ('pytz/zoneinfo/Europe/Bratislava', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Bratislava', + 'DATA'), + ('pytz/zoneinfo/Turkey', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Turkey', + 'DATA'), + ('pytz/zoneinfo/Africa/El_Aaiun', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/El_Aaiun', + 'DATA'), + ('pytz/zoneinfo/Asia/Novosibirsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Novosibirsk', + 'DATA'), + ('pytz/zoneinfo/Canada/Central', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Central', + 'DATA'), + ('pytz/zoneinfo/Israel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Israel', + 'DATA'), + ('pytz/zoneinfo/Asia/Barnaul', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Barnaul', + 'DATA'), + ('pytz/zoneinfo/Asia/Ashkhabad', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Ashkhabad', + 'DATA'), + ('pytz/zoneinfo/Pacific/Samoa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Samoa', + 'DATA'), + ('pytz/zoneinfo/America/Rio_Branco', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Rio_Branco', + 'DATA'), + ('pytz/zoneinfo/Pacific/Auckland', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Auckland', + 'DATA'), + ('pytz/zoneinfo/America/Costa_Rica', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Costa_Rica', + 'DATA'), + ('pytz/zoneinfo/US/Mountain', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Mountain', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-12', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-12', + 'DATA'), + ('pytz/zoneinfo/Pacific/Norfolk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Norfolk', + 'DATA'), + ('pytz/zoneinfo/America/Guayaquil', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Guayaquil', + 'DATA'), + ('pytz/zoneinfo/Africa/Lome', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Lome', + 'DATA'), + ('pytz/zoneinfo/Australia/Tasmania', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Tasmania', + 'DATA'), + ('pytz/zoneinfo/Europe/Prague', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Prague', + 'DATA'), + ('pytz/zoneinfo/Europe/Oslo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Oslo', + 'DATA'), + ('pytz/zoneinfo/Asia/Singapore', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Singapore', + 'DATA'), + ('pytz/zoneinfo/America/Swift_Current', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Swift_Current', + 'DATA'), + ('pytz/zoneinfo/Asia/Aqtau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Aqtau', + 'DATA'), + ('pytz/zoneinfo/Mexico/BajaSur', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Mexico/BajaSur', + 'DATA'), + ('pytz/zoneinfo/America/Rainy_River', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Rainy_River', + 'DATA'), + ('pytz/zoneinfo/WET', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/WET', + 'DATA'), + ('pytz/zoneinfo/leapseconds', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/leapseconds', + 'DATA'), + ('pytz/zoneinfo/America/Anguilla', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Anguilla', + 'DATA'), + ('pytz/zoneinfo/America/Marigot', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Marigot', + 'DATA'), + ('pytz/zoneinfo/America/Nassau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Nassau', + 'DATA'), + ('pytz/zoneinfo/Africa/Algiers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Algiers', + 'DATA'), + ('pytz/zoneinfo/Asia/Phnom_Penh', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Phnom_Penh', + 'DATA'), + ('pytz/zoneinfo/Asia/Sakhalin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Sakhalin', + 'DATA'), + ('pytz/zoneinfo/Etc/Universal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/Universal', + 'DATA'), + ('pytz/zoneinfo/Chile/Continental', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Chile/Continental', + 'DATA'), + ('pytz/zoneinfo/Europe/Minsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Minsk', + 'DATA'), + ('pytz/zoneinfo/America/Fort_Wayne', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Fort_Wayne', + 'DATA'), + ('pytz/zoneinfo/Africa/Djibouti', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Djibouti', + 'DATA'), + ('pytz/zoneinfo/Mexico/BajaNorte', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Mexico/BajaNorte', + 'DATA'), + ('pytz/zoneinfo/America/Dawson_Creek', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Dawson_Creek', + 'DATA'), + ('pytz/zoneinfo/Pacific/Enderbury', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Enderbury', + 'DATA'), + ('pytz/zoneinfo/Africa/Gaborone', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Gaborone', + 'DATA'), + ('pytz/zoneinfo/Australia/Melbourne', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Melbourne', + 'DATA'), + ('pytz/zoneinfo/Indian/Mauritius', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Mauritius', + 'DATA'), + ('pytz/zoneinfo/America/Shiprock', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Shiprock', + 'DATA'), + ('pytz/zoneinfo/Africa/Timbuktu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Timbuktu', + 'DATA'), + ('pytz/zoneinfo/EST5EDT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/EST5EDT', + 'DATA'), + ('pytz/zoneinfo/Asia/Manila', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Manila', + 'DATA'), + ('pytz/zoneinfo/Asia/Tomsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Tomsk', + 'DATA'), + ('pytz/zoneinfo/Africa/Windhoek', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Windhoek', + 'DATA'), + ('pytz/zoneinfo/NZ-CHAT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/NZ-CHAT', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+1', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+1', + 'DATA'), + ('pytz/zoneinfo/America/Moncton', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Moncton', + 'DATA'), + ('pytz/zoneinfo/America/Barbados', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Barbados', + 'DATA'), + ('pytz/zoneinfo/Asia/Chita', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Chita', + 'DATA'), + ('pytz/zoneinfo/Etc/Greenwich', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/Greenwich', + 'DATA'), + ('pytz/zoneinfo/Europe/Tallinn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Tallinn', + 'DATA'), + ('pytz/zoneinfo/Europe/Isle_of_Man', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Isle_of_Man', + 'DATA'), + ('pytz/zoneinfo/America/Louisville', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Louisville', + 'DATA'), + ('pytz/zoneinfo/Asia/Almaty', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Almaty', + 'DATA'), + ('pytz/zoneinfo/NZ', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/NZ', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Rio_Gallegos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Rio_Gallegos', + 'DATA'), + ('pytz/zoneinfo/Europe/Astrakhan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Astrakhan', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-2', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-2', + 'DATA'), + ('pytz/zoneinfo/America/Jamaica', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Jamaica', + 'DATA'), + ('pytz/zoneinfo/Africa/Banjul', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Banjul', + 'DATA'), + ('pytz/zoneinfo/Indian/Reunion', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Reunion', + 'DATA'), + ('pytz/zoneinfo/Europe/Kyiv', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Kyiv', + 'DATA'), + ('pytz/zoneinfo/Africa/Porto-Novo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Porto-Novo', + 'DATA'), + ('pytz/zoneinfo/US/Eastern', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Eastern', + 'DATA'), + ('pytz/zoneinfo/America/Yellowknife', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Yellowknife', + 'DATA'), + ('pytz/zoneinfo/Asia/Anadyr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Anadyr', + 'DATA'), + ('pytz/zoneinfo/Asia/Tashkent', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Tashkent', + 'DATA'), + ('pytz/zoneinfo/America/Thule', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Thule', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+7', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+7', + 'DATA'), + ('pytz/zoneinfo/Pacific/Midway', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Midway', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Catamarca', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Catamarca', + 'DATA'), + ('pytz/zoneinfo/America/Bahia_Banderas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Bahia_Banderas', + 'DATA'), + ('pytz/zoneinfo/America/Knox_IN', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Knox_IN', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Indianapolis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Indianapolis', + 'DATA'), + ('pytz/zoneinfo/Asia/Vientiane', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Vientiane', + 'DATA'), + ('pytz/zoneinfo/Africa/Douala', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Douala', + 'DATA'), + ('pytz/zoneinfo/Canada/Pacific', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Pacific', + 'DATA'), + ('pytz/zoneinfo/America/Yakutat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Yakutat', + 'DATA'), + ('pytz/zoneinfo/Europe/Guernsey', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Guernsey', + 'DATA'), + ('pytz/zoneinfo/Brazil/West', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Brazil/West', + 'DATA'), + ('pytz/zoneinfo/Europe/Monaco', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Monaco', + 'DATA'), + ('pytz/zoneinfo/Pacific/Tahiti', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Tahiti', + 'DATA'), + ('pytz/zoneinfo/America/Jujuy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Jujuy', + 'DATA'), + ('pytz/zoneinfo/America/Punta_Arenas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Punta_Arenas', + 'DATA'), + ('pytz/zoneinfo/Europe/Luxembourg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Luxembourg', + 'DATA'), + ('pytz/zoneinfo/Europe/Belgrade', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Belgrade', + 'DATA'), + ('pytz/zoneinfo/Antarctica/DumontDUrville', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/DumontDUrville', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+5', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+5', + 'DATA'), + ('pytz/zoneinfo/Atlantic/South_Georgia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/South_Georgia', + 'DATA'), + ('pytz/zoneinfo/America/Montserrat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Montserrat', + 'DATA'), + ('pytz/zoneinfo/America/Guatemala', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Guatemala', + 'DATA'), + ('pytz/zoneinfo/Europe/Rome', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Rome', + 'DATA'), + ('pytz/zoneinfo/America/Cayman', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Cayman', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Marengo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Marengo', + 'DATA'), + ('pytz/zoneinfo/Africa/Harare', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Harare', + 'DATA'), + ('pytz/zoneinfo/Europe/Samara', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Samara', + 'DATA'), + ('pytz/zoneinfo/zone1970.tab', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/zone1970.tab', + 'DATA'), + ('pytz/zoneinfo/America/Buenos_Aires', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Buenos_Aires', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Ushuaia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Ushuaia', + 'DATA'), + ('pytz/zoneinfo/Australia/Eucla', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Eucla', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-4', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-4', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Salta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Salta', + 'DATA'), + ('pytz/zoneinfo/Asia/Kamchatka', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kamchatka', + 'DATA'), + ('pytz/zoneinfo/MET', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/MET', + 'DATA'), + ('pytz/zoneinfo/Pacific/Pohnpei', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Pohnpei', + 'DATA'), + ('pytz/zoneinfo/America/Blanc-Sablon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Blanc-Sablon', + 'DATA'), + ('pytz/zoneinfo/America/Cayenne', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Cayenne', + 'DATA'), + ('pytz/zoneinfo/Pacific/Marquesas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Marquesas', + 'DATA'), + ('pytz/zoneinfo/America/Noronha', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Noronha', + 'DATA'), + ('pytz/zoneinfo/Asia/Karachi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Karachi', + 'DATA'), + ('pytz/zoneinfo/Europe/Kirov', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Kirov', + 'DATA'), + ('pytz/zoneinfo/Portugal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Portugal', + 'DATA'), + ('pytz/zoneinfo/Canada/Newfoundland', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Newfoundland', + 'DATA'), + ('pytz/zoneinfo/Europe/Budapest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Budapest', + 'DATA'), + ('pytz/zoneinfo/Asia/Yekaterinburg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Yekaterinburg', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT0', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT0', + 'DATA'), + ('pytz/zoneinfo/Asia/Thimbu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Thimbu', + 'DATA'), + ('pytz/zoneinfo/Asia/Macau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Macau', + 'DATA'), + ('pytz/zoneinfo/Asia/Bangkok', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Bangkok', + 'DATA'), + ('pytz/zoneinfo/Europe/Uzhgorod', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Uzhgorod', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-11', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-11', + 'DATA'), + ('pytz/zoneinfo/America/St_Lucia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/St_Lucia', + 'DATA'), + ('pytz/zoneinfo/Africa/Blantyre', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Blantyre', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Buenos_Aires', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Buenos_Aires', + 'DATA'), + ('pytz/zoneinfo/Asia/Hebron', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Hebron', + 'DATA'), + ('pytz/zoneinfo/Asia/Aqtobe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Aqtobe', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+2', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+2', + 'DATA'), + ('pytz/zoneinfo/Asia/Pontianak', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Pontianak', + 'DATA'), + ('pytz/zoneinfo/Africa/Malabo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Malabo', + 'DATA'), + ('pytz/zoneinfo/Australia/Canberra', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Canberra', + 'DATA'), + ('pytz/zoneinfo/Asia/Kuching', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kuching', + 'DATA'), + ('pytz/zoneinfo/Asia/Nicosia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Nicosia', + 'DATA'), + ('pytz/zoneinfo/Africa/Bamako', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Bamako', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Tucuman', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Tucuman', + 'DATA'), + ('pytz/zoneinfo/America/Guadeloupe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Guadeloupe', + 'DATA'), + ('pytz/zoneinfo/Africa/Accra', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Accra', + 'DATA'), + ('pytz/zoneinfo/Asia/Kuala_Lumpur', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kuala_Lumpur', + 'DATA'), + ('pytz/zoneinfo/Hongkong', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Hongkong', + 'DATA'), + ('pytz/zoneinfo/Australia/Perth', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Perth', + 'DATA'), + ('pytz/zoneinfo/America/Metlakatla', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Metlakatla', + 'DATA'), + ('pytz/zoneinfo/US/Samoa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Samoa', + 'DATA'), + ('pytz/zoneinfo/Asia/Jerusalem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Jerusalem', + 'DATA'), + ('pytz/zoneinfo/America/St_Johns', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/St_Johns', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-3', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-3', + 'DATA'), + ('pytz/zoneinfo/America/Belem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Belem', + 'DATA'), + ('pytz/zoneinfo/America/Nuuk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Nuuk', + 'DATA'), + ('pytz/zoneinfo/America/Panama', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Panama', + 'DATA'), + ('pytz/zoneinfo/Europe/Stockholm', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Stockholm', + 'DATA'), + ('pytz/zoneinfo/US/Pacific', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Pacific', + 'DATA'), + ('pytz/zoneinfo/America/Detroit', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Detroit', + 'DATA'), + ('pytz/zoneinfo/Europe/Lisbon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Lisbon', + 'DATA'), + ('pytz/zoneinfo/EET', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/EET', + 'DATA'), + ('pytz/zoneinfo/Asia/Yerevan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Yerevan', + 'DATA'), + ('pytz/zoneinfo/Asia/Makassar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Makassar', + 'DATA'), + ('pytz/zoneinfo/America/Anchorage', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Anchorage', + 'DATA'), + ('pytz/zoneinfo/Australia/Yancowinna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Yancowinna', + 'DATA'), + ('pytz/zoneinfo/Asia/Istanbul', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Istanbul', + 'DATA'), + ('pytz/zoneinfo/Australia/Victoria', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Victoria', + 'DATA'), + ('pytz/zoneinfo/Asia/Ulan_Bator', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Ulan_Bator', + 'DATA'), + ('pytz/zoneinfo/Pacific/Galapagos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Galapagos', + 'DATA'), + ('pytz/zoneinfo/America/Pangnirtung', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Pangnirtung', + 'DATA'), + ('pytz/zoneinfo/Factory', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Factory', + 'DATA'), + ('pytz/zoneinfo/Pacific/Tongatapu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Tongatapu', + 'DATA'), + ('pytz/zoneinfo/Africa/Conakry', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Conakry', + 'DATA'), + ('pytz/zoneinfo/Africa/Khartoum', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Khartoum', + 'DATA'), + ('pytz/zoneinfo/America/Atikokan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Atikokan', + 'DATA'), + ('pytz/zoneinfo/America/Monterrey', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Monterrey', + 'DATA'), + ('pytz/zoneinfo/America/Mendoza', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Mendoza', + 'DATA'), + ('pytz/zoneinfo/America/Whitehorse', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Whitehorse', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Vincennes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Vincennes', + 'DATA'), + ('pytz/zoneinfo/Australia/Adelaide', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Adelaide', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-7', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-7', + 'DATA'), + ('pytz/zoneinfo/Africa/Bangui', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Bangui', + 'DATA'), + ('pytz/zoneinfo/Africa/Maputo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Maputo', + 'DATA'), + ('pytz/zoneinfo/Pacific/Kanton', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Kanton', + 'DATA'), + ('pytz/zoneinfo/America/Araguaina', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Araguaina', + 'DATA'), + ('pytz/zoneinfo/Pacific/Nauru', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Nauru', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Cordoba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Cordoba', + 'DATA'), + ('pytz/zoneinfo/America/Catamarca', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Catamarca', + 'DATA'), + ('pytz/zoneinfo/Africa/Mogadishu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Mogadishu', + 'DATA'), + ('pytz/zoneinfo/Asia/Baghdad', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Baghdad', + 'DATA'), + ('pytz/zoneinfo/Africa/Maseru', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Maseru', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/La_Rioja', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/La_Rioja', + 'DATA'), + ('pytz/zoneinfo/Pacific/Saipan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Saipan', + 'DATA'), + ('pytz/zoneinfo/Asia/Urumqi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Urumqi', + 'DATA'), + ('pandas/io/formats/templates/string.tpl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/templates/string.tpl', + 'DATA'), + ('pandas/io/formats/templates/html_style.tpl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/templates/html_style.tpl', + 'DATA'), + ('pandas/io/formats/templates/latex.tpl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/templates/latex.tpl', + 'DATA'), + ('pandas/io/formats/templates/html.tpl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/templates/html.tpl', + 'DATA'), + ('pandas/io/formats/templates/html_table.tpl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/templates/html_table.tpl', + 'DATA'), + ('pandas/io/formats/templates/latex_longtable.tpl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/templates/latex_longtable.tpl', + 'DATA'), + ('pandas/io/formats/templates/latex_table.tpl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/templates/latex_table.tpl', + 'DATA'), + ('wheel-0.45.1.dist-info/RECORD', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel-0.45.1.dist-info/RECORD', + 'DATA'), + ('wheel-0.45.1.dist-info/entry_points.txt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel-0.45.1.dist-info/entry_points.txt', + 'DATA'), + ('wheel-0.45.1.dist-info/WHEEL', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel-0.45.1.dist-info/WHEEL', + 'DATA'), + ('wheel-0.45.1.dist-info/METADATA', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel-0.45.1.dist-info/METADATA', + 'DATA'), + ('wheel-0.45.1.dist-info/LICENSE.txt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel-0.45.1.dist-info/LICENSE.txt', + 'DATA'), + ('base_library.zip', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/build/ad_user_creator/base_library.zip', + 'DATA'), + ('libc++.dylib', 'libc++.1.0.dylib', 'SYMLINK'), + ('libc++.1.dylib', 'libc++.1.0.dylib', 'SYMLINK'), + ('libsqlite3.dylib', 'libsqlite3.0.dylib', 'SYMLINK'), + ('libgomp.dylib', 'libomp.dylib', 'SYMLINK'), + ('libreadline.8.dylib', 'libreadline.8.2.dylib', 'SYMLINK'), + ('libexpat.dylib', 'libexpat.1.10.0.dylib', 'SYMLINK'), + ('libiomp5.dylib', 'libomp.dylib', 'SYMLINK'), + ('libgfortran.dylib', 'libgfortran.5.dylib', 'SYMLINK'), + ('libformw.dylib', 'libformw.6.dylib', 'SYMLINK'), + ('libblas.dylib', 'libopenblas.dylib', 'SYMLINK'), + ('libreadline.dylib', 'libreadline.8.2.dylib', 'SYMLINK'), + ('libmenu.dylib', 'libmenuw.6.dylib', 'SYMLINK'), + ('libcrypto.dylib', 'libcrypto.3.dylib', 'SYMLINK'), + ('libhistory.8.dylib', 'libhistory.8.2.dylib', 'SYMLINK'), + ('libpanelw.dylib', 'libpanelw.6.dylib', 'SYMLINK'), + ('libcblas.dylib', 'libopenblas.dylib', 'SYMLINK'), + ('libmenuw.dylib', 'libmenuw.6.dylib', 'SYMLINK'), + ('libform.dylib', 'libformw.6.dylib', 'SYMLINK'), + ('libmenu.6.dylib', 'libmenuw.6.dylib', 'SYMLINK'), + ('libncurses.6.dylib', 'libncursesw.6.dylib', 'SYMLINK'), + ('libncursesw.dylib', 'libncursesw.6.dylib', 'SYMLINK'), + ('libncurses.dylib', 'libncursesw.6.dylib', 'SYMLINK'), + ('libpanel.dylib', 'libpanelw.6.dylib', 'SYMLINK'), + ('liblapack.dylib', 'libopenblas.dylib', 'SYMLINK'), + ('libpanel.6.dylib', 'libpanelw.6.dylib', 'SYMLINK'), + ('libssl.dylib', 'libssl.3.dylib', 'SYMLINK'), + ('libtinfow.dylib', 'libtinfow.6.dylib', 'SYMLINK'), + ('libffi.7.dylib', 'libffi.8.dylib', 'SYMLINK'), + ('libexpat.1.dylib', 'libexpat.1.10.0.dylib', 'SYMLINK'), + ('libtinfo.6.dylib', 'libtinfow.6.dylib', 'SYMLINK'), + ('libbz2.dylib', 'libbz2.1.0.8.dylib', 'SYMLINK'), + ('libz.1.dylib', 'libz.1.2.13.dylib', 'SYMLINK'), + ('liblzma.5.dylib', 'PIL/.dylibs/liblzma.5.dylib', 'SYMLINK'), + ('libhistory.dylib', 'libhistory.8.2.dylib', 'SYMLINK'), + ('libopenblas.0.dylib', 'libopenblasp-r0.3.21.dylib', 'SYMLINK'), + ('libform.6.dylib', 'libformw.6.dylib', 'SYMLINK'), + ('liblzma.dylib', 'liblzma.5.dylib', 'SYMLINK'), + ('libz.dylib', 'libz.1.2.13.dylib', 'SYMLINK'), + ('libtinfo.dylib', 'libtinfow.6.dylib', 'SYMLINK'), + ('libquadmath.dylib', 'libquadmath.0.dylib', 'SYMLINK'), + ('libgomp.1.dylib', 'libomp.dylib', 'SYMLINK'), + ('libffi.dylib', 'libffi.8.dylib', 'SYMLINK'), + ('libwebpdemux.2.dylib', 'PIL/.dylibs/libwebpdemux.2.dylib', 'SYMLINK'), + ('libwebp.7.dylib', 'PIL/.dylibs/libwebp.7.dylib', 'SYMLINK'), + ('libwebpmux.3.dylib', 'PIL/.dylibs/libwebpmux.3.dylib', 'SYMLINK'), + ('liblcms2.2.dylib', 'PIL/.dylibs/liblcms2.2.dylib', 'SYMLINK'), + ('libtiff.6.dylib', 'PIL/.dylibs/libtiff.6.dylib', 'SYMLINK'), + ('libxcb.1.1.0.dylib', 'PIL/.dylibs/libxcb.1.1.0.dylib', 'SYMLINK'), + ('libopenjp2.2.5.3.dylib', 'PIL/.dylibs/libopenjp2.2.5.3.dylib', 'SYMLINK'), + ('libjpeg.62.4.0.dylib', 'PIL/.dylibs/libjpeg.62.4.0.dylib', 'SYMLINK'), + ('libz.1.3.1.zlib-ng.dylib', + 'PIL/.dylibs/libz.1.3.1.zlib-ng.dylib', + 'SYMLINK'), + ('libsharpyuv.0.dylib', 'PIL/.dylibs/libsharpyuv.0.dylib', 'SYMLINK'), + ('libXau.6.dylib', 'PIL/.dylibs/libXau.6.dylib', 'SYMLINK')], + [], + False, + False, + 1771919881, + [('run', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PyInstaller/bootloader/Darwin-64bit/run', + 'EXECUTABLE')], + '/opt/homebrew/Caskroom/miniconda/base/lib/libpython3.12.dylib') diff --git a/build/ad_user_creator/PKG-00.toc b/build/ad_user_creator/PKG-00.toc new file mode 100644 index 0000000..2b515fd --- /dev/null +++ b/build/ad_user_creator/PKG-00.toc @@ -0,0 +1,2670 @@ +('/Users/marsway/Workspace/Aflowx/AD-User-Creator/build/ad_user_creator/ad-user-creator.pkg', + {'BINARY': True, + 'DATA': True, + 'EXECUTABLE': True, + 'EXTENSION': True, + 'PYMODULE': True, + 'PYSOURCE': True, + 'PYZ': False, + 'SPLASH': True, + 'SYMLINK': False}, + [('pyi-contents-directory _internal', '', 'OPTION'), + ('PYZ-00.pyz', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/build/ad_user_creator/PYZ-00.pyz', + 'PYZ'), + ('python3.12/lib-dynload/_struct.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_struct.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/zlib.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/zlib.cpython-312-darwin.so', + 'EXTENSION'), + ('struct', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/build/ad_user_creator/localpycs/struct.pyc', + 'PYMODULE'), + ('pyimod01_archive', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/build/ad_user_creator/localpycs/pyimod01_archive.pyc', + 'PYMODULE'), + ('pyimod02_importers', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/build/ad_user_creator/localpycs/pyimod02_importers.pyc', + 'PYMODULE'), + ('pyimod03_ctypes', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/build/ad_user_creator/localpycs/pyimod03_ctypes.pyc', + 'PYMODULE'), + ('pyiboot01_bootstrap', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PyInstaller/loader/pyiboot01_bootstrap.py', + 'PYSOURCE'), + ('pyi_rth_inspect', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PyInstaller/hooks/rthooks/pyi_rth_inspect.py', + 'PYSOURCE'), + ('pyi_rth_pkgutil', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py', + 'PYSOURCE'), + ('pyi_rth_multiprocessing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PyInstaller/hooks/rthooks/pyi_rth_multiprocessing.py', + 'PYSOURCE'), + ('pyi_rth_setuptools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PyInstaller/hooks/rthooks/pyi_rth_setuptools.py', + 'PYSOURCE'), + ('pyi_rth_pkgres', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgres.py', + 'PYSOURCE'), + ('pyi_rth_cryptography_openssl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/_pyinstaller_hooks_contrib/rthooks/pyi_rth_cryptography_openssl.py', + 'PYSOURCE'), + ('entry', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/entry.py', + 'PYSOURCE'), + ('libgcc_s.1.1.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libgcc_s.1.1.dylib', + 'BINARY'), + ('libncursesw.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libncursesw.6.dylib', + 'BINARY'), + ('libpanelw.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libpanelw.6.dylib', + 'BINARY'), + ('libmenuw.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libmenuw.6.dylib', + 'BINARY'), + ('libexpat.1.10.0.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libexpat.1.10.0.dylib', + 'BINARY'), + ('libssl.3.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libssl.3.dylib', + 'BINARY'), + ('libgfortran.5.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libgfortran.5.dylib', + 'BINARY'), + ('libz.1.2.13.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libz.1.2.13.dylib', + 'BINARY'), + ('libtcl8.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libtcl8.6.dylib', + 'BINARY'), + ('libcrypto.3.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libcrypto.3.dylib', + 'BINARY'), + ('libopenblasp-r0.3.21.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libopenblasp-r0.3.21.dylib', + 'BINARY'), + ('libc++.1.0.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libc++.1.0.dylib', + 'BINARY'), + ('libtk8.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libtk8.6.dylib', + 'BINARY'), + ('libhistory.8.2.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libhistory.8.2.dylib', + 'BINARY'), + ('libbz2.1.0.8.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libbz2.1.0.8.dylib', + 'BINARY'), + ('libsqlite3.0.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libsqlite3.0.dylib', + 'BINARY'), + ('libreadline.8.2.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libreadline.8.2.dylib', + 'BINARY'), + ('libomp.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libomp.dylib', + 'BINARY'), + ('libffi.8.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libffi.8.dylib', + 'BINARY'), + ('libopenblas.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libopenblas.dylib', + 'BINARY'), + ('libpython3.12.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libpython3.12.dylib', + 'BINARY'), + ('libquadmath.0.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libquadmath.0.dylib', + 'BINARY'), + ('libtinfow.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libtinfow.6.dylib', + 'BINARY'), + ('libformw.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/libformw.6.dylib', + 'BINARY'), + ('Crypto/PublicKey/_ed25519.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/PublicKey/_ed25519.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_cfb.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_cfb.abi3.so', + 'BINARY'), + ('Crypto/Util/_strxor.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Util/_strxor.abi3.so', + 'BINARY'), + ('Crypto/Hash/_MD4.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_MD4.abi3.so', + 'BINARY'), + ('Crypto/PublicKey/_ed448.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/PublicKey/_ed448.abi3.so', + 'BINARY'), + ('Crypto/PublicKey/_curve448.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/PublicKey/_curve448.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_cast.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_cast.abi3.so', + 'BINARY'), + ('Crypto/Hash/_SHA224.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_SHA224.abi3.so', + 'BINARY'), + ('Crypto/PublicKey/_curve25519.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/PublicKey/_curve25519.abi3.so', + 'BINARY'), + ('Crypto/Hash/_MD2.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_MD2.abi3.so', + 'BINARY'), + ('Crypto/Hash/_SHA256.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_SHA256.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_Salsa20.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_Salsa20.abi3.so', + 'BINARY'), + ('Crypto/Hash/_SHA512.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_SHA512.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_des.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_des.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_des3.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_des3.abi3.so', + 'BINARY'), + ('Crypto/Hash/_keccak.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_keccak.abi3.so', + 'BINARY'), + ('Crypto/Hash/_RIPEMD160.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_RIPEMD160.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_pkcs1_decode.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_pkcs1_decode.abi3.so', + 'BINARY'), + ('Crypto/Hash/_BLAKE2s.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_BLAKE2s.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_aes.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_aes.abi3.so', + 'BINARY'), + ('Crypto/PublicKey/_ec_ws.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/PublicKey/_ec_ws.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_arc2.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_arc2.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_eksblowfish.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_eksblowfish.abi3.so', + 'BINARY'), + ('Crypto/Protocol/_scrypt.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Protocol/_scrypt.abi3.so', + 'BINARY'), + ('Crypto/Hash/_ghash_portable.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_ghash_portable.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_cbc.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_cbc.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_chacha20.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_chacha20.abi3.so', + 'BINARY'), + ('Crypto/Util/_cpuid_c.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Util/_cpuid_c.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_ocb.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_ocb.abi3.so', + 'BINARY'), + ('Crypto/Hash/_poly1305.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_poly1305.abi3.so', + 'BINARY'), + ('Crypto/Hash/_SHA384.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_SHA384.abi3.so', + 'BINARY'), + ('Crypto/Hash/_BLAKE2b.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_BLAKE2b.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_ecb.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_ecb.abi3.so', + 'BINARY'), + ('Crypto/Hash/_SHA1.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_SHA1.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_ofb.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_ofb.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_blowfish.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_blowfish.abi3.so', + 'BINARY'), + ('Crypto/Math/_modexp.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Math/_modexp.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_raw_ctr.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_raw_ctr.abi3.so', + 'BINARY'), + ('Crypto/Cipher/_ARC4.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Cipher/_ARC4.abi3.so', + 'BINARY'), + ('Crypto/Hash/_MD5.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/_MD5.abi3.so', + 'BINARY'), + ('ossl-modules/legacy.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/ossl-modules/legacy.dylib', + 'BINARY'), + ('python3.12/lib-dynload/grp.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/grp.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/math.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/math.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/select.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/select.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_posixsubprocess.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_posixsubprocess.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/fcntl.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/fcntl.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_pickle.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_pickle.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/binascii.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/binascii.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/resource.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/resource.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_lzma.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_lzma.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_bz2.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_bz2.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/unicodedata.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/unicodedata.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_datetime.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_datetime.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/array.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/array.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_socket.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_socket.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_statistics.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_statistics.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_contextvars.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_contextvars.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_decimal.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_decimal.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_hashlib.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_hashlib.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_sha3.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_sha3.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_blake2.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_blake2.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_md5.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_md5.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_sha1.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_sha1.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_sha2.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_sha2.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_random.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_random.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_bisect.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_bisect.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_ctypes.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_ctypes.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/syslog.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/syslog.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_queue.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_queue.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_json.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_json.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_ssl.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_ssl.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_asyncio.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_asyncio.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/mmap.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/mmap.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_posixshmem.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_posixshmem.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_csv.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_csv.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_multiprocessing.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_multiprocessing.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/termios.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/termios.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/pyexpat.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/pyexpat.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_scproxy.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_scproxy.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/readline.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/readline.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_opcode.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_opcode.cpython-312-darwin.so', + 'EXTENSION'), + ('_cffi_backend.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/_cffi_backend.cpython-312-darwin.so', + 'EXTENSION'), + ('cryptography/hazmat/bindings/_rust.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/bindings/_rust.abi3.so', + 'EXTENSION'), + ('bcrypt/_bcrypt.abi3.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bcrypt/_bcrypt.abi3.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_uuid.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_uuid.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_elementtree.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_elementtree.cpython-312-darwin.so', + 'EXTENSION'), + ('lxml/etree.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/etree.cpython-312-darwin.so', + 'EXTENSION'), + ('lxml/_elementpath.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/_elementpath.cpython-312-darwin.so', + 'EXTENSION'), + ('lxml/sax.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/sax.cpython-312-darwin.so', + 'EXTENSION'), + ('lxml/objectify.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/objectify.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_multibytecodec.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_multibytecodec.cpython-312-darwin.so', + 'EXTENSION'), + ('lxml/html/diff.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/diff.cpython-312-darwin.so', + 'EXTENSION'), + ('lxml/builder.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/builder.cpython-312-darwin.so', + 'EXTENSION'), + ('openpyxl/worksheet/_writer.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/_writer.cpython-312-darwin.so', + 'EXTENSION'), + ('openpyxl/worksheet/_reader.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/_reader.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/_core/_multiarray_tests.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_multiarray_tests.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/_core/_multiarray_umath.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_multiarray_umath.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/linalg/_umath_linalg.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/linalg/_umath_linalg.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/mtrand.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/mtrand.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/_sfc64.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_sfc64.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/_philox.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_philox.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/_pcg64.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_pcg64.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/_mt19937.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_mt19937.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/bit_generator.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/bit_generator.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/_generator.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_generator.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/_bounded_integers.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_bounded_integers.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/random/_common.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_common.cpython-312-darwin.so', + 'EXTENSION'), + ('numpy/fft/_pocketfft_umath.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/fft/_pocketfft_umath.cpython-312-darwin.so', + 'EXTENSION'), + ('yaml/_yaml.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/_yaml.cpython-312-darwin.so', + 'EXTENSION'), + ('openpyxl/utils/cell.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/cell.cpython-312-darwin.so', + 'EXTENSION'), + ('PIL/_webp.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_webp.cpython-312-darwin.so', + 'EXTENSION'), + ('PIL/_imagingtk.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_imagingtk.cpython-312-darwin.so', + 'EXTENSION'), + ('PIL/_imagingcms.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_imagingcms.cpython-312-darwin.so', + 'EXTENSION'), + ('PIL/_imagingmath.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_imagingmath.cpython-312-darwin.so', + 'EXTENSION'), + ('PIL/_imaging.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_imaging.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_zoneinfo.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_zoneinfo.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_sqlite3.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_sqlite3.cpython-312-darwin.so', + 'EXTENSION'), + ('numexpr/interpreter.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numexpr/interpreter.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/writers.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/writers.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/window/indexers.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/window/indexers.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/window/aggregations.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/window/aggregations.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/vectorized.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/vectorized.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/tzconversion.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/tzconversion.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/timezones.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/timezones.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/timestamps.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/timestamps.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/timedeltas.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/timedeltas.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/strptime.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/strptime.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/period.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/period.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/parsing.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/parsing.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/offsets.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/offsets.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/np_datetime.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/np_datetime.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/nattype.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/nattype.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/fields.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/fields.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/dtypes.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/dtypes.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/conversion.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/conversion.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/ccalendar.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/ccalendar.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslibs/base.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/base.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/tslib.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslib.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/testing.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/testing.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/sparse.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/sparse.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/sas.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/sas.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/reshape.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/reshape.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/properties.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/properties.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/parsers.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/parsers.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/pandas_parser.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/pandas_parser.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/pandas_datetime.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/pandas_datetime.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/ops_dispatch.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/ops_dispatch.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/ops.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/ops.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/missing.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/missing.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/lib.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/lib.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/json.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/json.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/join.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/join.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/interval.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/interval.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/internals.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/internals.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/indexing.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/indexing.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/index.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/index.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/hashtable.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/hashtable.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/hashing.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/hashing.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/groupby.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/groupby.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/byteswap.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/byteswap.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/arrays.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/arrays.cpython-312-darwin.so', + 'EXTENSION'), + ('pandas/_libs/algos.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/algos.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/cmath.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/cmath.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_codecs_jp.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_jp.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_codecs_kr.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_kr.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_codecs_iso2022.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_iso2022.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_codecs_cn.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_cn.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_codecs_tw.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_tw.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_codecs_hk.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_hk.cpython-312-darwin.so', + 'EXTENSION'), + ('python3.12/lib-dynload/_heapq.cpython-312-darwin.so', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_heapq.cpython-312-darwin.so', + 'EXTENSION'), + ('PIL/.dylibs/libwebpdemux.2.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libwebpdemux.2.dylib', + 'BINARY'), + ('PIL/.dylibs/libwebp.7.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libwebp.7.dylib', + 'BINARY'), + ('PIL/.dylibs/libwebpmux.3.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libwebpmux.3.dylib', + 'BINARY'), + ('PIL/.dylibs/liblcms2.2.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/liblcms2.2.dylib', + 'BINARY'), + ('PIL/.dylibs/libtiff.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libtiff.6.dylib', + 'BINARY'), + ('PIL/.dylibs/libxcb.1.1.0.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libxcb.1.1.0.dylib', + 'BINARY'), + ('PIL/.dylibs/libopenjp2.2.5.3.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libopenjp2.2.5.3.dylib', + 'BINARY'), + ('PIL/.dylibs/libjpeg.62.4.0.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libjpeg.62.4.0.dylib', + 'BINARY'), + ('PIL/.dylibs/libz.1.3.1.zlib-ng.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libz.1.3.1.zlib-ng.dylib', + 'BINARY'), + ('PIL/.dylibs/libsharpyuv.0.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libsharpyuv.0.dylib', + 'BINARY'), + ('PIL/.dylibs/liblzma.5.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/liblzma.5.dylib', + 'BINARY'), + ('PIL/.dylibs/libXau.6.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/.dylibs/libXau.6.dylib', + 'BINARY'), + ('config/config.yaml.example', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/config/config.yaml.example', + 'DATA'), + ('setuptools/_vendor/importlib_metadata-8.0.0.dist-info/INSTALLER', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/INSTALLER', + 'DATA'), + ('setuptools/_vendor/importlib_metadata-8.0.0.dist-info/REQUESTED', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/REQUESTED', + 'DATA'), + ('setuptools/_vendor/importlib_metadata-8.0.0.dist-info/RECORD', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/RECORD', + 'DATA'), + ('setuptools/_vendor/importlib_metadata-8.0.0.dist-info/top_level.txt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/top_level.txt', + 'DATA'), + ('setuptools/_vendor/importlib_metadata-8.0.0.dist-info/METADATA', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/METADATA', + 'DATA'), + ('setuptools/_vendor/importlib_metadata-8.0.0.dist-info/WHEEL', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/WHEEL', + 'DATA'), + ('setuptools/_vendor/importlib_metadata-8.0.0.dist-info/LICENSE', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/LICENSE', + 'DATA'), + ('setuptools/_vendor/jaraco/text/Lorem ipsum.txt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/Lorem ' + 'ipsum.txt', + 'DATA'), + ('cryptography-43.0.3.dist-info/license_files/LICENSE', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/license_files/LICENSE', + 'DATA'), + ('cryptography-43.0.3.dist-info/direct_url.json', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/direct_url.json', + 'DATA'), + ('cryptography-43.0.3.dist-info/INSTALLER', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/INSTALLER', + 'DATA'), + ('cryptography-43.0.3.dist-info/REQUESTED', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/REQUESTED', + 'DATA'), + ('cryptography-43.0.3.dist-info/RECORD', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/RECORD', + 'DATA'), + ('cryptography-43.0.3.dist-info/license_files/LICENSE.APACHE', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/license_files/LICENSE.APACHE', + 'DATA'), + ('cryptography-43.0.3.dist-info/METADATA', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/METADATA', + 'DATA'), + ('cryptography-43.0.3.dist-info/license_files/LICENSE.BSD', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/license_files/LICENSE.BSD', + 'DATA'), + ('cryptography-43.0.3.dist-info/WHEEL', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography-43.0.3.dist-info/WHEEL', + 'DATA'), + ('lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl', + 'DATA'), + ('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_abstract_expand.xsl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_abstract_expand.xsl', + 'DATA'), + ('lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl', + 'DATA'), + ('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_dsdl_include.xsl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_dsdl_include.xsl', + 'DATA'), + ('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_message.xsl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_message.xsl', + 'DATA'), + ('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl', + 'DATA'), + ('lxml/isoschematron/resources/rng/iso-schematron.rng', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/rng/iso-schematron.rng', + 'DATA'), + ('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl', + 'DATA'), + ('lxml/isoschematron/resources/xsl/iso-schematron-xslt1/readme.txt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/readme.txt', + 'DATA'), + ('dateutil/zoneinfo/dateutil-zoneinfo.tar.gz', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/zoneinfo/dateutil-zoneinfo.tar.gz', + 'DATA'), + ('pytz/zoneinfo/Europe/Simferopol', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Simferopol', + 'DATA'), + ('pytz/zoneinfo/Africa/Kigali', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Kigali', + 'DATA'), + ('pytz/zoneinfo/Asia/Dushanbe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Dushanbe', + 'DATA'), + ('pytz/zoneinfo/Africa/Tunis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Tunis', + 'DATA'), + ('pytz/zoneinfo/America/Glace_Bay', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Glace_Bay', + 'DATA'), + ('pytz/zoneinfo/America/Nipigon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Nipigon', + 'DATA'), + ('pytz/zoneinfo/Pacific/Kiritimati', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Kiritimati', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+9', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+9', + 'DATA'), + ('pytz/zoneinfo/America/St_Vincent', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/St_Vincent', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Davis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Davis', + 'DATA'), + ('pytz/zoneinfo/US/Indiana-Starke', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Indiana-Starke', + 'DATA'), + ('pytz/zoneinfo/Australia/Queensland', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Queensland', + 'DATA'), + ('pytz/zoneinfo/Asia/Muscat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Muscat', + 'DATA'), + ('pytz/zoneinfo/Australia/NSW', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/NSW', + 'DATA'), + ('pytz/zoneinfo/Asia/Kashgar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kashgar', + 'DATA'), + ('pytz/zoneinfo/Iran', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Iran', + 'DATA'), + ('pytz/zoneinfo/America/Maceio', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Maceio', + 'DATA'), + ('pytz/zoneinfo/Pacific/Rarotonga', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Rarotonga', + 'DATA'), + ('pytz/zoneinfo/Asia/Baku', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Baku', + 'DATA'), + ('pytz/zoneinfo/Europe/San_Marino', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/San_Marino', + 'DATA'), + ('pytz/zoneinfo/America/Bogota', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Bogota', + 'DATA'), + ('pytz/zoneinfo/US/Arizona', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Arizona', + 'DATA'), + ('pytz/zoneinfo/Asia/Dhaka', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Dhaka', + 'DATA'), + ('pytz/zoneinfo/America/Cambridge_Bay', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Cambridge_Bay', + 'DATA'), + ('pytz/zoneinfo/Europe/Kaliningrad', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Kaliningrad', + 'DATA'), + ('pytz/zoneinfo/US/Aleutian', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Aleutian', + 'DATA'), + ('pytz/zoneinfo/Etc/Zulu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/Zulu', + 'DATA'), + ('pytz/zoneinfo/Europe/Nicosia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Nicosia', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+6', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+6', + 'DATA'), + ('pytz/zoneinfo/America/Kralendijk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Kralendijk', + 'DATA'), + ('pytz/zoneinfo/America/Ojinaga', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Ojinaga', + 'DATA'), + ('pytz/zoneinfo/Asia/Oral', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Oral', + 'DATA'), + ('pytz/zoneinfo/Africa/Nouakchott', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Nouakchott', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Palmer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Palmer', + 'DATA'), + ('pytz/zoneinfo/America/Port-au-Prince', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Port-au-Prince', + 'DATA'), + ('pytz/zoneinfo/Africa/Monrovia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Monrovia', + 'DATA'), + ('pytz/zoneinfo/Pacific/Gambier', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Gambier', + 'DATA'), + ('pytz/zoneinfo/America/Sitka', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Sitka', + 'DATA'), + ('pytz/zoneinfo/Indian/Mayotte', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Mayotte', + 'DATA'), + ('pytz/zoneinfo/America/Atka', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Atka', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-13', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-13', + 'DATA'), + ('pytz/zoneinfo/Pacific/Chuuk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Chuuk', + 'DATA'), + ('pytz/zoneinfo/ROK', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/ROK', + 'DATA'), + ('pytz/zoneinfo/Asia/Dacca', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Dacca', + 'DATA'), + ('pytz/zoneinfo/Asia/Rangoon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Rangoon', + 'DATA'), + ('pytz/zoneinfo/Asia/Brunei', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Brunei', + 'DATA'), + ('pytz/zoneinfo/Asia/Qatar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Qatar', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-5', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-5', + 'DATA'), + ('pytz/zoneinfo/Europe/Zagreb', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Zagreb', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Knox', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Knox', + 'DATA'), + ('pytz/zoneinfo/tzdata.zi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/tzdata.zi', + 'DATA'), + ('pytz/zoneinfo/Indian/Chagos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Chagos', + 'DATA'), + ('pytz/zoneinfo/Australia/Lord_Howe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Lord_Howe', + 'DATA'), + ('pytz/zoneinfo/Europe/Ulyanovsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Ulyanovsk', + 'DATA'), + ('pytz/zoneinfo/America/Vancouver', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Vancouver', + 'DATA'), + ('pytz/zoneinfo/MST7MDT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/MST7MDT', + 'DATA'), + ('pytz/zoneinfo/Asia/Kolkata', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kolkata', + 'DATA'), + ('pytz/zoneinfo/Europe/Vaduz', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Vaduz', + 'DATA'), + ('pytz/zoneinfo/Australia/Darwin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Darwin', + 'DATA'), + ('pytz/zoneinfo/Africa/Asmara', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Asmara', + 'DATA'), + ('pytz/zoneinfo/Asia/Hovd', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Hovd', + 'DATA'), + ('pytz/zoneinfo/Asia/Bahrain', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Bahrain', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Rothera', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Rothera', + 'DATA'), + ('pytz/zoneinfo/Asia/Damascus', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Damascus', + 'DATA'), + ('pytz/zoneinfo/America/Boa_Vista', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Boa_Vista', + 'DATA'), + ('pytz/zoneinfo/Europe/Bucharest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Bucharest', + 'DATA'), + ('pytz/zoneinfo/America/Edmonton', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Edmonton', + 'DATA'), + ('pytz/zoneinfo/Asia/Dili', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Dili', + 'DATA'), + ('pytz/zoneinfo/Pacific/Kosrae', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Kosrae', + 'DATA'), + ('pytz/zoneinfo/Antarctica/McMurdo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/McMurdo', + 'DATA'), + ('pytz/zoneinfo/America/St_Barthelemy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/St_Barthelemy', + 'DATA'), + ('pytz/zoneinfo/America/Puerto_Rico', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Puerto_Rico', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-1', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-1', + 'DATA'), + ('pytz/zoneinfo/America/Adak', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Adak', + 'DATA'), + ('pytz/zoneinfo/CET', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/CET', + 'DATA'), + ('pytz/zoneinfo/Europe/Vatican', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Vatican', + 'DATA'), + ('pytz/zoneinfo/Europe/Tirane', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Tirane', + 'DATA'), + ('pytz/zoneinfo/Africa/Dar_es_Salaam', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Dar_es_Salaam', + 'DATA'), + ('pytz/zoneinfo/Australia/North', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/North', + 'DATA'), + ('pytz/zoneinfo/Asia/Irkutsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Irkutsk', + 'DATA'), + ('pytz/zoneinfo/Libya', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Libya', + 'DATA'), + ('pytz/zoneinfo/Arctic/Longyearbyen', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Arctic/Longyearbyen', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Winamac', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Winamac', + 'DATA'), + ('pytz/zoneinfo/GMT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/GMT', + 'DATA'), + ('pytz/zoneinfo/Australia/West', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/West', + 'DATA'), + ('pytz/zoneinfo/Africa/Abidjan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Abidjan', + 'DATA'), + ('pytz/zoneinfo/Pacific/Guadalcanal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Guadalcanal', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Jujuy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Jujuy', + 'DATA'), + ('pytz/zoneinfo/America/Cordoba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Cordoba', + 'DATA'), + ('pytz/zoneinfo/Canada/Atlantic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Atlantic', + 'DATA'), + ('pytz/zoneinfo/America/Lower_Princes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Lower_Princes', + 'DATA'), + ('pytz/zoneinfo/Africa/Freetown', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Freetown', + 'DATA'), + ('pytz/zoneinfo/Indian/Maldives', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Maldives', + 'DATA'), + ('pytz/zoneinfo/Asia/Taipei', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Taipei', + 'DATA'), + ('pytz/zoneinfo/GMT0', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/GMT0', + 'DATA'), + ('pytz/zoneinfo/America/Santa_Isabel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Santa_Isabel', + 'DATA'), + ('pytz/zoneinfo/America/Indianapolis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indianapolis', + 'DATA'), + ('pytz/zoneinfo/America/Porto_Velho', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Porto_Velho', + 'DATA'), + ('pytz/zoneinfo/Pacific/Truk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Truk', + 'DATA'), + ('pytz/zoneinfo/Brazil/DeNoronha', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Brazil/DeNoronha', + 'DATA'), + ('pytz/zoneinfo/Europe/Busingen', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Busingen', + 'DATA'), + ('pytz/zoneinfo/Pacific/Fiji', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Fiji', + 'DATA'), + ('pytz/zoneinfo/Asia/Saigon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Saigon', + 'DATA'), + ('pytz/zoneinfo/America/Santo_Domingo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Santo_Domingo', + 'DATA'), + ('pytz/zoneinfo/Japan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Japan', + 'DATA'), + ('pytz/zoneinfo/Pacific/Wallis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Wallis', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+8', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+8', + 'DATA'), + ('pytz/zoneinfo/Africa/Lubumbashi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Lubumbashi', + 'DATA'), + ('pytz/zoneinfo/America/Montevideo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Montevideo', + 'DATA'), + ('pytz/zoneinfo/Africa/Addis_Ababa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Addis_Ababa', + 'DATA'), + ('pytz/zoneinfo/Africa/Asmera', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Asmera', + 'DATA'), + ('pytz/zoneinfo/Europe/Zaporozhye', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Zaporozhye', + 'DATA'), + ('pytz/zoneinfo/Etc/UTC', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/UTC', + 'DATA'), + ('pytz/zoneinfo/America/St_Thomas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/St_Thomas', + 'DATA'), + ('pytz/zoneinfo/Canada/Eastern', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Eastern', + 'DATA'), + ('pytz/zoneinfo/America/Sao_Paulo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Sao_Paulo', + 'DATA'), + ('pytz/zoneinfo/America/Chicago', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Chicago', + 'DATA'), + ('pytz/zoneinfo/America/Winnipeg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Winnipeg', + 'DATA'), + ('pytz/zoneinfo/America/Caracas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Caracas', + 'DATA'), + ('pytz/zoneinfo/Europe/Tiraspol', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Tiraspol', + 'DATA'), + ('pytz/zoneinfo/zone.tab', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/zone.tab', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-9', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-9', + 'DATA'), + ('pytz/zoneinfo/Pacific/Funafuti', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Funafuti', + 'DATA'), + ('pytz/zoneinfo/Chile/EasterIsland', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Chile/EasterIsland', + 'DATA'), + ('pytz/zoneinfo/America/Goose_Bay', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Goose_Bay', + 'DATA'), + ('pytz/zoneinfo/Poland', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Poland', + 'DATA'), + ('pytz/zoneinfo/Asia/Seoul', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Seoul', + 'DATA'), + ('pytz/zoneinfo/Pacific/Chatham', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Chatham', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-8', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-8', + 'DATA'), + ('pytz/zoneinfo/Pacific/Niue', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Niue', + 'DATA'), + ('pytz/zoneinfo/America/Port_of_Spain', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Port_of_Spain', + 'DATA'), + ('pytz/zoneinfo/Europe/Saratov', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Saratov', + 'DATA'), + ('pytz/zoneinfo/Pacific/Bougainville', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Bougainville', + 'DATA'), + ('pytz/zoneinfo/America/El_Salvador', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/El_Salvador', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+3', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+3', + 'DATA'), + ('pytz/zoneinfo/Europe/Brussels', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Brussels', + 'DATA'), + ('pytz/zoneinfo/America/La_Paz', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/La_Paz', + 'DATA'), + ('pytz/zoneinfo/US/Central', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Central', + 'DATA'), + ('pytz/zoneinfo/America/Menominee', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Menominee', + 'DATA'), + ('pytz/zoneinfo/Asia/Jayapura', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Jayapura', + 'DATA'), + ('pytz/zoneinfo/America/Guyana', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Guyana', + 'DATA'), + ('pytz/zoneinfo/America/Nome', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Nome', + 'DATA'), + ('pytz/zoneinfo/Australia/ACT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/ACT', + 'DATA'), + ('pytz/zoneinfo/Asia/Tokyo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Tokyo', + 'DATA'), + ('pytz/zoneinfo/Australia/LHI', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/LHI', + 'DATA'), + ('pytz/zoneinfo/Pacific/Pago_Pago', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Pago_Pago', + 'DATA'), + ('pytz/zoneinfo/Europe/London', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/London', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Mendoza', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Mendoza', + 'DATA'), + ('pytz/zoneinfo/America/Cancun', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Cancun', + 'DATA'), + ('pytz/zoneinfo/Asia/Riyadh', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Riyadh', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Vostok', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Vostok', + 'DATA'), + ('pytz/zoneinfo/Europe/Warsaw', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Warsaw', + 'DATA'), + ('pytz/zoneinfo/America/Kentucky/Louisville', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Kentucky/Louisville', + 'DATA'), + ('pytz/zoneinfo/Asia/Pyongyang', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Pyongyang', + 'DATA'), + ('pytz/zoneinfo/America/Virgin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Virgin', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Tell_City', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Tell_City', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+11', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+11', + 'DATA'), + ('pytz/zoneinfo/HST', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/HST', + 'DATA'), + ('pytz/zoneinfo/Iceland', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Iceland', + 'DATA'), + ('pytz/zoneinfo/America/Coral_Harbour', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Coral_Harbour', + 'DATA'), + ('pytz/zoneinfo/Australia/Sydney', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Sydney', + 'DATA'), + ('pytz/zoneinfo/UCT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/UCT', + 'DATA'), + ('pytz/zoneinfo/America/Porto_Acre', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Porto_Acre', + 'DATA'), + ('pytz/zoneinfo/Africa/Ndjamena', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Ndjamena', + 'DATA'), + ('pytz/zoneinfo/America/Los_Angeles', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Los_Angeles', + 'DATA'), + ('pytz/zoneinfo/America/Eirunepe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Eirunepe', + 'DATA'), + ('pytz/zoneinfo/America/New_York', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/New_York', + 'DATA'), + ('pytz/zoneinfo/Asia/Magadan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Magadan', + 'DATA'), + ('pytz/zoneinfo/Greenwich', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Greenwich', + 'DATA'), + ('pytz/zoneinfo/Asia/Kabul', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kabul', + 'DATA'), + ('pytz/zoneinfo/Asia/Harbin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Harbin', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/San_Juan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/San_Juan', + 'DATA'), + ('pytz/zoneinfo/Pacific/Pitcairn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Pitcairn', + 'DATA'), + ('pytz/zoneinfo/Pacific/Easter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Easter', + 'DATA'), + ('pytz/zoneinfo/Kwajalein', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Kwajalein', + 'DATA'), + ('pytz/zoneinfo/Eire', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Eire', + 'DATA'), + ('pytz/zoneinfo/Africa/Brazzaville', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Brazzaville', + 'DATA'), + ('pytz/zoneinfo/America/Paramaribo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Paramaribo', + 'DATA'), + ('pytz/zoneinfo/Africa/Ceuta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Ceuta', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+4', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+4', + 'DATA'), + ('pytz/zoneinfo/Asia/Beirut', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Beirut', + 'DATA'), + ('pytz/zoneinfo/Africa/Mbabane', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Mbabane', + 'DATA'), + ('pytz/zoneinfo/Asia/Qostanay', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Qostanay', + 'DATA'), + ('pytz/zoneinfo/Africa/Casablanca', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Casablanca', + 'DATA'), + ('pytz/zoneinfo/Europe/Malta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Malta', + 'DATA'), + ('pytz/zoneinfo/MST', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/MST', + 'DATA'), + ('pytz/zoneinfo/America/Lima', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Lima', + 'DATA'), + ('pytz/zoneinfo/Asia/Ust-Nera', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Ust-Nera', + 'DATA'), + ('pytz/zoneinfo/Australia/Hobart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Hobart', + 'DATA'), + ('pytz/zoneinfo/Europe/Kiev', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Kiev', + 'DATA'), + ('pytz/zoneinfo/Europe/Skopje', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Skopje', + 'DATA'), + ('pytz/zoneinfo/America/Belize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Belize', + 'DATA'), + ('pytz/zoneinfo/America/Ciudad_Juarez', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Ciudad_Juarez', + 'DATA'), + ('pytz/zoneinfo/America/Curacao', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Curacao', + 'DATA'), + ('pytz/zoneinfo/Asia/Qyzylorda', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Qyzylorda', + 'DATA'), + ('pytz/zoneinfo/UTC', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/UTC', + 'DATA'), + ('pytz/zoneinfo/America/Denver', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Denver', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Troll', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Troll', + 'DATA'), + ('pytz/zoneinfo/America/Resolute', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Resolute', + 'DATA'), + ('pytz/zoneinfo/Asia/Chungking', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Chungking', + 'DATA'), + ('pytz/zoneinfo/Africa/Tripoli', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Tripoli', + 'DATA'), + ('pytz/zoneinfo/America/Chihuahua', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Chihuahua', + 'DATA'), + ('pytz/zoneinfo/Africa/Bissau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Bissau', + 'DATA'), + ('pytz/zoneinfo/Australia/Broken_Hill', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Broken_Hill', + 'DATA'), + ('pytz/zoneinfo/Australia/Lindeman', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Lindeman', + 'DATA'), + ('pytz/zoneinfo/America/Tijuana', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Tijuana', + 'DATA'), + ('pytz/zoneinfo/CST6CDT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/CST6CDT', + 'DATA'), + ('pytz/zoneinfo/Europe/Vienna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Vienna', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Mawson', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Mawson', + 'DATA'), + ('pytz/zoneinfo/Europe/Moscow', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Moscow', + 'DATA'), + ('pytz/zoneinfo/Africa/Juba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Juba', + 'DATA'), + ('pytz/zoneinfo/W-SU', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/W-SU', + 'DATA'), + ('pytz/zoneinfo/US/East-Indiana', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/East-Indiana', + 'DATA'), + ('pytz/zoneinfo/America/Grenada', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Grenada', + 'DATA'), + ('pytz/zoneinfo/Africa/Cairo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Cairo', + 'DATA'), + ('pytz/zoneinfo/Asia/Colombo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Colombo', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+12', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+12', + 'DATA'), + ('pytz/zoneinfo/Asia/Kuwait', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kuwait', + 'DATA'), + ('pytz/zoneinfo/Africa/Luanda', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Luanda', + 'DATA'), + ('pytz/zoneinfo/America/Kentucky/Monticello', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Kentucky/Monticello', + 'DATA'), + ('pytz/zoneinfo/Europe/Madrid', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Madrid', + 'DATA'), + ('pytz/zoneinfo/Pacific/Fakaofo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Fakaofo', + 'DATA'), + ('pytz/zoneinfo/Canada/Mountain', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Mountain', + 'DATA'), + ('pytz/zoneinfo/America/Boise', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Boise', + 'DATA'), + ('pytz/zoneinfo/Etc/UCT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/UCT', + 'DATA'), + ('pytz/zoneinfo/Asia/Ho_Chi_Minh', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Ho_Chi_Minh', + 'DATA'), + ('pytz/zoneinfo/Europe/Belfast', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Belfast', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Casey', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Casey', + 'DATA'), + ('pytz/zoneinfo/GMT+0', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/GMT+0', + 'DATA'), + ('pytz/zoneinfo/US/Alaska', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Alaska', + 'DATA'), + ('pytz/zoneinfo/Africa/Nairobi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Nairobi', + 'DATA'), + ('pytz/zoneinfo/Brazil/East', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Brazil/East', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+0', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+0', + 'DATA'), + ('pytz/zoneinfo/Europe/Sarajevo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Sarajevo', + 'DATA'), + ('pytz/zoneinfo/America/Miquelon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Miquelon', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Faroe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Faroe', + 'DATA'), + ('pytz/zoneinfo/Indian/Antananarivo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Antananarivo', + 'DATA'), + ('pytz/zoneinfo/GB', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/GB', + 'DATA'), + ('pytz/zoneinfo/America/Rankin_Inlet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Rankin_Inlet', + 'DATA'), + ('pytz/zoneinfo/Africa/Kampala', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Kampala', + 'DATA'), + ('pytz/zoneinfo/Europe/Istanbul', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Istanbul', + 'DATA'), + ('pytz/zoneinfo/PRC', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/PRC', + 'DATA'), + ('pytz/zoneinfo/America/Managua', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Managua', + 'DATA'), + ('pytz/zoneinfo/America/Asuncion', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Asuncion', + 'DATA'), + ('pytz/zoneinfo/America/Grand_Turk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Grand_Turk', + 'DATA'), + ('pytz/zoneinfo/Europe/Podgorica', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Podgorica', + 'DATA'), + ('pytz/zoneinfo/Europe/Athens', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Athens', + 'DATA'), + ('pytz/zoneinfo/Europe/Vilnius', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Vilnius', + 'DATA'), + ('pytz/zoneinfo/Africa/Ouagadougou', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Ouagadougou', + 'DATA'), + ('pytz/zoneinfo/America/Iqaluit', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Iqaluit', + 'DATA'), + ('pytz/zoneinfo/Africa/Lusaka', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Lusaka', + 'DATA'), + ('pytz/zoneinfo/Europe/Dublin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Dublin', + 'DATA'), + ('pytz/zoneinfo/Indian/Christmas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Christmas', + 'DATA'), + ('pytz/zoneinfo/America/Bahia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Bahia', + 'DATA'), + ('pytz/zoneinfo/Asia/Aden', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Aden', + 'DATA'), + ('pytz/zoneinfo/Europe/Gibraltar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Gibraltar', + 'DATA'), + ('pytz/zoneinfo/Asia/Bishkek', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Bishkek', + 'DATA'), + ('pytz/zoneinfo/Pacific/Yap', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Yap', + 'DATA'), + ('pytz/zoneinfo/Mexico/General', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Mexico/General', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/ComodRivadavia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/ComodRivadavia', + 'DATA'), + ('pytz/zoneinfo/America/Dawson', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Dawson', + 'DATA'), + ('pytz/zoneinfo/Africa/Bujumbura', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Bujumbura', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Petersburg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Petersburg', + 'DATA'), + ('pytz/zoneinfo/America/Santarem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Santarem', + 'DATA'), + ('pytz/zoneinfo/America/Ensenada', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Ensenada', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Cape_Verde', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Cape_Verde', + 'DATA'), + ('pytz/zoneinfo/Asia/Tbilisi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Tbilisi', + 'DATA'), + ('pytz/zoneinfo/Pacific/Noumea', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Noumea', + 'DATA'), + ('pytz/zoneinfo/Africa/Johannesburg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Johannesburg', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-10', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-10', + 'DATA'), + ('pytz/zoneinfo/Asia/Khandyga', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Khandyga', + 'DATA'), + ('pytz/zoneinfo/Asia/Hong_Kong', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Hong_Kong', + 'DATA'), + ('pytz/zoneinfo/Pacific/Palau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Palau', + 'DATA'), + ('pytz/zoneinfo/America/Regina', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Regina', + 'DATA'), + ('pytz/zoneinfo/Canada/Saskatchewan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Saskatchewan', + 'DATA'), + ('pytz/zoneinfo/America/Merida', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Merida', + 'DATA'), + ('pytz/zoneinfo/America/Cuiaba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Cuiaba', + 'DATA'), + ('pytz/zoneinfo/Indian/Kerguelen', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Kerguelen', + 'DATA'), + ('pytz/zoneinfo/Europe/Volgograd', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Volgograd', + 'DATA'), + ('pytz/zoneinfo/America/North_Dakota/Beulah', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/North_Dakota/Beulah', + 'DATA'), + ('pytz/zoneinfo/America/Campo_Grande', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Campo_Grande', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Reykjavik', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Reykjavik', + 'DATA'), + ('pytz/zoneinfo/Asia/Vladivostok', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Vladivostok', + 'DATA'), + ('pytz/zoneinfo/Jamaica', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Jamaica', + 'DATA'), + ('pytz/zoneinfo/America/Creston', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Creston', + 'DATA'), + ('pytz/zoneinfo/Europe/Helsinki', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Helsinki', + 'DATA'), + ('pytz/zoneinfo/America/Martinique', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Martinique', + 'DATA'), + ('pytz/zoneinfo/America/Tegucigalpa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Tegucigalpa', + 'DATA'), + ('pytz/zoneinfo/Pacific/Ponape', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Ponape', + 'DATA'), + ('pytz/zoneinfo/Pacific/Port_Moresby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Port_Moresby', + 'DATA'), + ('pytz/zoneinfo/America/North_Dakota/Center', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/North_Dakota/Center', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/San_Luis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/San_Luis', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Bermuda', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Bermuda', + 'DATA'), + ('pytz/zoneinfo/Australia/Brisbane', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Brisbane', + 'DATA'), + ('pytz/zoneinfo/America/Godthab', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Godthab', + 'DATA'), + ('pytz/zoneinfo/Asia/Ashgabat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Ashgabat', + 'DATA'), + ('pytz/zoneinfo/America/North_Dakota/New_Salem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/North_Dakota/New_Salem', + 'DATA'), + ('pytz/zoneinfo/Europe/Jersey', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Jersey', + 'DATA'), + ('pytz/zoneinfo/Asia/Srednekolymsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Srednekolymsk', + 'DATA'), + ('pytz/zoneinfo/Asia/Jakarta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Jakarta', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Madeira', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Madeira', + 'DATA'), + ('pytz/zoneinfo/America/Montreal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Montreal', + 'DATA'), + ('pytz/zoneinfo/Asia/Krasnoyarsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Krasnoyarsk', + 'DATA'), + ('pytz/zoneinfo/America/Mexico_City', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Mexico_City', + 'DATA'), + ('pytz/zoneinfo/Africa/Dakar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Dakar', + 'DATA'), + ('pytz/zoneinfo/Africa/Kinshasa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Kinshasa', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Jan_Mayen', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Jan_Mayen', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Faeroe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Faeroe', + 'DATA'), + ('pytz/zoneinfo/Australia/Currie', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Currie', + 'DATA'), + ('pytz/zoneinfo/Africa/Lagos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Lagos', + 'DATA'), + ('pytz/zoneinfo/Pacific/Honolulu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Honolulu', + 'DATA'), + ('pytz/zoneinfo/Indian/Mahe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Mahe', + 'DATA'), + ('pytz/zoneinfo/Canada/Yukon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Yukon', + 'DATA'), + ('pytz/zoneinfo/Europe/Berlin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Berlin', + 'DATA'), + ('pytz/zoneinfo/America/Tortola', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Tortola', + 'DATA'), + ('pytz/zoneinfo/Navajo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Navajo', + 'DATA'), + ('pytz/zoneinfo/Africa/Niamey', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Niamey', + 'DATA'), + ('pytz/zoneinfo/Asia/Amman', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Amman', + 'DATA'), + ('pytz/zoneinfo/Africa/Sao_Tome', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Sao_Tome', + 'DATA'), + ('pytz/zoneinfo/Asia/Shanghai', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Shanghai', + 'DATA'), + ('pytz/zoneinfo/America/Inuvik', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Inuvik', + 'DATA'), + ('pytz/zoneinfo/Asia/Gaza', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Gaza', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Canary', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Canary', + 'DATA'), + ('pytz/zoneinfo/Universal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Universal', + 'DATA'), + ('pytz/zoneinfo/Asia/Dubai', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Dubai', + 'DATA'), + ('pytz/zoneinfo/Asia/Katmandu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Katmandu', + 'DATA'), + ('pytz/zoneinfo/Asia/Tehran', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Tehran', + 'DATA'), + ('pytz/zoneinfo/Zulu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Zulu', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-6', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-6', + 'DATA'), + ('pytz/zoneinfo/Europe/Mariehamn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Mariehamn', + 'DATA'), + ('pytz/zoneinfo/America/Santiago', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Santiago', + 'DATA'), + ('pytz/zoneinfo/Egypt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Egypt', + 'DATA'), + ('pytz/zoneinfo/Europe/Sofia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Sofia', + 'DATA'), + ('pytz/zoneinfo/Pacific/Majuro', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Majuro', + 'DATA'), + ('pytz/zoneinfo/America/Fort_Nelson', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Fort_Nelson', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-14', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-14', + 'DATA'), + ('pytz/zoneinfo/Asia/Yakutsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Yakutsk', + 'DATA'), + ('pytz/zoneinfo/Africa/Libreville', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Libreville', + 'DATA'), + ('pytz/zoneinfo/EST', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/EST', + 'DATA'), + ('pytz/zoneinfo/Australia/South', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/South', + 'DATA'), + ('pytz/zoneinfo/America/Thunder_Bay', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Thunder_Bay', + 'DATA'), + ('pytz/zoneinfo/ROC', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/ROC', + 'DATA'), + ('pytz/zoneinfo/Europe/Zurich', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Zurich', + 'DATA'), + ('pytz/zoneinfo/Europe/Riga', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Riga', + 'DATA'), + ('pytz/zoneinfo/Pacific/Tarawa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Tarawa', + 'DATA'), + ('pytz/zoneinfo/Asia/Tel_Aviv', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Tel_Aviv', + 'DATA'), + ('pytz/zoneinfo/America/Dominica', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Dominica', + 'DATA'), + ('pytz/zoneinfo/America/Phoenix', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Phoenix', + 'DATA'), + ('pytz/zoneinfo/Europe/Andorra', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Andorra', + 'DATA'), + ('pytz/zoneinfo/GB-Eire', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/GB-Eire', + 'DATA'), + ('pytz/zoneinfo/Asia/Macao', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Macao', + 'DATA'), + ('pytz/zoneinfo/Pacific/Johnston', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Johnston', + 'DATA'), + ('pytz/zoneinfo/America/Aruba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Aruba', + 'DATA'), + ('pytz/zoneinfo/Europe/Copenhagen', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Copenhagen', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Syowa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Syowa', + 'DATA'), + ('pytz/zoneinfo/America/Danmarkshavn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Danmarkshavn', + 'DATA'), + ('pytz/zoneinfo/Asia/Samarkand', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Samarkand', + 'DATA'), + ('pytz/zoneinfo/Pacific/Apia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Apia', + 'DATA'), + ('pytz/zoneinfo/Indian/Comoro', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Comoro', + 'DATA'), + ('pytz/zoneinfo/US/Hawaii', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Hawaii', + 'DATA'), + ('pytz/zoneinfo/America/Manaus', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Manaus', + 'DATA'), + ('pytz/zoneinfo/Asia/Ujung_Pandang', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Ujung_Pandang', + 'DATA'), + ('pytz/zoneinfo/America/Havana', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Havana', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+10', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+10', + 'DATA'), + ('pytz/zoneinfo/Atlantic/St_Helena', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/St_Helena', + 'DATA'), + ('pytz/zoneinfo/America/Rosario', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Rosario', + 'DATA'), + ('pytz/zoneinfo/America/Hermosillo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Hermosillo', + 'DATA'), + ('pytz/zoneinfo/Europe/Amsterdam', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Amsterdam', + 'DATA'), + ('pytz/zoneinfo/Europe/Paris', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Paris', + 'DATA'), + ('pytz/zoneinfo/America/Antigua', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Antigua', + 'DATA'), + ('pytz/zoneinfo/Pacific/Kwajalein', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Kwajalein', + 'DATA'), + ('pytz/zoneinfo/Asia/Famagusta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Famagusta', + 'DATA'), + ('pytz/zoneinfo/Asia/Kathmandu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kathmandu', + 'DATA'), + ('pytz/zoneinfo/Indian/Cocos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Cocos', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-0', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-0', + 'DATA'), + ('pytz/zoneinfo/America/Scoresbysund', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Scoresbysund', + 'DATA'), + ('pytz/zoneinfo/America/Matamoros', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Matamoros', + 'DATA'), + ('pytz/zoneinfo/Asia/Omsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Omsk', + 'DATA'), + ('pytz/zoneinfo/America/Recife', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Recife', + 'DATA'), + ('pytz/zoneinfo/Pacific/Efate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Efate', + 'DATA'), + ('pytz/zoneinfo/GMT-0', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/GMT-0', + 'DATA'), + ('pytz/zoneinfo/Brazil/Acre', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Brazil/Acre', + 'DATA'), + ('pytz/zoneinfo/Cuba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Cuba', + 'DATA'), + ('pytz/zoneinfo/Europe/Chisinau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Chisinau', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT', + 'DATA'), + ('pytz/zoneinfo/America/St_Kitts', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/St_Kitts', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Vevay', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Vevay', + 'DATA'), + ('pytz/zoneinfo/Europe/Ljubljana', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Ljubljana', + 'DATA'), + ('pytz/zoneinfo/Pacific/Guam', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Guam', + 'DATA'), + ('pytz/zoneinfo/Asia/Choibalsan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Choibalsan', + 'DATA'), + ('pytz/zoneinfo/America/Juneau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Juneau', + 'DATA'), + ('pytz/zoneinfo/Asia/Chongqing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Chongqing', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Stanley', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Stanley', + 'DATA'), + ('pytz/zoneinfo/Asia/Thimphu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Thimphu', + 'DATA'), + ('pytz/zoneinfo/Asia/Calcutta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Calcutta', + 'DATA'), + ('pytz/zoneinfo/Antarctica/South_Pole', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/South_Pole', + 'DATA'), + ('pytz/zoneinfo/Atlantic/Azores', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/Azores', + 'DATA'), + ('pytz/zoneinfo/iso3166.tab', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/iso3166.tab', + 'DATA'), + ('pytz/zoneinfo/America/Mazatlan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Mazatlan', + 'DATA'), + ('pytz/zoneinfo/America/Halifax', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Halifax', + 'DATA'), + ('pytz/zoneinfo/zonenow.tab', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/zonenow.tab', + 'DATA'), + ('pytz/zoneinfo/US/Michigan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Michigan', + 'DATA'), + ('pytz/zoneinfo/Singapore', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Singapore', + 'DATA'), + ('pytz/zoneinfo/PST8PDT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/PST8PDT', + 'DATA'), + ('pytz/zoneinfo/Asia/Novokuznetsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Novokuznetsk', + 'DATA'), + ('pytz/zoneinfo/Antarctica/Macquarie', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/Macquarie', + 'DATA'), + ('pytz/zoneinfo/America/Fortaleza', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Fortaleza', + 'DATA'), + ('pytz/zoneinfo/Asia/Atyrau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Atyrau', + 'DATA'), + ('pytz/zoneinfo/America/Toronto', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Toronto', + 'DATA'), + ('pytz/zoneinfo/Asia/Ulaanbaatar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Ulaanbaatar', + 'DATA'), + ('pytz/zoneinfo/Pacific/Wake', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Wake', + 'DATA'), + ('pytz/zoneinfo/Asia/Yangon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Yangon', + 'DATA'), + ('pytz/zoneinfo/Europe/Bratislava', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Bratislava', + 'DATA'), + ('pytz/zoneinfo/Turkey', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Turkey', + 'DATA'), + ('pytz/zoneinfo/Africa/El_Aaiun', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/El_Aaiun', + 'DATA'), + ('pytz/zoneinfo/Asia/Novosibirsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Novosibirsk', + 'DATA'), + ('pytz/zoneinfo/Canada/Central', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Central', + 'DATA'), + ('pytz/zoneinfo/Israel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Israel', + 'DATA'), + ('pytz/zoneinfo/Asia/Barnaul', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Barnaul', + 'DATA'), + ('pytz/zoneinfo/Asia/Ashkhabad', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Ashkhabad', + 'DATA'), + ('pytz/zoneinfo/Pacific/Samoa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Samoa', + 'DATA'), + ('pytz/zoneinfo/America/Rio_Branco', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Rio_Branco', + 'DATA'), + ('pytz/zoneinfo/Pacific/Auckland', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Auckland', + 'DATA'), + ('pytz/zoneinfo/America/Costa_Rica', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Costa_Rica', + 'DATA'), + ('pytz/zoneinfo/US/Mountain', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Mountain', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-12', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-12', + 'DATA'), + ('pytz/zoneinfo/Pacific/Norfolk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Norfolk', + 'DATA'), + ('pytz/zoneinfo/America/Guayaquil', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Guayaquil', + 'DATA'), + ('pytz/zoneinfo/Africa/Lome', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Lome', + 'DATA'), + ('pytz/zoneinfo/Australia/Tasmania', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Tasmania', + 'DATA'), + ('pytz/zoneinfo/Europe/Prague', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Prague', + 'DATA'), + ('pytz/zoneinfo/Europe/Oslo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Oslo', + 'DATA'), + ('pytz/zoneinfo/Asia/Singapore', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Singapore', + 'DATA'), + ('pytz/zoneinfo/America/Swift_Current', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Swift_Current', + 'DATA'), + ('pytz/zoneinfo/Asia/Aqtau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Aqtau', + 'DATA'), + ('pytz/zoneinfo/Mexico/BajaSur', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Mexico/BajaSur', + 'DATA'), + ('pytz/zoneinfo/America/Rainy_River', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Rainy_River', + 'DATA'), + ('pytz/zoneinfo/WET', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/WET', + 'DATA'), + ('pytz/zoneinfo/leapseconds', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/leapseconds', + 'DATA'), + ('pytz/zoneinfo/America/Anguilla', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Anguilla', + 'DATA'), + ('pytz/zoneinfo/America/Marigot', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Marigot', + 'DATA'), + ('pytz/zoneinfo/America/Nassau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Nassau', + 'DATA'), + ('pytz/zoneinfo/Africa/Algiers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Algiers', + 'DATA'), + ('pytz/zoneinfo/Asia/Phnom_Penh', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Phnom_Penh', + 'DATA'), + ('pytz/zoneinfo/Asia/Sakhalin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Sakhalin', + 'DATA'), + ('pytz/zoneinfo/Etc/Universal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/Universal', + 'DATA'), + ('pytz/zoneinfo/Chile/Continental', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Chile/Continental', + 'DATA'), + ('pytz/zoneinfo/Europe/Minsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Minsk', + 'DATA'), + ('pytz/zoneinfo/America/Fort_Wayne', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Fort_Wayne', + 'DATA'), + ('pytz/zoneinfo/Africa/Djibouti', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Djibouti', + 'DATA'), + ('pytz/zoneinfo/Mexico/BajaNorte', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Mexico/BajaNorte', + 'DATA'), + ('pytz/zoneinfo/America/Dawson_Creek', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Dawson_Creek', + 'DATA'), + ('pytz/zoneinfo/Pacific/Enderbury', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Enderbury', + 'DATA'), + ('pytz/zoneinfo/Africa/Gaborone', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Gaborone', + 'DATA'), + ('pytz/zoneinfo/Australia/Melbourne', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Melbourne', + 'DATA'), + ('pytz/zoneinfo/Indian/Mauritius', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Mauritius', + 'DATA'), + ('pytz/zoneinfo/America/Shiprock', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Shiprock', + 'DATA'), + ('pytz/zoneinfo/Africa/Timbuktu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Timbuktu', + 'DATA'), + ('pytz/zoneinfo/EST5EDT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/EST5EDT', + 'DATA'), + ('pytz/zoneinfo/Asia/Manila', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Manila', + 'DATA'), + ('pytz/zoneinfo/Asia/Tomsk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Tomsk', + 'DATA'), + ('pytz/zoneinfo/Africa/Windhoek', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Windhoek', + 'DATA'), + ('pytz/zoneinfo/NZ-CHAT', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/NZ-CHAT', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+1', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+1', + 'DATA'), + ('pytz/zoneinfo/America/Moncton', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Moncton', + 'DATA'), + ('pytz/zoneinfo/America/Barbados', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Barbados', + 'DATA'), + ('pytz/zoneinfo/Asia/Chita', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Chita', + 'DATA'), + ('pytz/zoneinfo/Etc/Greenwich', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/Greenwich', + 'DATA'), + ('pytz/zoneinfo/Europe/Tallinn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Tallinn', + 'DATA'), + ('pytz/zoneinfo/Europe/Isle_of_Man', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Isle_of_Man', + 'DATA'), + ('pytz/zoneinfo/America/Louisville', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Louisville', + 'DATA'), + ('pytz/zoneinfo/Asia/Almaty', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Almaty', + 'DATA'), + ('pytz/zoneinfo/NZ', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/NZ', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Rio_Gallegos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Rio_Gallegos', + 'DATA'), + ('pytz/zoneinfo/Europe/Astrakhan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Astrakhan', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-2', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-2', + 'DATA'), + ('pytz/zoneinfo/America/Jamaica', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Jamaica', + 'DATA'), + ('pytz/zoneinfo/Africa/Banjul', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Banjul', + 'DATA'), + ('pytz/zoneinfo/Indian/Reunion', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Indian/Reunion', + 'DATA'), + ('pytz/zoneinfo/Europe/Kyiv', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Kyiv', + 'DATA'), + ('pytz/zoneinfo/Africa/Porto-Novo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Porto-Novo', + 'DATA'), + ('pytz/zoneinfo/US/Eastern', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Eastern', + 'DATA'), + ('pytz/zoneinfo/America/Yellowknife', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Yellowknife', + 'DATA'), + ('pytz/zoneinfo/Asia/Anadyr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Anadyr', + 'DATA'), + ('pytz/zoneinfo/Asia/Tashkent', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Tashkent', + 'DATA'), + ('pytz/zoneinfo/America/Thule', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Thule', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+7', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+7', + 'DATA'), + ('pytz/zoneinfo/Pacific/Midway', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Midway', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Catamarca', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Catamarca', + 'DATA'), + ('pytz/zoneinfo/America/Bahia_Banderas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Bahia_Banderas', + 'DATA'), + ('pytz/zoneinfo/America/Knox_IN', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Knox_IN', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Indianapolis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Indianapolis', + 'DATA'), + ('pytz/zoneinfo/Asia/Vientiane', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Vientiane', + 'DATA'), + ('pytz/zoneinfo/Africa/Douala', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Douala', + 'DATA'), + ('pytz/zoneinfo/Canada/Pacific', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Pacific', + 'DATA'), + ('pytz/zoneinfo/America/Yakutat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Yakutat', + 'DATA'), + ('pytz/zoneinfo/Europe/Guernsey', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Guernsey', + 'DATA'), + ('pytz/zoneinfo/Brazil/West', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Brazil/West', + 'DATA'), + ('pytz/zoneinfo/Europe/Monaco', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Monaco', + 'DATA'), + ('pytz/zoneinfo/Pacific/Tahiti', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Tahiti', + 'DATA'), + ('pytz/zoneinfo/America/Jujuy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Jujuy', + 'DATA'), + ('pytz/zoneinfo/America/Punta_Arenas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Punta_Arenas', + 'DATA'), + ('pytz/zoneinfo/Europe/Luxembourg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Luxembourg', + 'DATA'), + ('pytz/zoneinfo/Europe/Belgrade', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Belgrade', + 'DATA'), + ('pytz/zoneinfo/Antarctica/DumontDUrville', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Antarctica/DumontDUrville', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+5', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+5', + 'DATA'), + ('pytz/zoneinfo/Atlantic/South_Georgia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Atlantic/South_Georgia', + 'DATA'), + ('pytz/zoneinfo/America/Montserrat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Montserrat', + 'DATA'), + ('pytz/zoneinfo/America/Guatemala', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Guatemala', + 'DATA'), + ('pytz/zoneinfo/Europe/Rome', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Rome', + 'DATA'), + ('pytz/zoneinfo/America/Cayman', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Cayman', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Marengo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Marengo', + 'DATA'), + ('pytz/zoneinfo/Africa/Harare', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Harare', + 'DATA'), + ('pytz/zoneinfo/Europe/Samara', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Samara', + 'DATA'), + ('pytz/zoneinfo/zone1970.tab', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/zone1970.tab', + 'DATA'), + ('pytz/zoneinfo/America/Buenos_Aires', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Buenos_Aires', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Ushuaia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Ushuaia', + 'DATA'), + ('pytz/zoneinfo/Australia/Eucla', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Eucla', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-4', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-4', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Salta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Salta', + 'DATA'), + ('pytz/zoneinfo/Asia/Kamchatka', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kamchatka', + 'DATA'), + ('pytz/zoneinfo/MET', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/MET', + 'DATA'), + ('pytz/zoneinfo/Pacific/Pohnpei', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Pohnpei', + 'DATA'), + ('pytz/zoneinfo/America/Blanc-Sablon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Blanc-Sablon', + 'DATA'), + ('pytz/zoneinfo/America/Cayenne', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Cayenne', + 'DATA'), + ('pytz/zoneinfo/Pacific/Marquesas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Marquesas', + 'DATA'), + ('pytz/zoneinfo/America/Noronha', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Noronha', + 'DATA'), + ('pytz/zoneinfo/Asia/Karachi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Karachi', + 'DATA'), + ('pytz/zoneinfo/Europe/Kirov', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Kirov', + 'DATA'), + ('pytz/zoneinfo/Portugal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Portugal', + 'DATA'), + ('pytz/zoneinfo/Canada/Newfoundland', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Canada/Newfoundland', + 'DATA'), + ('pytz/zoneinfo/Europe/Budapest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Budapest', + 'DATA'), + ('pytz/zoneinfo/Asia/Yekaterinburg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Yekaterinburg', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT0', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT0', + 'DATA'), + ('pytz/zoneinfo/Asia/Thimbu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Thimbu', + 'DATA'), + ('pytz/zoneinfo/Asia/Macau', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Macau', + 'DATA'), + ('pytz/zoneinfo/Asia/Bangkok', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Bangkok', + 'DATA'), + ('pytz/zoneinfo/Europe/Uzhgorod', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Uzhgorod', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-11', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-11', + 'DATA'), + ('pytz/zoneinfo/America/St_Lucia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/St_Lucia', + 'DATA'), + ('pytz/zoneinfo/Africa/Blantyre', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Blantyre', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Buenos_Aires', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Buenos_Aires', + 'DATA'), + ('pytz/zoneinfo/Asia/Hebron', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Hebron', + 'DATA'), + ('pytz/zoneinfo/Asia/Aqtobe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Aqtobe', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT+2', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT+2', + 'DATA'), + ('pytz/zoneinfo/Asia/Pontianak', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Pontianak', + 'DATA'), + ('pytz/zoneinfo/Africa/Malabo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Malabo', + 'DATA'), + ('pytz/zoneinfo/Australia/Canberra', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Canberra', + 'DATA'), + ('pytz/zoneinfo/Asia/Kuching', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kuching', + 'DATA'), + ('pytz/zoneinfo/Asia/Nicosia', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Nicosia', + 'DATA'), + ('pytz/zoneinfo/Africa/Bamako', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Bamako', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Tucuman', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Tucuman', + 'DATA'), + ('pytz/zoneinfo/America/Guadeloupe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Guadeloupe', + 'DATA'), + ('pytz/zoneinfo/Africa/Accra', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Accra', + 'DATA'), + ('pytz/zoneinfo/Asia/Kuala_Lumpur', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Kuala_Lumpur', + 'DATA'), + ('pytz/zoneinfo/Hongkong', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Hongkong', + 'DATA'), + ('pytz/zoneinfo/Australia/Perth', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Perth', + 'DATA'), + ('pytz/zoneinfo/America/Metlakatla', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Metlakatla', + 'DATA'), + ('pytz/zoneinfo/US/Samoa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Samoa', + 'DATA'), + ('pytz/zoneinfo/Asia/Jerusalem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Jerusalem', + 'DATA'), + ('pytz/zoneinfo/America/St_Johns', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/St_Johns', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-3', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-3', + 'DATA'), + ('pytz/zoneinfo/America/Belem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Belem', + 'DATA'), + ('pytz/zoneinfo/America/Nuuk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Nuuk', + 'DATA'), + ('pytz/zoneinfo/America/Panama', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Panama', + 'DATA'), + ('pytz/zoneinfo/Europe/Stockholm', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Stockholm', + 'DATA'), + ('pytz/zoneinfo/US/Pacific', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/US/Pacific', + 'DATA'), + ('pytz/zoneinfo/America/Detroit', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Detroit', + 'DATA'), + ('pytz/zoneinfo/Europe/Lisbon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Europe/Lisbon', + 'DATA'), + ('pytz/zoneinfo/EET', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/EET', + 'DATA'), + ('pytz/zoneinfo/Asia/Yerevan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Yerevan', + 'DATA'), + ('pytz/zoneinfo/Asia/Makassar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Makassar', + 'DATA'), + ('pytz/zoneinfo/America/Anchorage', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Anchorage', + 'DATA'), + ('pytz/zoneinfo/Australia/Yancowinna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Yancowinna', + 'DATA'), + ('pytz/zoneinfo/Asia/Istanbul', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Istanbul', + 'DATA'), + ('pytz/zoneinfo/Australia/Victoria', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Victoria', + 'DATA'), + ('pytz/zoneinfo/Asia/Ulan_Bator', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Ulan_Bator', + 'DATA'), + ('pytz/zoneinfo/Pacific/Galapagos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Galapagos', + 'DATA'), + ('pytz/zoneinfo/America/Pangnirtung', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Pangnirtung', + 'DATA'), + ('pytz/zoneinfo/Factory', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Factory', + 'DATA'), + ('pytz/zoneinfo/Pacific/Tongatapu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Tongatapu', + 'DATA'), + ('pytz/zoneinfo/Africa/Conakry', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Conakry', + 'DATA'), + ('pytz/zoneinfo/Africa/Khartoum', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Khartoum', + 'DATA'), + ('pytz/zoneinfo/America/Atikokan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Atikokan', + 'DATA'), + ('pytz/zoneinfo/America/Monterrey', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Monterrey', + 'DATA'), + ('pytz/zoneinfo/America/Mendoza', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Mendoza', + 'DATA'), + ('pytz/zoneinfo/America/Whitehorse', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Whitehorse', + 'DATA'), + ('pytz/zoneinfo/America/Indiana/Vincennes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Indiana/Vincennes', + 'DATA'), + ('pytz/zoneinfo/Australia/Adelaide', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Australia/Adelaide', + 'DATA'), + ('pytz/zoneinfo/Etc/GMT-7', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Etc/GMT-7', + 'DATA'), + ('pytz/zoneinfo/Africa/Bangui', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Bangui', + 'DATA'), + ('pytz/zoneinfo/Africa/Maputo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Maputo', + 'DATA'), + ('pytz/zoneinfo/Pacific/Kanton', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Kanton', + 'DATA'), + ('pytz/zoneinfo/America/Araguaina', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Araguaina', + 'DATA'), + ('pytz/zoneinfo/Pacific/Nauru', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Nauru', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/Cordoba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/Cordoba', + 'DATA'), + ('pytz/zoneinfo/America/Catamarca', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Catamarca', + 'DATA'), + ('pytz/zoneinfo/Africa/Mogadishu', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Mogadishu', + 'DATA'), + ('pytz/zoneinfo/Asia/Baghdad', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Baghdad', + 'DATA'), + ('pytz/zoneinfo/Africa/Maseru', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Africa/Maseru', + 'DATA'), + ('pytz/zoneinfo/America/Argentina/La_Rioja', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/America/Argentina/La_Rioja', + 'DATA'), + ('pytz/zoneinfo/Pacific/Saipan', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Pacific/Saipan', + 'DATA'), + ('pytz/zoneinfo/Asia/Urumqi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/zoneinfo/Asia/Urumqi', + 'DATA'), + ('pandas/io/formats/templates/string.tpl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/templates/string.tpl', + 'DATA'), + ('pandas/io/formats/templates/html_style.tpl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/templates/html_style.tpl', + 'DATA'), + ('pandas/io/formats/templates/latex.tpl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/templates/latex.tpl', + 'DATA'), + ('pandas/io/formats/templates/html.tpl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/templates/html.tpl', + 'DATA'), + ('pandas/io/formats/templates/html_table.tpl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/templates/html_table.tpl', + 'DATA'), + ('pandas/io/formats/templates/latex_longtable.tpl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/templates/latex_longtable.tpl', + 'DATA'), + ('pandas/io/formats/templates/latex_table.tpl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/templates/latex_table.tpl', + 'DATA'), + ('wheel-0.45.1.dist-info/RECORD', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel-0.45.1.dist-info/RECORD', + 'DATA'), + ('wheel-0.45.1.dist-info/entry_points.txt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel-0.45.1.dist-info/entry_points.txt', + 'DATA'), + ('wheel-0.45.1.dist-info/WHEEL', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel-0.45.1.dist-info/WHEEL', + 'DATA'), + ('wheel-0.45.1.dist-info/METADATA', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel-0.45.1.dist-info/METADATA', + 'DATA'), + ('wheel-0.45.1.dist-info/LICENSE.txt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel-0.45.1.dist-info/LICENSE.txt', + 'DATA'), + ('base_library.zip', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/build/ad_user_creator/base_library.zip', + 'DATA'), + ('libc++.dylib', 'libc++.1.0.dylib', 'SYMLINK'), + ('libc++.1.dylib', 'libc++.1.0.dylib', 'SYMLINK'), + ('libsqlite3.dylib', 'libsqlite3.0.dylib', 'SYMLINK'), + ('libgomp.dylib', 'libomp.dylib', 'SYMLINK'), + ('libreadline.8.dylib', 'libreadline.8.2.dylib', 'SYMLINK'), + ('libexpat.dylib', 'libexpat.1.10.0.dylib', 'SYMLINK'), + ('libiomp5.dylib', 'libomp.dylib', 'SYMLINK'), + ('libgfortran.dylib', 'libgfortran.5.dylib', 'SYMLINK'), + ('libformw.dylib', 'libformw.6.dylib', 'SYMLINK'), + ('libblas.dylib', 'libopenblas.dylib', 'SYMLINK'), + ('libreadline.dylib', 'libreadline.8.2.dylib', 'SYMLINK'), + ('libmenu.dylib', 'libmenuw.6.dylib', 'SYMLINK'), + ('libcrypto.dylib', 'libcrypto.3.dylib', 'SYMLINK'), + ('libhistory.8.dylib', 'libhistory.8.2.dylib', 'SYMLINK'), + ('libpanelw.dylib', 'libpanelw.6.dylib', 'SYMLINK'), + ('libcblas.dylib', 'libopenblas.dylib', 'SYMLINK'), + ('libmenuw.dylib', 'libmenuw.6.dylib', 'SYMLINK'), + ('libform.dylib', 'libformw.6.dylib', 'SYMLINK'), + ('libmenu.6.dylib', 'libmenuw.6.dylib', 'SYMLINK'), + ('libncurses.6.dylib', 'libncursesw.6.dylib', 'SYMLINK'), + ('libncursesw.dylib', 'libncursesw.6.dylib', 'SYMLINK'), + ('libncurses.dylib', 'libncursesw.6.dylib', 'SYMLINK'), + ('libpanel.dylib', 'libpanelw.6.dylib', 'SYMLINK'), + ('liblapack.dylib', 'libopenblas.dylib', 'SYMLINK'), + ('libpanel.6.dylib', 'libpanelw.6.dylib', 'SYMLINK'), + ('libssl.dylib', 'libssl.3.dylib', 'SYMLINK'), + ('libtinfow.dylib', 'libtinfow.6.dylib', 'SYMLINK'), + ('libffi.7.dylib', 'libffi.8.dylib', 'SYMLINK'), + ('libexpat.1.dylib', 'libexpat.1.10.0.dylib', 'SYMLINK'), + ('libtinfo.6.dylib', 'libtinfow.6.dylib', 'SYMLINK'), + ('libbz2.dylib', 'libbz2.1.0.8.dylib', 'SYMLINK'), + ('libz.1.dylib', 'libz.1.2.13.dylib', 'SYMLINK'), + ('liblzma.5.dylib', 'PIL/.dylibs/liblzma.5.dylib', 'SYMLINK'), + ('libhistory.dylib', 'libhistory.8.2.dylib', 'SYMLINK'), + ('libopenblas.0.dylib', 'libopenblasp-r0.3.21.dylib', 'SYMLINK'), + ('libform.6.dylib', 'libformw.6.dylib', 'SYMLINK'), + ('liblzma.dylib', 'liblzma.5.dylib', 'SYMLINK'), + ('libz.dylib', 'libz.1.2.13.dylib', 'SYMLINK'), + ('libtinfo.dylib', 'libtinfow.6.dylib', 'SYMLINK'), + ('libquadmath.dylib', 'libquadmath.0.dylib', 'SYMLINK'), + ('libgomp.1.dylib', 'libomp.dylib', 'SYMLINK'), + ('libffi.dylib', 'libffi.8.dylib', 'SYMLINK'), + ('libwebpdemux.2.dylib', 'PIL/.dylibs/libwebpdemux.2.dylib', 'SYMLINK'), + ('libwebp.7.dylib', 'PIL/.dylibs/libwebp.7.dylib', 'SYMLINK'), + ('libwebpmux.3.dylib', 'PIL/.dylibs/libwebpmux.3.dylib', 'SYMLINK'), + ('liblcms2.2.dylib', 'PIL/.dylibs/liblcms2.2.dylib', 'SYMLINK'), + ('libtiff.6.dylib', 'PIL/.dylibs/libtiff.6.dylib', 'SYMLINK'), + ('libxcb.1.1.0.dylib', 'PIL/.dylibs/libxcb.1.1.0.dylib', 'SYMLINK'), + ('libopenjp2.2.5.3.dylib', 'PIL/.dylibs/libopenjp2.2.5.3.dylib', 'SYMLINK'), + ('libjpeg.62.4.0.dylib', 'PIL/.dylibs/libjpeg.62.4.0.dylib', 'SYMLINK'), + ('libz.1.3.1.zlib-ng.dylib', + 'PIL/.dylibs/libz.1.3.1.zlib-ng.dylib', + 'SYMLINK'), + ('libsharpyuv.0.dylib', 'PIL/.dylibs/libsharpyuv.0.dylib', 'SYMLINK'), + ('libXau.6.dylib', 'PIL/.dylibs/libXau.6.dylib', 'SYMLINK')], + 'libpython3.12.dylib', + False, + False, + False, + [], + 'arm64', + None, + None) diff --git a/build/ad_user_creator/PYZ-00.pyz b/build/ad_user_creator/PYZ-00.pyz new file mode 100644 index 0000000..6de57b7 Binary files /dev/null and b/build/ad_user_creator/PYZ-00.pyz differ diff --git a/build/ad_user_creator/PYZ-00.toc b/build/ad_user_creator/PYZ-00.toc new file mode 100644 index 0000000..f34b6cb --- /dev/null +++ b/build/ad_user_creator/PYZ-00.toc @@ -0,0 +1,8019 @@ +('/Users/marsway/Workspace/Aflowx/AD-User-Creator/build/ad_user_creator/PYZ-00.pyz', + [('Crypto', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/__init__.py', + 'PYMODULE'), + ('Crypto.Hash', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/__init__.py', + 'PYMODULE'), + ('Crypto.Hash.MD4', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/MD4.py', + 'PYMODULE'), + ('Crypto.Hash.SHA1', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/SHA1.py', + 'PYMODULE'), + ('Crypto.Hash.SHA224', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/SHA224.py', + 'PYMODULE'), + ('Crypto.Hash.SHA256', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/SHA256.py', + 'PYMODULE'), + ('Crypto.Hash.SHA384', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/SHA384.py', + 'PYMODULE'), + ('Crypto.Hash.SHA3_224', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/SHA3_224.py', + 'PYMODULE'), + ('Crypto.Hash.SHA3_256', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/SHA3_256.py', + 'PYMODULE'), + ('Crypto.Hash.SHA3_384', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/SHA3_384.py', + 'PYMODULE'), + ('Crypto.Hash.SHA3_512', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/SHA3_512.py', + 'PYMODULE'), + ('Crypto.Hash.SHA512', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/SHA512.py', + 'PYMODULE'), + ('Crypto.Hash.keccak', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Hash/keccak.py', + 'PYMODULE'), + ('Crypto.Util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Util/__init__.py', + 'PYMODULE'), + ('Crypto.Util._file_system', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Util/_file_system.py', + 'PYMODULE'), + ('Crypto.Util._raw_api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Util/_raw_api.py', + 'PYMODULE'), + ('Crypto.Util.py3compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/Crypto/Util/py3compat.py', + 'PYMODULE'), + ('PIL', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/__init__.py', + 'PYMODULE'), + ('PIL.BlpImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/BlpImagePlugin.py', + 'PYMODULE'), + ('PIL.BmpImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/BmpImagePlugin.py', + 'PYMODULE'), + ('PIL.BufrStubImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/BufrStubImagePlugin.py', + 'PYMODULE'), + ('PIL.CurImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/CurImagePlugin.py', + 'PYMODULE'), + ('PIL.DcxImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/DcxImagePlugin.py', + 'PYMODULE'), + ('PIL.DdsImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/DdsImagePlugin.py', + 'PYMODULE'), + ('PIL.EpsImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/EpsImagePlugin.py', + 'PYMODULE'), + ('PIL.ExifTags', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ExifTags.py', + 'PYMODULE'), + ('PIL.FitsImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/FitsImagePlugin.py', + 'PYMODULE'), + ('PIL.FliImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/FliImagePlugin.py', + 'PYMODULE'), + ('PIL.FpxImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/FpxImagePlugin.py', + 'PYMODULE'), + ('PIL.FtexImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/FtexImagePlugin.py', + 'PYMODULE'), + ('PIL.GbrImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/GbrImagePlugin.py', + 'PYMODULE'), + ('PIL.GifImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/GifImagePlugin.py', + 'PYMODULE'), + ('PIL.GimpGradientFile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/GimpGradientFile.py', + 'PYMODULE'), + ('PIL.GimpPaletteFile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/GimpPaletteFile.py', + 'PYMODULE'), + ('PIL.GribStubImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/GribStubImagePlugin.py', + 'PYMODULE'), + ('PIL.Hdf5StubImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/Hdf5StubImagePlugin.py', + 'PYMODULE'), + ('PIL.IcnsImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/IcnsImagePlugin.py', + 'PYMODULE'), + ('PIL.IcoImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/IcoImagePlugin.py', + 'PYMODULE'), + ('PIL.ImImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImImagePlugin.py', + 'PYMODULE'), + ('PIL.Image', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/Image.py', + 'PYMODULE'), + ('PIL.ImageChops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageChops.py', + 'PYMODULE'), + ('PIL.ImageCms', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageCms.py', + 'PYMODULE'), + ('PIL.ImageColor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageColor.py', + 'PYMODULE'), + ('PIL.ImageFile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageFile.py', + 'PYMODULE'), + ('PIL.ImageFilter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageFilter.py', + 'PYMODULE'), + ('PIL.ImageMath', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageMath.py', + 'PYMODULE'), + ('PIL.ImageMode', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageMode.py', + 'PYMODULE'), + ('PIL.ImageOps', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageOps.py', + 'PYMODULE'), + ('PIL.ImagePalette', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImagePalette.py', + 'PYMODULE'), + ('PIL.ImageQt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageQt.py', + 'PYMODULE'), + ('PIL.ImageSequence', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageSequence.py', + 'PYMODULE'), + ('PIL.ImageShow', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageShow.py', + 'PYMODULE'), + ('PIL.ImageTk', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageTk.py', + 'PYMODULE'), + ('PIL.ImageWin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImageWin.py', + 'PYMODULE'), + ('PIL.ImtImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/ImtImagePlugin.py', + 'PYMODULE'), + ('PIL.IptcImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/IptcImagePlugin.py', + 'PYMODULE'), + ('PIL.Jpeg2KImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/Jpeg2KImagePlugin.py', + 'PYMODULE'), + ('PIL.JpegImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/JpegImagePlugin.py', + 'PYMODULE'), + ('PIL.JpegPresets', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/JpegPresets.py', + 'PYMODULE'), + ('PIL.McIdasImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/McIdasImagePlugin.py', + 'PYMODULE'), + ('PIL.MicImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/MicImagePlugin.py', + 'PYMODULE'), + ('PIL.MpegImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/MpegImagePlugin.py', + 'PYMODULE'), + ('PIL.MpoImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/MpoImagePlugin.py', + 'PYMODULE'), + ('PIL.MspImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/MspImagePlugin.py', + 'PYMODULE'), + ('PIL.PaletteFile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/PaletteFile.py', + 'PYMODULE'), + ('PIL.PalmImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/PalmImagePlugin.py', + 'PYMODULE'), + ('PIL.PcdImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/PcdImagePlugin.py', + 'PYMODULE'), + ('PIL.PcxImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/PcxImagePlugin.py', + 'PYMODULE'), + ('PIL.PdfImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/PdfImagePlugin.py', + 'PYMODULE'), + ('PIL.PdfParser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/PdfParser.py', + 'PYMODULE'), + ('PIL.PixarImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/PixarImagePlugin.py', + 'PYMODULE'), + ('PIL.PngImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/PngImagePlugin.py', + 'PYMODULE'), + ('PIL.PpmImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/PpmImagePlugin.py', + 'PYMODULE'), + ('PIL.PsdImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/PsdImagePlugin.py', + 'PYMODULE'), + ('PIL.QoiImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/QoiImagePlugin.py', + 'PYMODULE'), + ('PIL.SgiImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/SgiImagePlugin.py', + 'PYMODULE'), + ('PIL.SpiderImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/SpiderImagePlugin.py', + 'PYMODULE'), + ('PIL.SunImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/SunImagePlugin.py', + 'PYMODULE'), + ('PIL.TgaImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/TgaImagePlugin.py', + 'PYMODULE'), + ('PIL.TiffImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/TiffImagePlugin.py', + 'PYMODULE'), + ('PIL.TiffTags', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/TiffTags.py', + 'PYMODULE'), + ('PIL.WebPImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/WebPImagePlugin.py', + 'PYMODULE'), + ('PIL.WmfImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/WmfImagePlugin.py', + 'PYMODULE'), + ('PIL.XVThumbImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/XVThumbImagePlugin.py', + 'PYMODULE'), + ('PIL.XbmImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/XbmImagePlugin.py', + 'PYMODULE'), + ('PIL.XpmImagePlugin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/XpmImagePlugin.py', + 'PYMODULE'), + ('PIL._binary', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_binary.py', + 'PYMODULE'), + ('PIL._deprecate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_deprecate.py', + 'PYMODULE'), + ('PIL._typing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_typing.py', + 'PYMODULE'), + ('PIL._util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_util.py', + 'PYMODULE'), + ('PIL._version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_version.py', + 'PYMODULE'), + ('PIL.features', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/features.py', + 'PYMODULE'), + ('__future__', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/__future__.py', + 'PYMODULE'), + ('_aix_support', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_aix_support.py', + 'PYMODULE'), + ('_compat_pickle', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_compat_pickle.py', + 'PYMODULE'), + ('_compression', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_compression.py', + 'PYMODULE'), + ('_distutils_hack', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/_distutils_hack/__init__.py', + 'PYMODULE'), + ('_distutils_hack.override', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/_distutils_hack/override.py', + 'PYMODULE'), + ('_markupbase', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_markupbase.py', + 'PYMODULE'), + ('_osx_support', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_osx_support.py', + 'PYMODULE'), + ('_py_abc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_py_abc.py', + 'PYMODULE'), + ('_pydatetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_pydatetime.py', + 'PYMODULE'), + ('_pydecimal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_pydecimal.py', + 'PYMODULE'), + ('_sitebuiltins', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_sitebuiltins.py', + 'PYMODULE'), + ('_strptime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_strptime.py', + 'PYMODULE'), + ('_sysconfigdata__darwin_darwin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_sysconfigdata__darwin_darwin.py', + 'PYMODULE'), + ('_threading_local', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/_threading_local.py', + 'PYMODULE'), + ('ad_user_creator', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/__init__.py', + 'PYMODULE'), + ('ad_user_creator.cli', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/cli.py', + 'PYMODULE'), + ('ad_user_creator.config', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/config.py', + 'PYMODULE'), + ('ad_user_creator.exceptions', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/exceptions.py', + 'PYMODULE'), + ('ad_user_creator.input_parser', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/input_parser.py', + 'PYMODULE'), + ('ad_user_creator.interactive', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/interactive.py', + 'PYMODULE'), + ('ad_user_creator.ldap_client', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/ldap_client.py', + 'PYMODULE'), + ('ad_user_creator.logging_setup', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/logging_setup.py', + 'PYMODULE'), + ('ad_user_creator.main', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/main.py', + 'PYMODULE'), + ('ad_user_creator.models', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/models.py', + 'PYMODULE'), + ('ad_user_creator.persistence', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/persistence.py', + 'PYMODULE'), + ('ad_user_creator.user_service', + '/Users/marsway/Workspace/Aflowx/AD-User-Creator/ad_user_creator/user_service.py', + 'PYMODULE'), + ('argparse', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/argparse.py', + 'PYMODULE'), + ('ast', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ast.py', + 'PYMODULE'), + ('asyncio', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/__init__.py', + 'PYMODULE'), + ('asyncio.base_events', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/base_events.py', + 'PYMODULE'), + ('asyncio.base_futures', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/base_futures.py', + 'PYMODULE'), + ('asyncio.base_subprocess', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/base_subprocess.py', + 'PYMODULE'), + ('asyncio.base_tasks', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/base_tasks.py', + 'PYMODULE'), + ('asyncio.constants', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/constants.py', + 'PYMODULE'), + ('asyncio.coroutines', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/coroutines.py', + 'PYMODULE'), + ('asyncio.events', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/events.py', + 'PYMODULE'), + ('asyncio.exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/exceptions.py', + 'PYMODULE'), + ('asyncio.format_helpers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/format_helpers.py', + 'PYMODULE'), + ('asyncio.futures', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/futures.py', + 'PYMODULE'), + ('asyncio.locks', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/locks.py', + 'PYMODULE'), + ('asyncio.log', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/log.py', + 'PYMODULE'), + ('asyncio.mixins', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/mixins.py', + 'PYMODULE'), + ('asyncio.proactor_events', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/proactor_events.py', + 'PYMODULE'), + ('asyncio.protocols', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/protocols.py', + 'PYMODULE'), + ('asyncio.queues', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/queues.py', + 'PYMODULE'), + ('asyncio.runners', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/runners.py', + 'PYMODULE'), + ('asyncio.selector_events', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/selector_events.py', + 'PYMODULE'), + ('asyncio.sslproto', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/sslproto.py', + 'PYMODULE'), + ('asyncio.staggered', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/staggered.py', + 'PYMODULE'), + ('asyncio.streams', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/streams.py', + 'PYMODULE'), + ('asyncio.subprocess', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/subprocess.py', + 'PYMODULE'), + ('asyncio.taskgroups', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/taskgroups.py', + 'PYMODULE'), + ('asyncio.tasks', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/tasks.py', + 'PYMODULE'), + ('asyncio.threads', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/threads.py', + 'PYMODULE'), + ('asyncio.timeouts', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/timeouts.py', + 'PYMODULE'), + ('asyncio.transports', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/transports.py', + 'PYMODULE'), + ('asyncio.trsock', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/trsock.py', + 'PYMODULE'), + ('asyncio.unix_events', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/unix_events.py', + 'PYMODULE'), + ('asyncio.windows_events', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/windows_events.py', + 'PYMODULE'), + ('asyncio.windows_utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/asyncio/windows_utils.py', + 'PYMODULE'), + ('base64', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/base64.py', + 'PYMODULE'), + ('bcrypt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bcrypt/__init__.py', + 'PYMODULE'), + ('bdb', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/bdb.py', + 'PYMODULE'), + ('bisect', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/bisect.py', + 'PYMODULE'), + ('bs4', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/__init__.py', + 'PYMODULE'), + ('bs4._deprecation', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/_deprecation.py', + 'PYMODULE'), + ('bs4._typing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/_typing.py', + 'PYMODULE'), + ('bs4._warnings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/_warnings.py', + 'PYMODULE'), + ('bs4.builder', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/builder/__init__.py', + 'PYMODULE'), + ('bs4.builder._html5lib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/builder/_html5lib.py', + 'PYMODULE'), + ('bs4.builder._htmlparser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/builder/_htmlparser.py', + 'PYMODULE'), + ('bs4.builder._lxml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/builder/_lxml.py', + 'PYMODULE'), + ('bs4.css', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/css.py', + 'PYMODULE'), + ('bs4.dammit', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/dammit.py', + 'PYMODULE'), + ('bs4.element', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/element.py', + 'PYMODULE'), + ('bs4.exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/exceptions.py', + 'PYMODULE'), + ('bs4.filter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/filter.py', + 'PYMODULE'), + ('bs4.formatter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bs4/formatter.py', + 'PYMODULE'), + ('bz2', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/bz2.py', + 'PYMODULE'), + ('calendar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/calendar.py', + 'PYMODULE'), + ('cffi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/__init__.py', + 'PYMODULE'), + ('cffi._imp_emulation', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/_imp_emulation.py', + 'PYMODULE'), + ('cffi._shimmed_dist_utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/_shimmed_dist_utils.py', + 'PYMODULE'), + ('cffi.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/api.py', + 'PYMODULE'), + ('cffi.cffi_opcode', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/cffi_opcode.py', + 'PYMODULE'), + ('cffi.commontypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/commontypes.py', + 'PYMODULE'), + ('cffi.cparser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/cparser.py', + 'PYMODULE'), + ('cffi.error', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/error.py', + 'PYMODULE'), + ('cffi.ffiplatform', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/ffiplatform.py', + 'PYMODULE'), + ('cffi.lock', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/lock.py', + 'PYMODULE'), + ('cffi.model', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/model.py', + 'PYMODULE'), + ('cffi.pkgconfig', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/pkgconfig.py', + 'PYMODULE'), + ('cffi.recompiler', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/recompiler.py', + 'PYMODULE'), + ('cffi.vengine_cpy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/vengine_cpy.py', + 'PYMODULE'), + ('cffi.vengine_gen', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/vengine_gen.py', + 'PYMODULE'), + ('cffi.verifier', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cffi/verifier.py', + 'PYMODULE'), + ('cgi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/cgi.py', + 'PYMODULE'), + ('charset_normalizer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/charset_normalizer/__init__.py', + 'PYMODULE'), + ('charset_normalizer.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/charset_normalizer/api.py', + 'PYMODULE'), + ('charset_normalizer.cd', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/charset_normalizer/cd.py', + 'PYMODULE'), + ('charset_normalizer.constant', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/charset_normalizer/constant.py', + 'PYMODULE'), + ('charset_normalizer.legacy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/charset_normalizer/legacy.py', + 'PYMODULE'), + ('charset_normalizer.md', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/charset_normalizer/md.py', + 'PYMODULE'), + ('charset_normalizer.models', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/charset_normalizer/models.py', + 'PYMODULE'), + ('charset_normalizer.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/charset_normalizer/utils.py', + 'PYMODULE'), + ('charset_normalizer.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/charset_normalizer/version.py', + 'PYMODULE'), + ('cmd', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/cmd.py', + 'PYMODULE'), + ('code', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/code.py', + 'PYMODULE'), + ('codeop', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/codeop.py', + 'PYMODULE'), + ('colorsys', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/colorsys.py', + 'PYMODULE'), + ('concurrent', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/concurrent/__init__.py', + 'PYMODULE'), + ('concurrent.futures', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/concurrent/futures/__init__.py', + 'PYMODULE'), + ('concurrent.futures._base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/concurrent/futures/_base.py', + 'PYMODULE'), + ('concurrent.futures.process', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/concurrent/futures/process.py', + 'PYMODULE'), + ('concurrent.futures.thread', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/concurrent/futures/thread.py', + 'PYMODULE'), + ('configparser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/configparser.py', + 'PYMODULE'), + ('contextlib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/contextlib.py', + 'PYMODULE'), + ('contextvars', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/contextvars.py', + 'PYMODULE'), + ('copy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/copy.py', + 'PYMODULE'), + ('cryptography', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/__init__.py', + 'PYMODULE'), + ('cryptography.__about__', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/__about__.py', + 'PYMODULE'), + ('cryptography.exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/exceptions.py', + 'PYMODULE'), + ('cryptography.hazmat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/__init__.py', + 'PYMODULE'), + ('cryptography.hazmat._oid', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/_oid.py', + 'PYMODULE'), + ('cryptography.hazmat.backends', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/backends/__init__.py', + 'PYMODULE'), + ('cryptography.hazmat.backends.openssl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/backends/openssl/__init__.py', + 'PYMODULE'), + ('cryptography.hazmat.backends.openssl.backend', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/backends/openssl/backend.py', + 'PYMODULE'), + ('cryptography.hazmat.bindings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/bindings/__init__.py', + 'PYMODULE'), + ('cryptography.hazmat.bindings.openssl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/bindings/openssl/__init__.py', + 'PYMODULE'), + ('cryptography.hazmat.bindings.openssl._conditional', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/bindings/openssl/_conditional.py', + 'PYMODULE'), + ('cryptography.hazmat.bindings.openssl.binding', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/bindings/openssl/binding.py', + 'PYMODULE'), + ('cryptography.hazmat.decrepit', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/decrepit/__init__.py', + 'PYMODULE'), + ('cryptography.hazmat.decrepit.ciphers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/decrepit/ciphers/__init__.py', + 'PYMODULE'), + ('cryptography.hazmat.decrepit.ciphers.algorithms', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/decrepit/ciphers/algorithms.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/__init__.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives._asymmetric', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/_asymmetric.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives._cipheralgorithm', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/_cipheralgorithm.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives._serialization', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/_serialization.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/__init__.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric.dh', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/dh.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric.dsa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/dsa.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric.ec', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/ec.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric.ed25519', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/ed25519.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric.ed448', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/ed448.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric.padding', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/padding.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric.rsa', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/rsa.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric.types', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/types.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/utils.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric.x25519', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/x25519.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.asymmetric.x448', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/x448.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.ciphers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/ciphers/__init__.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.ciphers.algorithms', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/ciphers/algorithms.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.ciphers.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/ciphers/base.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.ciphers.modes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/ciphers/modes.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.constant_time', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/constant_time.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.hashes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/hashes.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.serialization', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/serialization/__init__.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.serialization.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/serialization/base.py', + 'PYMODULE'), + ('cryptography.hazmat.primitives.serialization.ssh', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/hazmat/primitives/serialization/ssh.py', + 'PYMODULE'), + ('cryptography.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/utils.py', + 'PYMODULE'), + ('cryptography.x509', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/x509/__init__.py', + 'PYMODULE'), + ('cryptography.x509.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/x509/base.py', + 'PYMODULE'), + ('cryptography.x509.certificate_transparency', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/x509/certificate_transparency.py', + 'PYMODULE'), + ('cryptography.x509.extensions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/x509/extensions.py', + 'PYMODULE'), + ('cryptography.x509.general_name', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/x509/general_name.py', + 'PYMODULE'), + ('cryptography.x509.name', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/x509/name.py', + 'PYMODULE'), + ('cryptography.x509.oid', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/x509/oid.py', + 'PYMODULE'), + ('cryptography.x509.verification', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cryptography/x509/verification.py', + 'PYMODULE'), + ('cssselect', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cssselect/__init__.py', + 'PYMODULE'), + ('cssselect.parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cssselect/parser.py', + 'PYMODULE'), + ('cssselect.xpath', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/cssselect/xpath.py', + 'PYMODULE'), + ('csv', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/csv.py', + 'PYMODULE'), + ('ctypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ctypes/__init__.py', + 'PYMODULE'), + ('ctypes._aix', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ctypes/_aix.py', + 'PYMODULE'), + ('ctypes._endian', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ctypes/_endian.py', + 'PYMODULE'), + ('ctypes.macholib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ctypes/macholib/__init__.py', + 'PYMODULE'), + ('ctypes.macholib.dyld', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ctypes/macholib/dyld.py', + 'PYMODULE'), + ('ctypes.macholib.dylib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ctypes/macholib/dylib.py', + 'PYMODULE'), + ('ctypes.macholib.framework', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ctypes/macholib/framework.py', + 'PYMODULE'), + ('ctypes.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ctypes/util.py', + 'PYMODULE'), + ('ctypes.wintypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ctypes/wintypes.py', + 'PYMODULE'), + ('dataclasses', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/dataclasses.py', + 'PYMODULE'), + ('datetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/datetime.py', + 'PYMODULE'), + ('dateutil', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/__init__.py', + 'PYMODULE'), + ('dateutil._common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/_common.py', + 'PYMODULE'), + ('dateutil._version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/_version.py', + 'PYMODULE'), + ('dateutil.easter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/easter.py', + 'PYMODULE'), + ('dateutil.parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/parser/__init__.py', + 'PYMODULE'), + ('dateutil.parser._parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/parser/_parser.py', + 'PYMODULE'), + ('dateutil.parser.isoparser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/parser/isoparser.py', + 'PYMODULE'), + ('dateutil.relativedelta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/relativedelta.py', + 'PYMODULE'), + ('dateutil.rrule', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/rrule.py', + 'PYMODULE'), + ('dateutil.tz', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/tz/__init__.py', + 'PYMODULE'), + ('dateutil.tz._common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/tz/_common.py', + 'PYMODULE'), + ('dateutil.tz._factories', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/tz/_factories.py', + 'PYMODULE'), + ('dateutil.tz.tz', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/tz/tz.py', + 'PYMODULE'), + ('dateutil.tz.win', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/tz/win.py', + 'PYMODULE'), + ('dateutil.zoneinfo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/dateutil/zoneinfo/__init__.py', + 'PYMODULE'), + ('decimal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/decimal.py', + 'PYMODULE'), + ('defusedxml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/defusedxml/__init__.py', + 'PYMODULE'), + ('defusedxml.ElementTree', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/defusedxml/ElementTree.py', + 'PYMODULE'), + ('defusedxml.cElementTree', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/defusedxml/cElementTree.py', + 'PYMODULE'), + ('defusedxml.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/defusedxml/common.py', + 'PYMODULE'), + ('defusedxml.expatbuilder', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/defusedxml/expatbuilder.py', + 'PYMODULE'), + ('defusedxml.expatreader', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/defusedxml/expatreader.py', + 'PYMODULE'), + ('defusedxml.minidom', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/defusedxml/minidom.py', + 'PYMODULE'), + ('defusedxml.pulldom', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/defusedxml/pulldom.py', + 'PYMODULE'), + ('defusedxml.sax', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/defusedxml/sax.py', + 'PYMODULE'), + ('defusedxml.xmlrpc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/defusedxml/xmlrpc.py', + 'PYMODULE'), + ('difflib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/difflib.py', + 'PYMODULE'), + ('dis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/dis.py', + 'PYMODULE'), + ('doctest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/doctest.py', + 'PYMODULE'), + ('email', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/__init__.py', + 'PYMODULE'), + ('email._encoded_words', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/_encoded_words.py', + 'PYMODULE'), + ('email._header_value_parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/_header_value_parser.py', + 'PYMODULE'), + ('email._parseaddr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/_parseaddr.py', + 'PYMODULE'), + ('email._policybase', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/_policybase.py', + 'PYMODULE'), + ('email.base64mime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/base64mime.py', + 'PYMODULE'), + ('email.charset', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/charset.py', + 'PYMODULE'), + ('email.contentmanager', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/contentmanager.py', + 'PYMODULE'), + ('email.encoders', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/encoders.py', + 'PYMODULE'), + ('email.errors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/errors.py', + 'PYMODULE'), + ('email.feedparser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/feedparser.py', + 'PYMODULE'), + ('email.generator', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/generator.py', + 'PYMODULE'), + ('email.header', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/header.py', + 'PYMODULE'), + ('email.headerregistry', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/headerregistry.py', + 'PYMODULE'), + ('email.iterators', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/iterators.py', + 'PYMODULE'), + ('email.message', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/message.py', + 'PYMODULE'), + ('email.parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/parser.py', + 'PYMODULE'), + ('email.policy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/policy.py', + 'PYMODULE'), + ('email.quoprimime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/quoprimime.py', + 'PYMODULE'), + ('email.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/email/utils.py', + 'PYMODULE'), + ('et_xmlfile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/et_xmlfile/__init__.py', + 'PYMODULE'), + ('et_xmlfile.xmlfile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/et_xmlfile/xmlfile.py', + 'PYMODULE'), + ('fileinput', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/fileinput.py', + 'PYMODULE'), + ('filelock', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/filelock/__init__.py', + 'PYMODULE'), + ('filelock._api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/filelock/_api.py', + 'PYMODULE'), + ('filelock._error', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/filelock/_error.py', + 'PYMODULE'), + ('filelock._soft', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/filelock/_soft.py', + 'PYMODULE'), + ('filelock._unix', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/filelock/_unix.py', + 'PYMODULE'), + ('filelock._util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/filelock/_util.py', + 'PYMODULE'), + ('filelock._windows', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/filelock/_windows.py', + 'PYMODULE'), + ('filelock.asyncio', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/filelock/asyncio.py', + 'PYMODULE'), + ('filelock.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/filelock/version.py', + 'PYMODULE'), + ('fnmatch', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/fnmatch.py', + 'PYMODULE'), + ('fractions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/fractions.py', + 'PYMODULE'), + ('ftplib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ftplib.py', + 'PYMODULE'), + ('getopt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/getopt.py', + 'PYMODULE'), + ('getpass', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/getpass.py', + 'PYMODULE'), + ('gettext', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/gettext.py', + 'PYMODULE'), + ('glob', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/glob.py', + 'PYMODULE'), + ('gzip', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/gzip.py', + 'PYMODULE'), + ('hashlib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/hashlib.py', + 'PYMODULE'), + ('hmac', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/hmac.py', + 'PYMODULE'), + ('html', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/html/__init__.py', + 'PYMODULE'), + ('html.entities', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/html/entities.py', + 'PYMODULE'), + ('html.parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/html/parser.py', + 'PYMODULE'), + ('http', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/http/__init__.py', + 'PYMODULE'), + ('http.client', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/http/client.py', + 'PYMODULE'), + ('http.cookiejar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/http/cookiejar.py', + 'PYMODULE'), + ('http.server', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/http/server.py', + 'PYMODULE'), + ('importlib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/__init__.py', + 'PYMODULE'), + ('importlib._abc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/_abc.py', + 'PYMODULE'), + ('importlib._bootstrap', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/_bootstrap.py', + 'PYMODULE'), + ('importlib._bootstrap_external', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/_bootstrap_external.py', + 'PYMODULE'), + ('importlib.abc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/abc.py', + 'PYMODULE'), + ('importlib.machinery', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/machinery.py', + 'PYMODULE'), + ('importlib.metadata', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/metadata/__init__.py', + 'PYMODULE'), + ('importlib.metadata._adapters', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/metadata/_adapters.py', + 'PYMODULE'), + ('importlib.metadata._collections', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/metadata/_collections.py', + 'PYMODULE'), + ('importlib.metadata._functools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/metadata/_functools.py', + 'PYMODULE'), + ('importlib.metadata._itertools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/metadata/_itertools.py', + 'PYMODULE'), + ('importlib.metadata._meta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/metadata/_meta.py', + 'PYMODULE'), + ('importlib.metadata._text', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/metadata/_text.py', + 'PYMODULE'), + ('importlib.readers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/readers.py', + 'PYMODULE'), + ('importlib.resources', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/resources/__init__.py', + 'PYMODULE'), + ('importlib.resources._adapters', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/resources/_adapters.py', + 'PYMODULE'), + ('importlib.resources._common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/resources/_common.py', + 'PYMODULE'), + ('importlib.resources._itertools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/resources/_itertools.py', + 'PYMODULE'), + ('importlib.resources._legacy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/resources/_legacy.py', + 'PYMODULE'), + ('importlib.resources.abc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/resources/abc.py', + 'PYMODULE'), + ('importlib.resources.readers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/resources/readers.py', + 'PYMODULE'), + ('importlib.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/importlib/util.py', + 'PYMODULE'), + ('inspect', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/inspect.py', + 'PYMODULE'), + ('ipaddress', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ipaddress.py', + 'PYMODULE'), + ('json', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/json/__init__.py', + 'PYMODULE'), + ('json.decoder', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/json/decoder.py', + 'PYMODULE'), + ('json.encoder', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/json/encoder.py', + 'PYMODULE'), + ('json.scanner', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/json/scanner.py', + 'PYMODULE'), + ('ldap3', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/__init__.py', + 'PYMODULE'), + ('ldap3.abstract', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/abstract/__init__.py', + 'PYMODULE'), + ('ldap3.abstract.attrDef', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/abstract/attrDef.py', + 'PYMODULE'), + ('ldap3.abstract.attribute', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/abstract/attribute.py', + 'PYMODULE'), + ('ldap3.abstract.cursor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/abstract/cursor.py', + 'PYMODULE'), + ('ldap3.abstract.entry', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/abstract/entry.py', + 'PYMODULE'), + ('ldap3.abstract.objectDef', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/abstract/objectDef.py', + 'PYMODULE'), + ('ldap3.core', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/core/__init__.py', + 'PYMODULE'), + ('ldap3.core.connection', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/core/connection.py', + 'PYMODULE'), + ('ldap3.core.exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/core/exceptions.py', + 'PYMODULE'), + ('ldap3.core.pooling', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/core/pooling.py', + 'PYMODULE'), + ('ldap3.core.rdns', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/core/rdns.py', + 'PYMODULE'), + ('ldap3.core.results', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/core/results.py', + 'PYMODULE'), + ('ldap3.core.server', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/core/server.py', + 'PYMODULE'), + ('ldap3.core.timezone', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/core/timezone.py', + 'PYMODULE'), + ('ldap3.core.tls', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/core/tls.py', + 'PYMODULE'), + ('ldap3.core.usage', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/core/usage.py', + 'PYMODULE'), + ('ldap3.extend', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/__init__.py', + 'PYMODULE'), + ('ldap3.extend.microsoft', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/microsoft/__init__.py', + 'PYMODULE'), + ('ldap3.extend.microsoft.addMembersToGroups', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/microsoft/addMembersToGroups.py', + 'PYMODULE'), + ('ldap3.extend.microsoft.dirSync', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/microsoft/dirSync.py', + 'PYMODULE'), + ('ldap3.extend.microsoft.modifyPassword', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/microsoft/modifyPassword.py', + 'PYMODULE'), + ('ldap3.extend.microsoft.persistentSearch', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/microsoft/persistentSearch.py', + 'PYMODULE'), + ('ldap3.extend.microsoft.removeMembersFromGroups', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/microsoft/removeMembersFromGroups.py', + 'PYMODULE'), + ('ldap3.extend.microsoft.unlockAccount', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/microsoft/unlockAccount.py', + 'PYMODULE'), + ('ldap3.extend.novell', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/__init__.py', + 'PYMODULE'), + ('ldap3.extend.novell.addMembersToGroups', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/addMembersToGroups.py', + 'PYMODULE'), + ('ldap3.extend.novell.checkGroupsMemberships', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/checkGroupsMemberships.py', + 'PYMODULE'), + ('ldap3.extend.novell.endTransaction', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/endTransaction.py', + 'PYMODULE'), + ('ldap3.extend.novell.getBindDn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/getBindDn.py', + 'PYMODULE'), + ('ldap3.extend.novell.listReplicas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/listReplicas.py', + 'PYMODULE'), + ('ldap3.extend.novell.nmasGetUniversalPassword', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/nmasGetUniversalPassword.py', + 'PYMODULE'), + ('ldap3.extend.novell.nmasSetUniversalPassword', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/nmasSetUniversalPassword.py', + 'PYMODULE'), + ('ldap3.extend.novell.partition_entry_count', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/partition_entry_count.py', + 'PYMODULE'), + ('ldap3.extend.novell.removeMembersFromGroups', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/removeMembersFromGroups.py', + 'PYMODULE'), + ('ldap3.extend.novell.replicaInfo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/replicaInfo.py', + 'PYMODULE'), + ('ldap3.extend.novell.startTransaction', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/novell/startTransaction.py', + 'PYMODULE'), + ('ldap3.extend.operation', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/operation.py', + 'PYMODULE'), + ('ldap3.extend.standard', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/standard/__init__.py', + 'PYMODULE'), + ('ldap3.extend.standard.PagedSearch', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/standard/PagedSearch.py', + 'PYMODULE'), + ('ldap3.extend.standard.PersistentSearch', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/standard/PersistentSearch.py', + 'PYMODULE'), + ('ldap3.extend.standard.modifyPassword', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/standard/modifyPassword.py', + 'PYMODULE'), + ('ldap3.extend.standard.whoAmI', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/extend/standard/whoAmI.py', + 'PYMODULE'), + ('ldap3.operation', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/operation/__init__.py', + 'PYMODULE'), + ('ldap3.operation.abandon', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/operation/abandon.py', + 'PYMODULE'), + ('ldap3.operation.add', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/operation/add.py', + 'PYMODULE'), + ('ldap3.operation.bind', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/operation/bind.py', + 'PYMODULE'), + ('ldap3.operation.compare', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/operation/compare.py', + 'PYMODULE'), + ('ldap3.operation.delete', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/operation/delete.py', + 'PYMODULE'), + ('ldap3.operation.extended', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/operation/extended.py', + 'PYMODULE'), + ('ldap3.operation.modify', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/operation/modify.py', + 'PYMODULE'), + ('ldap3.operation.modifyDn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/operation/modifyDn.py', + 'PYMODULE'), + ('ldap3.operation.search', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/operation/search.py', + 'PYMODULE'), + ('ldap3.operation.unbind', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/operation/unbind.py', + 'PYMODULE'), + ('ldap3.protocol', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/__init__.py', + 'PYMODULE'), + ('ldap3.protocol.controls', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/controls.py', + 'PYMODULE'), + ('ldap3.protocol.convert', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/convert.py', + 'PYMODULE'), + ('ldap3.protocol.formatters', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/formatters/__init__.py', + 'PYMODULE'), + ('ldap3.protocol.formatters.formatters', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/formatters/formatters.py', + 'PYMODULE'), + ('ldap3.protocol.formatters.standard', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/formatters/standard.py', + 'PYMODULE'), + ('ldap3.protocol.formatters.validators', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/formatters/validators.py', + 'PYMODULE'), + ('ldap3.protocol.microsoft', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/microsoft.py', + 'PYMODULE'), + ('ldap3.protocol.novell', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/novell.py', + 'PYMODULE'), + ('ldap3.protocol.oid', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/oid.py', + 'PYMODULE'), + ('ldap3.protocol.persistentSearch', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/persistentSearch.py', + 'PYMODULE'), + ('ldap3.protocol.rfc2696', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/rfc2696.py', + 'PYMODULE'), + ('ldap3.protocol.rfc2849', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/rfc2849.py', + 'PYMODULE'), + ('ldap3.protocol.rfc3062', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/rfc3062.py', + 'PYMODULE'), + ('ldap3.protocol.rfc4511', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/rfc4511.py', + 'PYMODULE'), + ('ldap3.protocol.rfc4512', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/rfc4512.py', + 'PYMODULE'), + ('ldap3.protocol.rfc4527', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/rfc4527.py', + 'PYMODULE'), + ('ldap3.protocol.sasl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/sasl/__init__.py', + 'PYMODULE'), + ('ldap3.protocol.sasl.digestMd5', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/sasl/digestMd5.py', + 'PYMODULE'), + ('ldap3.protocol.sasl.external', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/sasl/external.py', + 'PYMODULE'), + ('ldap3.protocol.sasl.kerberos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/sasl/kerberos.py', + 'PYMODULE'), + ('ldap3.protocol.sasl.plain', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/sasl/plain.py', + 'PYMODULE'), + ('ldap3.protocol.sasl.sasl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/sasl/sasl.py', + 'PYMODULE'), + ('ldap3.protocol.schemas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/schemas/__init__.py', + 'PYMODULE'), + ('ldap3.protocol.schemas.ad2012R2', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/schemas/ad2012R2.py', + 'PYMODULE'), + ('ldap3.protocol.schemas.ds389', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/schemas/ds389.py', + 'PYMODULE'), + ('ldap3.protocol.schemas.edir888', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/schemas/edir888.py', + 'PYMODULE'), + ('ldap3.protocol.schemas.edir914', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/schemas/edir914.py', + 'PYMODULE'), + ('ldap3.protocol.schemas.slapd24', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/protocol/schemas/slapd24.py', + 'PYMODULE'), + ('ldap3.strategy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/__init__.py', + 'PYMODULE'), + ('ldap3.strategy.asyncStream', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/asyncStream.py', + 'PYMODULE'), + ('ldap3.strategy.asynchronous', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/asynchronous.py', + 'PYMODULE'), + ('ldap3.strategy.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/base.py', + 'PYMODULE'), + ('ldap3.strategy.ldifProducer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/ldifProducer.py', + 'PYMODULE'), + ('ldap3.strategy.mockAsync', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/mockAsync.py', + 'PYMODULE'), + ('ldap3.strategy.mockBase', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/mockBase.py', + 'PYMODULE'), + ('ldap3.strategy.mockSync', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/mockSync.py', + 'PYMODULE'), + ('ldap3.strategy.restartable', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/restartable.py', + 'PYMODULE'), + ('ldap3.strategy.reusable', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/reusable.py', + 'PYMODULE'), + ('ldap3.strategy.safeRestartable', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/safeRestartable.py', + 'PYMODULE'), + ('ldap3.strategy.safeSync', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/safeSync.py', + 'PYMODULE'), + ('ldap3.strategy.sync', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/strategy/sync.py', + 'PYMODULE'), + ('ldap3.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/__init__.py', + 'PYMODULE'), + ('ldap3.utils.asn1', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/asn1.py', + 'PYMODULE'), + ('ldap3.utils.ciDict', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/ciDict.py', + 'PYMODULE'), + ('ldap3.utils.config', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/config.py', + 'PYMODULE'), + ('ldap3.utils.conv', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/conv.py', + 'PYMODULE'), + ('ldap3.utils.dn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/dn.py', + 'PYMODULE'), + ('ldap3.utils.hashed', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/hashed.py', + 'PYMODULE'), + ('ldap3.utils.log', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/log.py', + 'PYMODULE'), + ('ldap3.utils.ntlm', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/ntlm.py', + 'PYMODULE'), + ('ldap3.utils.ordDict', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/ordDict.py', + 'PYMODULE'), + ('ldap3.utils.port_validators', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/port_validators.py', + 'PYMODULE'), + ('ldap3.utils.repr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/repr.py', + 'PYMODULE'), + ('ldap3.utils.tls_backport', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/tls_backport.py', + 'PYMODULE'), + ('ldap3.utils.uri', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/utils/uri.py', + 'PYMODULE'), + ('ldap3.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/ldap3/version.py', + 'PYMODULE'), + ('logging', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/logging/__init__.py', + 'PYMODULE'), + ('lxml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/__init__.py', + 'PYMODULE'), + ('lxml.ElementInclude', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/ElementInclude.py', + 'PYMODULE'), + ('lxml.cssselect', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/cssselect.py', + 'PYMODULE'), + ('lxml.doctestcompare', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/doctestcompare.py', + 'PYMODULE'), + ('lxml.html', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/__init__.py', + 'PYMODULE'), + ('lxml.html.ElementSoup', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/ElementSoup.py', + 'PYMODULE'), + ('lxml.html._diffcommand', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/_diffcommand.py', + 'PYMODULE'), + ('lxml.html._html5builder', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/_html5builder.py', + 'PYMODULE'), + ('lxml.html._setmixin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/_setmixin.py', + 'PYMODULE'), + ('lxml.html.builder', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/builder.py', + 'PYMODULE'), + ('lxml.html.clean', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/clean.py', + 'PYMODULE'), + ('lxml.html.defs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/defs.py', + 'PYMODULE'), + ('lxml.html.formfill', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/formfill.py', + 'PYMODULE'), + ('lxml.html.html5parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/html5parser.py', + 'PYMODULE'), + ('lxml.html.soupparser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/soupparser.py', + 'PYMODULE'), + ('lxml.html.usedoctest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/usedoctest.py', + 'PYMODULE'), + ('lxml.includes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/includes/__init__.py', + 'PYMODULE'), + ('lxml.includes.extlibs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/includes/extlibs/__init__.py', + 'PYMODULE'), + ('lxml.includes.libexslt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/includes/libexslt/__init__.py', + 'PYMODULE'), + ('lxml.includes.libxml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/includes/libxml/__init__.py', + 'PYMODULE'), + ('lxml.includes.libxslt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/includes/libxslt/__init__.py', + 'PYMODULE'), + ('lxml.isoschematron', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/isoschematron/__init__.py', + 'PYMODULE'), + ('lxml.pyclasslookup', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/pyclasslookup.py', + 'PYMODULE'), + ('lxml.usedoctest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/usedoctest.py', + 'PYMODULE'), + ('lzma', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lzma.py', + 'PYMODULE'), + ('mimetypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/mimetypes.py', + 'PYMODULE'), + ('multiprocessing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/__init__.py', + 'PYMODULE'), + ('multiprocessing.connection', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/connection.py', + 'PYMODULE'), + ('multiprocessing.context', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/context.py', + 'PYMODULE'), + ('multiprocessing.dummy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/dummy/__init__.py', + 'PYMODULE'), + ('multiprocessing.dummy.connection', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/dummy/connection.py', + 'PYMODULE'), + ('multiprocessing.forkserver', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/forkserver.py', + 'PYMODULE'), + ('multiprocessing.heap', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/heap.py', + 'PYMODULE'), + ('multiprocessing.managers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/managers.py', + 'PYMODULE'), + ('multiprocessing.pool', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/pool.py', + 'PYMODULE'), + ('multiprocessing.popen_fork', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/popen_fork.py', + 'PYMODULE'), + ('multiprocessing.popen_forkserver', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/popen_forkserver.py', + 'PYMODULE'), + ('multiprocessing.popen_spawn_posix', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/popen_spawn_posix.py', + 'PYMODULE'), + ('multiprocessing.popen_spawn_win32', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/popen_spawn_win32.py', + 'PYMODULE'), + ('multiprocessing.process', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/process.py', + 'PYMODULE'), + ('multiprocessing.queues', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/queues.py', + 'PYMODULE'), + ('multiprocessing.reduction', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/reduction.py', + 'PYMODULE'), + ('multiprocessing.resource_sharer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/resource_sharer.py', + 'PYMODULE'), + ('multiprocessing.resource_tracker', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/resource_tracker.py', + 'PYMODULE'), + ('multiprocessing.shared_memory', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/shared_memory.py', + 'PYMODULE'), + ('multiprocessing.sharedctypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/sharedctypes.py', + 'PYMODULE'), + ('multiprocessing.spawn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/spawn.py', + 'PYMODULE'), + ('multiprocessing.synchronize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/synchronize.py', + 'PYMODULE'), + ('multiprocessing.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/multiprocessing/util.py', + 'PYMODULE'), + ('netrc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/netrc.py', + 'PYMODULE'), + ('nturl2path', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/nturl2path.py', + 'PYMODULE'), + ('numbers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/numbers.py', + 'PYMODULE'), + ('numexpr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numexpr/__init__.py', + 'PYMODULE'), + ('numexpr.cpuinfo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numexpr/cpuinfo.py', + 'PYMODULE'), + ('numexpr.expressions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numexpr/expressions.py', + 'PYMODULE'), + ('numexpr.necompiler', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numexpr/necompiler.py', + 'PYMODULE'), + ('numexpr.tests', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numexpr/tests/__init__.py', + 'PYMODULE'), + ('numexpr.tests.test_numexpr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numexpr/tests/test_numexpr.py', + 'PYMODULE'), + ('numexpr.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numexpr/utils.py', + 'PYMODULE'), + ('numexpr.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numexpr/version.py', + 'PYMODULE'), + ('numpy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/__init__.py', + 'PYMODULE'), + ('numpy.__config__', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/__config__.py', + 'PYMODULE'), + ('numpy._core', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/__init__.py', + 'PYMODULE'), + ('numpy._core._add_newdocs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_add_newdocs.py', + 'PYMODULE'), + ('numpy._core._add_newdocs_scalars', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_add_newdocs_scalars.py', + 'PYMODULE'), + ('numpy._core._asarray', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_asarray.py', + 'PYMODULE'), + ('numpy._core._dtype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_dtype.py', + 'PYMODULE'), + ('numpy._core._dtype_ctypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_dtype_ctypes.py', + 'PYMODULE'), + ('numpy._core._exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_exceptions.py', + 'PYMODULE'), + ('numpy._core._internal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_internal.py', + 'PYMODULE'), + ('numpy._core._machar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_machar.py', + 'PYMODULE'), + ('numpy._core._methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_methods.py', + 'PYMODULE'), + ('numpy._core._string_helpers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_string_helpers.py', + 'PYMODULE'), + ('numpy._core._type_aliases', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_type_aliases.py', + 'PYMODULE'), + ('numpy._core._ufunc_config', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_ufunc_config.py', + 'PYMODULE'), + ('numpy._core.arrayprint', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/arrayprint.py', + 'PYMODULE'), + ('numpy._core.defchararray', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/defchararray.py', + 'PYMODULE'), + ('numpy._core.einsumfunc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/einsumfunc.py', + 'PYMODULE'), + ('numpy._core.fromnumeric', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/fromnumeric.py', + 'PYMODULE'), + ('numpy._core.function_base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/function_base.py', + 'PYMODULE'), + ('numpy._core.getlimits', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/getlimits.py', + 'PYMODULE'), + ('numpy._core.memmap', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/memmap.py', + 'PYMODULE'), + ('numpy._core.multiarray', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/multiarray.py', + 'PYMODULE'), + ('numpy._core.numeric', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/numeric.py', + 'PYMODULE'), + ('numpy._core.numerictypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/numerictypes.py', + 'PYMODULE'), + ('numpy._core.overrides', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/overrides.py', + 'PYMODULE'), + ('numpy._core.records', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/records.py', + 'PYMODULE'), + ('numpy._core.shape_base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/shape_base.py', + 'PYMODULE'), + ('numpy._core.strings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/strings.py', + 'PYMODULE'), + ('numpy._core.umath', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/umath.py', + 'PYMODULE'), + ('numpy._distributor_init', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_distributor_init.py', + 'PYMODULE'), + ('numpy._expired_attrs_2_0', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_expired_attrs_2_0.py', + 'PYMODULE'), + ('numpy._globals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_globals.py', + 'PYMODULE'), + ('numpy._pytesttester', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_pytesttester.py', + 'PYMODULE'), + ('numpy._typing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_typing/__init__.py', + 'PYMODULE'), + ('numpy._typing._add_docstring', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_typing/_add_docstring.py', + 'PYMODULE'), + ('numpy._typing._array_like', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_typing/_array_like.py', + 'PYMODULE'), + ('numpy._typing._char_codes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_typing/_char_codes.py', + 'PYMODULE'), + ('numpy._typing._dtype_like', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_typing/_dtype_like.py', + 'PYMODULE'), + ('numpy._typing._nbit', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_typing/_nbit.py', + 'PYMODULE'), + ('numpy._typing._nested_sequence', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_typing/_nested_sequence.py', + 'PYMODULE'), + ('numpy._typing._scalars', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_typing/_scalars.py', + 'PYMODULE'), + ('numpy._typing._shape', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_typing/_shape.py', + 'PYMODULE'), + ('numpy._utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_utils/__init__.py', + 'PYMODULE'), + ('numpy._utils._convertions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_utils/_convertions.py', + 'PYMODULE'), + ('numpy._utils._inspect', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_utils/_inspect.py', + 'PYMODULE'), + ('numpy.char', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/char/__init__.py', + 'PYMODULE'), + ('numpy.core', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/core/__init__.py', + 'PYMODULE'), + ('numpy.core._utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/core/_utils.py', + 'PYMODULE'), + ('numpy.ctypeslib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/ctypeslib.py', + 'PYMODULE'), + ('numpy.dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/dtypes.py', + 'PYMODULE'), + ('numpy.exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/exceptions.py', + 'PYMODULE'), + ('numpy.f2py', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/__init__.py', + 'PYMODULE'), + ('numpy.f2py.__version__', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/__version__.py', + 'PYMODULE'), + ('numpy.f2py._backends', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/_backends/__init__.py', + 'PYMODULE'), + ('numpy.f2py._backends._backend', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/_backends/_backend.py', + 'PYMODULE'), + ('numpy.f2py._backends._distutils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/_backends/_distutils.py', + 'PYMODULE'), + ('numpy.f2py._backends._meson', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/_backends/_meson.py', + 'PYMODULE'), + ('numpy.f2py._isocbind', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/_isocbind.py', + 'PYMODULE'), + ('numpy.f2py.auxfuncs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/auxfuncs.py', + 'PYMODULE'), + ('numpy.f2py.capi_maps', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/capi_maps.py', + 'PYMODULE'), + ('numpy.f2py.cb_rules', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/cb_rules.py', + 'PYMODULE'), + ('numpy.f2py.cfuncs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/cfuncs.py', + 'PYMODULE'), + ('numpy.f2py.common_rules', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/common_rules.py', + 'PYMODULE'), + ('numpy.f2py.crackfortran', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/crackfortran.py', + 'PYMODULE'), + ('numpy.f2py.diagnose', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/diagnose.py', + 'PYMODULE'), + ('numpy.f2py.f2py2e', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/f2py2e.py', + 'PYMODULE'), + ('numpy.f2py.f90mod_rules', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/f90mod_rules.py', + 'PYMODULE'), + ('numpy.f2py.func2subr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/func2subr.py', + 'PYMODULE'), + ('numpy.f2py.rules', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/rules.py', + 'PYMODULE'), + ('numpy.f2py.symbolic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/symbolic.py', + 'PYMODULE'), + ('numpy.f2py.use_rules', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/f2py/use_rules.py', + 'PYMODULE'), + ('numpy.fft', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/fft/__init__.py', + 'PYMODULE'), + ('numpy.fft._helper', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/fft/_helper.py', + 'PYMODULE'), + ('numpy.fft._pocketfft', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/fft/_pocketfft.py', + 'PYMODULE'), + ('numpy.fft.helper', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/fft/helper.py', + 'PYMODULE'), + ('numpy.lib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/__init__.py', + 'PYMODULE'), + ('numpy.lib._array_utils_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_array_utils_impl.py', + 'PYMODULE'), + ('numpy.lib._arraypad_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_arraypad_impl.py', + 'PYMODULE'), + ('numpy.lib._arraysetops_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_arraysetops_impl.py', + 'PYMODULE'), + ('numpy.lib._arrayterator_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_arrayterator_impl.py', + 'PYMODULE'), + ('numpy.lib._datasource', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_datasource.py', + 'PYMODULE'), + ('numpy.lib._function_base_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_function_base_impl.py', + 'PYMODULE'), + ('numpy.lib._histograms_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_histograms_impl.py', + 'PYMODULE'), + ('numpy.lib._index_tricks_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_index_tricks_impl.py', + 'PYMODULE'), + ('numpy.lib._iotools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_iotools.py', + 'PYMODULE'), + ('numpy.lib._nanfunctions_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_nanfunctions_impl.py', + 'PYMODULE'), + ('numpy.lib._npyio_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_npyio_impl.py', + 'PYMODULE'), + ('numpy.lib._polynomial_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_polynomial_impl.py', + 'PYMODULE'), + ('numpy.lib._scimath_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_scimath_impl.py', + 'PYMODULE'), + ('numpy.lib._shape_base_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_shape_base_impl.py', + 'PYMODULE'), + ('numpy.lib._stride_tricks_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_stride_tricks_impl.py', + 'PYMODULE'), + ('numpy.lib._twodim_base_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_twodim_base_impl.py', + 'PYMODULE'), + ('numpy.lib._type_check_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_type_check_impl.py', + 'PYMODULE'), + ('numpy.lib._ufunclike_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_ufunclike_impl.py', + 'PYMODULE'), + ('numpy.lib._utils_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_utils_impl.py', + 'PYMODULE'), + ('numpy.lib._version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/_version.py', + 'PYMODULE'), + ('numpy.lib.array_utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/array_utils.py', + 'PYMODULE'), + ('numpy.lib.format', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/format.py', + 'PYMODULE'), + ('numpy.lib.introspect', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/introspect.py', + 'PYMODULE'), + ('numpy.lib.mixins', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/mixins.py', + 'PYMODULE'), + ('numpy.lib.npyio', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/npyio.py', + 'PYMODULE'), + ('numpy.lib.recfunctions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/recfunctions.py', + 'PYMODULE'), + ('numpy.lib.scimath', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/scimath.py', + 'PYMODULE'), + ('numpy.lib.stride_tricks', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/lib/stride_tricks.py', + 'PYMODULE'), + ('numpy.linalg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/linalg/__init__.py', + 'PYMODULE'), + ('numpy.linalg._linalg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/linalg/_linalg.py', + 'PYMODULE'), + ('numpy.linalg.linalg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/linalg/linalg.py', + 'PYMODULE'), + ('numpy.ma', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/ma/__init__.py', + 'PYMODULE'), + ('numpy.ma.core', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/ma/core.py', + 'PYMODULE'), + ('numpy.ma.extras', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/ma/extras.py', + 'PYMODULE'), + ('numpy.ma.mrecords', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/ma/mrecords.py', + 'PYMODULE'), + ('numpy.matlib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/matlib.py', + 'PYMODULE'), + ('numpy.matrixlib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/matrixlib/__init__.py', + 'PYMODULE'), + ('numpy.matrixlib.defmatrix', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/matrixlib/defmatrix.py', + 'PYMODULE'), + ('numpy.polynomial', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/polynomial/__init__.py', + 'PYMODULE'), + ('numpy.polynomial._polybase', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/polynomial/_polybase.py', + 'PYMODULE'), + ('numpy.polynomial.chebyshev', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/polynomial/chebyshev.py', + 'PYMODULE'), + ('numpy.polynomial.hermite', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/polynomial/hermite.py', + 'PYMODULE'), + ('numpy.polynomial.hermite_e', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/polynomial/hermite_e.py', + 'PYMODULE'), + ('numpy.polynomial.laguerre', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/polynomial/laguerre.py', + 'PYMODULE'), + ('numpy.polynomial.legendre', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/polynomial/legendre.py', + 'PYMODULE'), + ('numpy.polynomial.polynomial', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/polynomial/polynomial.py', + 'PYMODULE'), + ('numpy.polynomial.polyutils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/polynomial/polyutils.py', + 'PYMODULE'), + ('numpy.random', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/__init__.py', + 'PYMODULE'), + ('numpy.random._pickle', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_pickle.py', + 'PYMODULE'), + ('numpy.rec', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/rec/__init__.py', + 'PYMODULE'), + ('numpy.strings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/strings/__init__.py', + 'PYMODULE'), + ('numpy.testing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/testing/__init__.py', + 'PYMODULE'), + ('numpy.testing._private', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/testing/_private/__init__.py', + 'PYMODULE'), + ('numpy.testing._private.extbuild', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/testing/_private/extbuild.py', + 'PYMODULE'), + ('numpy.testing._private.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/testing/_private/utils.py', + 'PYMODULE'), + ('numpy.testing.overrides', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/testing/overrides.py', + 'PYMODULE'), + ('numpy.typing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/typing/__init__.py', + 'PYMODULE'), + ('numpy.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/version.py', + 'PYMODULE'), + ('olefile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/olefile/__init__.py', + 'PYMODULE'), + ('olefile.olefile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/olefile/olefile.py', + 'PYMODULE'), + ('opcode', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/opcode.py', + 'PYMODULE'), + ('openpyxl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/__init__.py', + 'PYMODULE'), + ('openpyxl._constants', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/_constants.py', + 'PYMODULE'), + ('openpyxl.cell', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/cell/__init__.py', + 'PYMODULE'), + ('openpyxl.cell._writer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/cell/_writer.py', + 'PYMODULE'), + ('openpyxl.cell.cell', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/cell/cell.py', + 'PYMODULE'), + ('openpyxl.cell.read_only', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/cell/read_only.py', + 'PYMODULE'), + ('openpyxl.cell.rich_text', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/cell/rich_text.py', + 'PYMODULE'), + ('openpyxl.cell.text', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/cell/text.py', + 'PYMODULE'), + ('openpyxl.chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/__init__.py', + 'PYMODULE'), + ('openpyxl.chart._3d', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/_3d.py', + 'PYMODULE'), + ('openpyxl.chart._chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/_chart.py', + 'PYMODULE'), + ('openpyxl.chart.area_chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/area_chart.py', + 'PYMODULE'), + ('openpyxl.chart.axis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/axis.py', + 'PYMODULE'), + ('openpyxl.chart.bar_chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/bar_chart.py', + 'PYMODULE'), + ('openpyxl.chart.bubble_chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/bubble_chart.py', + 'PYMODULE'), + ('openpyxl.chart.chartspace', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/chartspace.py', + 'PYMODULE'), + ('openpyxl.chart.data_source', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/data_source.py', + 'PYMODULE'), + ('openpyxl.chart.descriptors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/descriptors.py', + 'PYMODULE'), + ('openpyxl.chart.error_bar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/error_bar.py', + 'PYMODULE'), + ('openpyxl.chart.label', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/label.py', + 'PYMODULE'), + ('openpyxl.chart.layout', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/layout.py', + 'PYMODULE'), + ('openpyxl.chart.legend', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/legend.py', + 'PYMODULE'), + ('openpyxl.chart.line_chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/line_chart.py', + 'PYMODULE'), + ('openpyxl.chart.marker', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/marker.py', + 'PYMODULE'), + ('openpyxl.chart.picture', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/picture.py', + 'PYMODULE'), + ('openpyxl.chart.pie_chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/pie_chart.py', + 'PYMODULE'), + ('openpyxl.chart.pivot', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/pivot.py', + 'PYMODULE'), + ('openpyxl.chart.plotarea', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/plotarea.py', + 'PYMODULE'), + ('openpyxl.chart.print_settings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/print_settings.py', + 'PYMODULE'), + ('openpyxl.chart.radar_chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/radar_chart.py', + 'PYMODULE'), + ('openpyxl.chart.reader', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/reader.py', + 'PYMODULE'), + ('openpyxl.chart.reference', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/reference.py', + 'PYMODULE'), + ('openpyxl.chart.scatter_chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/scatter_chart.py', + 'PYMODULE'), + ('openpyxl.chart.series', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/series.py', + 'PYMODULE'), + ('openpyxl.chart.series_factory', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/series_factory.py', + 'PYMODULE'), + ('openpyxl.chart.shapes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/shapes.py', + 'PYMODULE'), + ('openpyxl.chart.stock_chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/stock_chart.py', + 'PYMODULE'), + ('openpyxl.chart.surface_chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/surface_chart.py', + 'PYMODULE'), + ('openpyxl.chart.text', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/text.py', + 'PYMODULE'), + ('openpyxl.chart.title', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/title.py', + 'PYMODULE'), + ('openpyxl.chart.trendline', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/trendline.py', + 'PYMODULE'), + ('openpyxl.chart.updown_bars', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chart/updown_bars.py', + 'PYMODULE'), + ('openpyxl.chartsheet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chartsheet/__init__.py', + 'PYMODULE'), + ('openpyxl.chartsheet.chartsheet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chartsheet/chartsheet.py', + 'PYMODULE'), + ('openpyxl.chartsheet.custom', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chartsheet/custom.py', + 'PYMODULE'), + ('openpyxl.chartsheet.properties', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chartsheet/properties.py', + 'PYMODULE'), + ('openpyxl.chartsheet.protection', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chartsheet/protection.py', + 'PYMODULE'), + ('openpyxl.chartsheet.publish', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chartsheet/publish.py', + 'PYMODULE'), + ('openpyxl.chartsheet.relation', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chartsheet/relation.py', + 'PYMODULE'), + ('openpyxl.chartsheet.views', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/chartsheet/views.py', + 'PYMODULE'), + ('openpyxl.comments', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/comments/__init__.py', + 'PYMODULE'), + ('openpyxl.comments.author', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/comments/author.py', + 'PYMODULE'), + ('openpyxl.comments.comment_sheet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/comments/comment_sheet.py', + 'PYMODULE'), + ('openpyxl.comments.comments', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/comments/comments.py', + 'PYMODULE'), + ('openpyxl.comments.shape_writer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/comments/shape_writer.py', + 'PYMODULE'), + ('openpyxl.compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/compat/__init__.py', + 'PYMODULE'), + ('openpyxl.compat.abc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/compat/abc.py', + 'PYMODULE'), + ('openpyxl.compat.numbers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/compat/numbers.py', + 'PYMODULE'), + ('openpyxl.compat.product', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/compat/product.py', + 'PYMODULE'), + ('openpyxl.compat.singleton', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/compat/singleton.py', + 'PYMODULE'), + ('openpyxl.compat.strings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/compat/strings.py', + 'PYMODULE'), + ('openpyxl.descriptors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/descriptors/__init__.py', + 'PYMODULE'), + ('openpyxl.descriptors.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/descriptors/base.py', + 'PYMODULE'), + ('openpyxl.descriptors.container', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/descriptors/container.py', + 'PYMODULE'), + ('openpyxl.descriptors.excel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/descriptors/excel.py', + 'PYMODULE'), + ('openpyxl.descriptors.namespace', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/descriptors/namespace.py', + 'PYMODULE'), + ('openpyxl.descriptors.nested', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/descriptors/nested.py', + 'PYMODULE'), + ('openpyxl.descriptors.sequence', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/descriptors/sequence.py', + 'PYMODULE'), + ('openpyxl.descriptors.serialisable', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/descriptors/serialisable.py', + 'PYMODULE'), + ('openpyxl.descriptors.slots', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/descriptors/slots.py', + 'PYMODULE'), + ('openpyxl.drawing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/__init__.py', + 'PYMODULE'), + ('openpyxl.drawing.colors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/colors.py', + 'PYMODULE'), + ('openpyxl.drawing.connector', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/connector.py', + 'PYMODULE'), + ('openpyxl.drawing.drawing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/drawing.py', + 'PYMODULE'), + ('openpyxl.drawing.effect', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/effect.py', + 'PYMODULE'), + ('openpyxl.drawing.fill', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/fill.py', + 'PYMODULE'), + ('openpyxl.drawing.geometry', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/geometry.py', + 'PYMODULE'), + ('openpyxl.drawing.graphic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/graphic.py', + 'PYMODULE'), + ('openpyxl.drawing.image', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/image.py', + 'PYMODULE'), + ('openpyxl.drawing.line', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/line.py', + 'PYMODULE'), + ('openpyxl.drawing.picture', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/picture.py', + 'PYMODULE'), + ('openpyxl.drawing.properties', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/properties.py', + 'PYMODULE'), + ('openpyxl.drawing.relation', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/relation.py', + 'PYMODULE'), + ('openpyxl.drawing.spreadsheet_drawing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/spreadsheet_drawing.py', + 'PYMODULE'), + ('openpyxl.drawing.text', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/text.py', + 'PYMODULE'), + ('openpyxl.drawing.xdr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/drawing/xdr.py', + 'PYMODULE'), + ('openpyxl.formatting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/formatting/__init__.py', + 'PYMODULE'), + ('openpyxl.formatting.formatting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/formatting/formatting.py', + 'PYMODULE'), + ('openpyxl.formatting.rule', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/formatting/rule.py', + 'PYMODULE'), + ('openpyxl.formula', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/formula/__init__.py', + 'PYMODULE'), + ('openpyxl.formula.tokenizer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/formula/tokenizer.py', + 'PYMODULE'), + ('openpyxl.formula.translate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/formula/translate.py', + 'PYMODULE'), + ('openpyxl.packaging', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/packaging/__init__.py', + 'PYMODULE'), + ('openpyxl.packaging.core', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/packaging/core.py', + 'PYMODULE'), + ('openpyxl.packaging.custom', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/packaging/custom.py', + 'PYMODULE'), + ('openpyxl.packaging.extended', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/packaging/extended.py', + 'PYMODULE'), + ('openpyxl.packaging.interface', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/packaging/interface.py', + 'PYMODULE'), + ('openpyxl.packaging.manifest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/packaging/manifest.py', + 'PYMODULE'), + ('openpyxl.packaging.relationship', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/packaging/relationship.py', + 'PYMODULE'), + ('openpyxl.packaging.workbook', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/packaging/workbook.py', + 'PYMODULE'), + ('openpyxl.pivot', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/pivot/__init__.py', + 'PYMODULE'), + ('openpyxl.pivot.cache', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/pivot/cache.py', + 'PYMODULE'), + ('openpyxl.pivot.fields', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/pivot/fields.py', + 'PYMODULE'), + ('openpyxl.pivot.record', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/pivot/record.py', + 'PYMODULE'), + ('openpyxl.pivot.table', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/pivot/table.py', + 'PYMODULE'), + ('openpyxl.reader', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/reader/__init__.py', + 'PYMODULE'), + ('openpyxl.reader.drawings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/reader/drawings.py', + 'PYMODULE'), + ('openpyxl.reader.excel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/reader/excel.py', + 'PYMODULE'), + ('openpyxl.reader.strings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/reader/strings.py', + 'PYMODULE'), + ('openpyxl.reader.workbook', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/reader/workbook.py', + 'PYMODULE'), + ('openpyxl.styles', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/__init__.py', + 'PYMODULE'), + ('openpyxl.styles.alignment', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/alignment.py', + 'PYMODULE'), + ('openpyxl.styles.borders', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/borders.py', + 'PYMODULE'), + ('openpyxl.styles.builtins', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/builtins.py', + 'PYMODULE'), + ('openpyxl.styles.cell_style', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/cell_style.py', + 'PYMODULE'), + ('openpyxl.styles.colors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/colors.py', + 'PYMODULE'), + ('openpyxl.styles.differential', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/differential.py', + 'PYMODULE'), + ('openpyxl.styles.fills', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/fills.py', + 'PYMODULE'), + ('openpyxl.styles.fonts', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/fonts.py', + 'PYMODULE'), + ('openpyxl.styles.named_styles', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/named_styles.py', + 'PYMODULE'), + ('openpyxl.styles.numbers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/numbers.py', + 'PYMODULE'), + ('openpyxl.styles.protection', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/protection.py', + 'PYMODULE'), + ('openpyxl.styles.proxy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/proxy.py', + 'PYMODULE'), + ('openpyxl.styles.styleable', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/styleable.py', + 'PYMODULE'), + ('openpyxl.styles.stylesheet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/stylesheet.py', + 'PYMODULE'), + ('openpyxl.styles.table', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/styles/table.py', + 'PYMODULE'), + ('openpyxl.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/__init__.py', + 'PYMODULE'), + ('openpyxl.utils.bound_dictionary', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/bound_dictionary.py', + 'PYMODULE'), + ('openpyxl.utils.dataframe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/dataframe.py', + 'PYMODULE'), + ('openpyxl.utils.datetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/datetime.py', + 'PYMODULE'), + ('openpyxl.utils.escape', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/escape.py', + 'PYMODULE'), + ('openpyxl.utils.exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/exceptions.py', + 'PYMODULE'), + ('openpyxl.utils.formulas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/formulas.py', + 'PYMODULE'), + ('openpyxl.utils.indexed_list', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/indexed_list.py', + 'PYMODULE'), + ('openpyxl.utils.inference', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/inference.py', + 'PYMODULE'), + ('openpyxl.utils.protection', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/protection.py', + 'PYMODULE'), + ('openpyxl.utils.units', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/units.py', + 'PYMODULE'), + ('openpyxl.workbook', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/__init__.py', + 'PYMODULE'), + ('openpyxl.workbook._writer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/_writer.py', + 'PYMODULE'), + ('openpyxl.workbook.child', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/child.py', + 'PYMODULE'), + ('openpyxl.workbook.defined_name', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/defined_name.py', + 'PYMODULE'), + ('openpyxl.workbook.external_link', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/external_link/__init__.py', + 'PYMODULE'), + ('openpyxl.workbook.external_link.external', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/external_link/external.py', + 'PYMODULE'), + ('openpyxl.workbook.external_reference', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/external_reference.py', + 'PYMODULE'), + ('openpyxl.workbook.function_group', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/function_group.py', + 'PYMODULE'), + ('openpyxl.workbook.properties', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/properties.py', + 'PYMODULE'), + ('openpyxl.workbook.protection', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/protection.py', + 'PYMODULE'), + ('openpyxl.workbook.smart_tags', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/smart_tags.py', + 'PYMODULE'), + ('openpyxl.workbook.views', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/views.py', + 'PYMODULE'), + ('openpyxl.workbook.web', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/web.py', + 'PYMODULE'), + ('openpyxl.workbook.workbook', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/workbook/workbook.py', + 'PYMODULE'), + ('openpyxl.worksheet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/__init__.py', + 'PYMODULE'), + ('openpyxl.worksheet._read_only', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/_read_only.py', + 'PYMODULE'), + ('openpyxl.worksheet._write_only', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/_write_only.py', + 'PYMODULE'), + ('openpyxl.worksheet.cell_range', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/cell_range.py', + 'PYMODULE'), + ('openpyxl.worksheet.cell_watch', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/cell_watch.py', + 'PYMODULE'), + ('openpyxl.worksheet.controls', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/controls.py', + 'PYMODULE'), + ('openpyxl.worksheet.copier', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/copier.py', + 'PYMODULE'), + ('openpyxl.worksheet.custom', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/custom.py', + 'PYMODULE'), + ('openpyxl.worksheet.datavalidation', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/datavalidation.py', + 'PYMODULE'), + ('openpyxl.worksheet.dimensions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/dimensions.py', + 'PYMODULE'), + ('openpyxl.worksheet.drawing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/drawing.py', + 'PYMODULE'), + ('openpyxl.worksheet.errors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/errors.py', + 'PYMODULE'), + ('openpyxl.worksheet.filters', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/filters.py', + 'PYMODULE'), + ('openpyxl.worksheet.formula', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/formula.py', + 'PYMODULE'), + ('openpyxl.worksheet.header_footer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/header_footer.py', + 'PYMODULE'), + ('openpyxl.worksheet.hyperlink', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/hyperlink.py', + 'PYMODULE'), + ('openpyxl.worksheet.merge', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/merge.py', + 'PYMODULE'), + ('openpyxl.worksheet.ole', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/ole.py', + 'PYMODULE'), + ('openpyxl.worksheet.page', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/page.py', + 'PYMODULE'), + ('openpyxl.worksheet.pagebreak', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/pagebreak.py', + 'PYMODULE'), + ('openpyxl.worksheet.picture', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/picture.py', + 'PYMODULE'), + ('openpyxl.worksheet.print_settings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/print_settings.py', + 'PYMODULE'), + ('openpyxl.worksheet.properties', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/properties.py', + 'PYMODULE'), + ('openpyxl.worksheet.protection', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/protection.py', + 'PYMODULE'), + ('openpyxl.worksheet.related', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/related.py', + 'PYMODULE'), + ('openpyxl.worksheet.scenario', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/scenario.py', + 'PYMODULE'), + ('openpyxl.worksheet.smart_tag', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/smart_tag.py', + 'PYMODULE'), + ('openpyxl.worksheet.table', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/table.py', + 'PYMODULE'), + ('openpyxl.worksheet.views', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/views.py', + 'PYMODULE'), + ('openpyxl.worksheet.worksheet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/worksheet.py', + 'PYMODULE'), + ('openpyxl.writer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/writer/__init__.py', + 'PYMODULE'), + ('openpyxl.writer.excel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/writer/excel.py', + 'PYMODULE'), + ('openpyxl.writer.theme', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/writer/theme.py', + 'PYMODULE'), + ('openpyxl.xml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/xml/__init__.py', + 'PYMODULE'), + ('openpyxl.xml.constants', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/xml/constants.py', + 'PYMODULE'), + ('openpyxl.xml.functions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/xml/functions.py', + 'PYMODULE'), + ('optparse', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/optparse.py', + 'PYMODULE'), + ('packaging', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/__init__.py', + 'PYMODULE'), + ('packaging._elffile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/_elffile.py', + 'PYMODULE'), + ('packaging._manylinux', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/_manylinux.py', + 'PYMODULE'), + ('packaging._musllinux', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/_musllinux.py', + 'PYMODULE'), + ('packaging._parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/_parser.py', + 'PYMODULE'), + ('packaging._structures', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/_structures.py', + 'PYMODULE'), + ('packaging._tokenizer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/_tokenizer.py', + 'PYMODULE'), + ('packaging.licenses', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/licenses/__init__.py', + 'PYMODULE'), + ('packaging.licenses._spdx', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/licenses/_spdx.py', + 'PYMODULE'), + ('packaging.markers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/markers.py', + 'PYMODULE'), + ('packaging.metadata', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/metadata.py', + 'PYMODULE'), + ('packaging.requirements', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/requirements.py', + 'PYMODULE'), + ('packaging.specifiers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/specifiers.py', + 'PYMODULE'), + ('packaging.tags', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/tags.py', + 'PYMODULE'), + ('packaging.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/utils.py', + 'PYMODULE'), + ('packaging.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/packaging/version.py', + 'PYMODULE'), + ('pandas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/__init__.py', + 'PYMODULE'), + ('pandas._config', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_config/__init__.py', + 'PYMODULE'), + ('pandas._config.config', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_config/config.py', + 'PYMODULE'), + ('pandas._config.dates', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_config/dates.py', + 'PYMODULE'), + ('pandas._config.display', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_config/display.py', + 'PYMODULE'), + ('pandas._config.localization', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_config/localization.py', + 'PYMODULE'), + ('pandas._libs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/__init__.py', + 'PYMODULE'), + ('pandas._libs.tslibs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/__init__.py', + 'PYMODULE'), + ('pandas._libs.window', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/window/__init__.py', + 'PYMODULE'), + ('pandas._testing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_testing/__init__.py', + 'PYMODULE'), + ('pandas._testing._hypothesis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_testing/_hypothesis.py', + 'PYMODULE'), + ('pandas._testing._io', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_testing/_io.py', + 'PYMODULE'), + ('pandas._testing._warnings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_testing/_warnings.py', + 'PYMODULE'), + ('pandas._testing.asserters', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_testing/asserters.py', + 'PYMODULE'), + ('pandas._testing.compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_testing/compat.py', + 'PYMODULE'), + ('pandas._testing.contexts', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_testing/contexts.py', + 'PYMODULE'), + ('pandas._typing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_typing.py', + 'PYMODULE'), + ('pandas._version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_version.py', + 'PYMODULE'), + ('pandas._version_meson', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_version_meson.py', + 'PYMODULE'), + ('pandas.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/api/__init__.py', + 'PYMODULE'), + ('pandas.api.extensions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/api/extensions/__init__.py', + 'PYMODULE'), + ('pandas.api.indexers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/api/indexers/__init__.py', + 'PYMODULE'), + ('pandas.api.interchange', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/api/interchange/__init__.py', + 'PYMODULE'), + ('pandas.api.types', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/api/types/__init__.py', + 'PYMODULE'), + ('pandas.api.typing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/api/typing/__init__.py', + 'PYMODULE'), + ('pandas.arrays', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/arrays/__init__.py', + 'PYMODULE'), + ('pandas.compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/compat/__init__.py', + 'PYMODULE'), + ('pandas.compat._constants', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/compat/_constants.py', + 'PYMODULE'), + ('pandas.compat._optional', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/compat/_optional.py', + 'PYMODULE'), + ('pandas.compat.compressors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/compat/compressors.py', + 'PYMODULE'), + ('pandas.compat.numpy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/compat/numpy/__init__.py', + 'PYMODULE'), + ('pandas.compat.numpy.function', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/compat/numpy/function.py', + 'PYMODULE'), + ('pandas.compat.pickle_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/compat/pickle_compat.py', + 'PYMODULE'), + ('pandas.compat.pyarrow', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/compat/pyarrow.py', + 'PYMODULE'), + ('pandas.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/conftest.py', + 'PYMODULE'), + ('pandas.core', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/__init__.py', + 'PYMODULE'), + ('pandas.core._numba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/_numba/__init__.py', + 'PYMODULE'), + ('pandas.core._numba.executor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/_numba/executor.py', + 'PYMODULE'), + ('pandas.core._numba.extensions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/_numba/extensions.py', + 'PYMODULE'), + ('pandas.core._numba.kernels', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/_numba/kernels/__init__.py', + 'PYMODULE'), + ('pandas.core._numba.kernels.mean_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/_numba/kernels/mean_.py', + 'PYMODULE'), + ('pandas.core._numba.kernels.min_max_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/_numba/kernels/min_max_.py', + 'PYMODULE'), + ('pandas.core._numba.kernels.shared', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/_numba/kernels/shared.py', + 'PYMODULE'), + ('pandas.core._numba.kernels.sum_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/_numba/kernels/sum_.py', + 'PYMODULE'), + ('pandas.core._numba.kernels.var_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/_numba/kernels/var_.py', + 'PYMODULE'), + ('pandas.core.accessor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/accessor.py', + 'PYMODULE'), + ('pandas.core.algorithms', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/algorithms.py', + 'PYMODULE'), + ('pandas.core.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/api.py', + 'PYMODULE'), + ('pandas.core.apply', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/apply.py', + 'PYMODULE'), + ('pandas.core.array_algos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/array_algos/__init__.py', + 'PYMODULE'), + ('pandas.core.array_algos.datetimelike_accumulations', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/array_algos/datetimelike_accumulations.py', + 'PYMODULE'), + ('pandas.core.array_algos.masked_accumulations', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/array_algos/masked_accumulations.py', + 'PYMODULE'), + ('pandas.core.array_algos.masked_reductions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/array_algos/masked_reductions.py', + 'PYMODULE'), + ('pandas.core.array_algos.putmask', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/array_algos/putmask.py', + 'PYMODULE'), + ('pandas.core.array_algos.quantile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/array_algos/quantile.py', + 'PYMODULE'), + ('pandas.core.array_algos.replace', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/array_algos/replace.py', + 'PYMODULE'), + ('pandas.core.array_algos.take', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/array_algos/take.py', + 'PYMODULE'), + ('pandas.core.array_algos.transforms', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/array_algos/transforms.py', + 'PYMODULE'), + ('pandas.core.arraylike', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arraylike.py', + 'PYMODULE'), + ('pandas.core.arrays', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/__init__.py', + 'PYMODULE'), + ('pandas.core.arrays._arrow_string_mixins', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/_arrow_string_mixins.py', + 'PYMODULE'), + ('pandas.core.arrays._mixins', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/_mixins.py', + 'PYMODULE'), + ('pandas.core.arrays._ranges', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/_ranges.py', + 'PYMODULE'), + ('pandas.core.arrays._utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/_utils.py', + 'PYMODULE'), + ('pandas.core.arrays.arrow', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/arrow/__init__.py', + 'PYMODULE'), + ('pandas.core.arrays.arrow._arrow_utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/arrow/_arrow_utils.py', + 'PYMODULE'), + ('pandas.core.arrays.arrow.accessors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/arrow/accessors.py', + 'PYMODULE'), + ('pandas.core.arrays.arrow.array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/arrow/array.py', + 'PYMODULE'), + ('pandas.core.arrays.arrow.extension_types', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/arrow/extension_types.py', + 'PYMODULE'), + ('pandas.core.arrays.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/base.py', + 'PYMODULE'), + ('pandas.core.arrays.boolean', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/boolean.py', + 'PYMODULE'), + ('pandas.core.arrays.categorical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/categorical.py', + 'PYMODULE'), + ('pandas.core.arrays.datetimelike', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/datetimelike.py', + 'PYMODULE'), + ('pandas.core.arrays.datetimes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/datetimes.py', + 'PYMODULE'), + ('pandas.core.arrays.floating', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/floating.py', + 'PYMODULE'), + ('pandas.core.arrays.integer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/integer.py', + 'PYMODULE'), + ('pandas.core.arrays.interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/interval.py', + 'PYMODULE'), + ('pandas.core.arrays.masked', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/masked.py', + 'PYMODULE'), + ('pandas.core.arrays.numeric', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/numeric.py', + 'PYMODULE'), + ('pandas.core.arrays.numpy_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/numpy_.py', + 'PYMODULE'), + ('pandas.core.arrays.period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/period.py', + 'PYMODULE'), + ('pandas.core.arrays.sparse', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/sparse/__init__.py', + 'PYMODULE'), + ('pandas.core.arrays.sparse.accessor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/sparse/accessor.py', + 'PYMODULE'), + ('pandas.core.arrays.sparse.array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/sparse/array.py', + 'PYMODULE'), + ('pandas.core.arrays.sparse.scipy_sparse', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/sparse/scipy_sparse.py', + 'PYMODULE'), + ('pandas.core.arrays.string_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/string_.py', + 'PYMODULE'), + ('pandas.core.arrays.string_arrow', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/string_arrow.py', + 'PYMODULE'), + ('pandas.core.arrays.timedeltas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/arrays/timedeltas.py', + 'PYMODULE'), + ('pandas.core.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/base.py', + 'PYMODULE'), + ('pandas.core.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/common.py', + 'PYMODULE'), + ('pandas.core.computation', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/__init__.py', + 'PYMODULE'), + ('pandas.core.computation.align', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/align.py', + 'PYMODULE'), + ('pandas.core.computation.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/api.py', + 'PYMODULE'), + ('pandas.core.computation.check', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/check.py', + 'PYMODULE'), + ('pandas.core.computation.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/common.py', + 'PYMODULE'), + ('pandas.core.computation.engines', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/engines.py', + 'PYMODULE'), + ('pandas.core.computation.eval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/eval.py', + 'PYMODULE'), + ('pandas.core.computation.expr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/expr.py', + 'PYMODULE'), + ('pandas.core.computation.expressions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/expressions.py', + 'PYMODULE'), + ('pandas.core.computation.ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/ops.py', + 'PYMODULE'), + ('pandas.core.computation.parsing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/parsing.py', + 'PYMODULE'), + ('pandas.core.computation.pytables', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/pytables.py', + 'PYMODULE'), + ('pandas.core.computation.scope', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/computation/scope.py', + 'PYMODULE'), + ('pandas.core.config_init', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/config_init.py', + 'PYMODULE'), + ('pandas.core.construction', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/construction.py', + 'PYMODULE'), + ('pandas.core.dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/dtypes/__init__.py', + 'PYMODULE'), + ('pandas.core.dtypes.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/dtypes/api.py', + 'PYMODULE'), + ('pandas.core.dtypes.astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/dtypes/astype.py', + 'PYMODULE'), + ('pandas.core.dtypes.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/dtypes/base.py', + 'PYMODULE'), + ('pandas.core.dtypes.cast', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/dtypes/cast.py', + 'PYMODULE'), + ('pandas.core.dtypes.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/dtypes/common.py', + 'PYMODULE'), + ('pandas.core.dtypes.concat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/dtypes/concat.py', + 'PYMODULE'), + ('pandas.core.dtypes.dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/dtypes/dtypes.py', + 'PYMODULE'), + ('pandas.core.dtypes.generic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/dtypes/generic.py', + 'PYMODULE'), + ('pandas.core.dtypes.inference', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/dtypes/inference.py', + 'PYMODULE'), + ('pandas.core.dtypes.missing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/dtypes/missing.py', + 'PYMODULE'), + ('pandas.core.flags', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/flags.py', + 'PYMODULE'), + ('pandas.core.frame', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/frame.py', + 'PYMODULE'), + ('pandas.core.generic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/generic.py', + 'PYMODULE'), + ('pandas.core.groupby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/groupby/__init__.py', + 'PYMODULE'), + ('pandas.core.groupby.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/groupby/base.py', + 'PYMODULE'), + ('pandas.core.groupby.categorical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/groupby/categorical.py', + 'PYMODULE'), + ('pandas.core.groupby.generic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/groupby/generic.py', + 'PYMODULE'), + ('pandas.core.groupby.groupby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/groupby/groupby.py', + 'PYMODULE'), + ('pandas.core.groupby.grouper', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/groupby/grouper.py', + 'PYMODULE'), + ('pandas.core.groupby.indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/groupby/indexing.py', + 'PYMODULE'), + ('pandas.core.groupby.numba_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/groupby/numba_.py', + 'PYMODULE'), + ('pandas.core.groupby.ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/groupby/ops.py', + 'PYMODULE'), + ('pandas.core.indexers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexers/__init__.py', + 'PYMODULE'), + ('pandas.core.indexers.objects', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexers/objects.py', + 'PYMODULE'), + ('pandas.core.indexers.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexers/utils.py', + 'PYMODULE'), + ('pandas.core.indexes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/__init__.py', + 'PYMODULE'), + ('pandas.core.indexes.accessors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/accessors.py', + 'PYMODULE'), + ('pandas.core.indexes.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/api.py', + 'PYMODULE'), + ('pandas.core.indexes.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/base.py', + 'PYMODULE'), + ('pandas.core.indexes.category', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/category.py', + 'PYMODULE'), + ('pandas.core.indexes.datetimelike', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/datetimelike.py', + 'PYMODULE'), + ('pandas.core.indexes.datetimes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/datetimes.py', + 'PYMODULE'), + ('pandas.core.indexes.extension', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/extension.py', + 'PYMODULE'), + ('pandas.core.indexes.frozen', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/frozen.py', + 'PYMODULE'), + ('pandas.core.indexes.interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/interval.py', + 'PYMODULE'), + ('pandas.core.indexes.multi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/multi.py', + 'PYMODULE'), + ('pandas.core.indexes.period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/period.py', + 'PYMODULE'), + ('pandas.core.indexes.range', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/range.py', + 'PYMODULE'), + ('pandas.core.indexes.timedeltas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexes/timedeltas.py', + 'PYMODULE'), + ('pandas.core.indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/indexing.py', + 'PYMODULE'), + ('pandas.core.interchange', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/interchange/__init__.py', + 'PYMODULE'), + ('pandas.core.interchange.buffer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/interchange/buffer.py', + 'PYMODULE'), + ('pandas.core.interchange.column', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/interchange/column.py', + 'PYMODULE'), + ('pandas.core.interchange.dataframe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/interchange/dataframe.py', + 'PYMODULE'), + ('pandas.core.interchange.dataframe_protocol', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/interchange/dataframe_protocol.py', + 'PYMODULE'), + ('pandas.core.interchange.from_dataframe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/interchange/from_dataframe.py', + 'PYMODULE'), + ('pandas.core.interchange.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/interchange/utils.py', + 'PYMODULE'), + ('pandas.core.internals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/internals/__init__.py', + 'PYMODULE'), + ('pandas.core.internals.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/internals/api.py', + 'PYMODULE'), + ('pandas.core.internals.array_manager', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/internals/array_manager.py', + 'PYMODULE'), + ('pandas.core.internals.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/internals/base.py', + 'PYMODULE'), + ('pandas.core.internals.blocks', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/internals/blocks.py', + 'PYMODULE'), + ('pandas.core.internals.concat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/internals/concat.py', + 'PYMODULE'), + ('pandas.core.internals.construction', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/internals/construction.py', + 'PYMODULE'), + ('pandas.core.internals.managers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/internals/managers.py', + 'PYMODULE'), + ('pandas.core.internals.ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/internals/ops.py', + 'PYMODULE'), + ('pandas.core.methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/methods/__init__.py', + 'PYMODULE'), + ('pandas.core.methods.describe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/methods/describe.py', + 'PYMODULE'), + ('pandas.core.methods.selectn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/methods/selectn.py', + 'PYMODULE'), + ('pandas.core.methods.to_dict', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/methods/to_dict.py', + 'PYMODULE'), + ('pandas.core.missing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/missing.py', + 'PYMODULE'), + ('pandas.core.nanops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/nanops.py', + 'PYMODULE'), + ('pandas.core.ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/ops/__init__.py', + 'PYMODULE'), + ('pandas.core.ops.array_ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/ops/array_ops.py', + 'PYMODULE'), + ('pandas.core.ops.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/ops/common.py', + 'PYMODULE'), + ('pandas.core.ops.dispatch', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/ops/dispatch.py', + 'PYMODULE'), + ('pandas.core.ops.docstrings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/ops/docstrings.py', + 'PYMODULE'), + ('pandas.core.ops.invalid', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/ops/invalid.py', + 'PYMODULE'), + ('pandas.core.ops.mask_ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/ops/mask_ops.py', + 'PYMODULE'), + ('pandas.core.ops.missing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/ops/missing.py', + 'PYMODULE'), + ('pandas.core.resample', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/resample.py', + 'PYMODULE'), + ('pandas.core.reshape', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/reshape/__init__.py', + 'PYMODULE'), + ('pandas.core.reshape.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/reshape/api.py', + 'PYMODULE'), + ('pandas.core.reshape.concat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/reshape/concat.py', + 'PYMODULE'), + ('pandas.core.reshape.encoding', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/reshape/encoding.py', + 'PYMODULE'), + ('pandas.core.reshape.melt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/reshape/melt.py', + 'PYMODULE'), + ('pandas.core.reshape.merge', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/reshape/merge.py', + 'PYMODULE'), + ('pandas.core.reshape.pivot', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/reshape/pivot.py', + 'PYMODULE'), + ('pandas.core.reshape.reshape', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/reshape/reshape.py', + 'PYMODULE'), + ('pandas.core.reshape.tile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/reshape/tile.py', + 'PYMODULE'), + ('pandas.core.reshape.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/reshape/util.py', + 'PYMODULE'), + ('pandas.core.roperator', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/roperator.py', + 'PYMODULE'), + ('pandas.core.sample', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/sample.py', + 'PYMODULE'), + ('pandas.core.series', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/series.py', + 'PYMODULE'), + ('pandas.core.shared_docs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/shared_docs.py', + 'PYMODULE'), + ('pandas.core.sorting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/sorting.py', + 'PYMODULE'), + ('pandas.core.sparse', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/sparse/__init__.py', + 'PYMODULE'), + ('pandas.core.sparse.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/sparse/api.py', + 'PYMODULE'), + ('pandas.core.strings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/strings/__init__.py', + 'PYMODULE'), + ('pandas.core.strings.accessor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/strings/accessor.py', + 'PYMODULE'), + ('pandas.core.strings.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/strings/base.py', + 'PYMODULE'), + ('pandas.core.strings.object_array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/strings/object_array.py', + 'PYMODULE'), + ('pandas.core.tools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/tools/__init__.py', + 'PYMODULE'), + ('pandas.core.tools.datetimes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/tools/datetimes.py', + 'PYMODULE'), + ('pandas.core.tools.numeric', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/tools/numeric.py', + 'PYMODULE'), + ('pandas.core.tools.timedeltas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/tools/timedeltas.py', + 'PYMODULE'), + ('pandas.core.tools.times', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/tools/times.py', + 'PYMODULE'), + ('pandas.core.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/util/__init__.py', + 'PYMODULE'), + ('pandas.core.util.hashing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/util/hashing.py', + 'PYMODULE'), + ('pandas.core.util.numba_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/util/numba_.py', + 'PYMODULE'), + ('pandas.core.window', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/window/__init__.py', + 'PYMODULE'), + ('pandas.core.window.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/window/common.py', + 'PYMODULE'), + ('pandas.core.window.doc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/window/doc.py', + 'PYMODULE'), + ('pandas.core.window.ewm', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/window/ewm.py', + 'PYMODULE'), + ('pandas.core.window.expanding', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/window/expanding.py', + 'PYMODULE'), + ('pandas.core.window.numba_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/window/numba_.py', + 'PYMODULE'), + ('pandas.core.window.online', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/window/online.py', + 'PYMODULE'), + ('pandas.core.window.rolling', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/core/window/rolling.py', + 'PYMODULE'), + ('pandas.errors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/errors/__init__.py', + 'PYMODULE'), + ('pandas.io', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/__init__.py', + 'PYMODULE'), + ('pandas.io._util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/_util.py', + 'PYMODULE'), + ('pandas.io.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/api.py', + 'PYMODULE'), + ('pandas.io.clipboard', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/clipboard/__init__.py', + 'PYMODULE'), + ('pandas.io.clipboards', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/clipboards.py', + 'PYMODULE'), + ('pandas.io.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/common.py', + 'PYMODULE'), + ('pandas.io.excel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/excel/__init__.py', + 'PYMODULE'), + ('pandas.io.excel._base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/excel/_base.py', + 'PYMODULE'), + ('pandas.io.excel._calamine', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/excel/_calamine.py', + 'PYMODULE'), + ('pandas.io.excel._odfreader', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/excel/_odfreader.py', + 'PYMODULE'), + ('pandas.io.excel._odswriter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/excel/_odswriter.py', + 'PYMODULE'), + ('pandas.io.excel._openpyxl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/excel/_openpyxl.py', + 'PYMODULE'), + ('pandas.io.excel._pyxlsb', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/excel/_pyxlsb.py', + 'PYMODULE'), + ('pandas.io.excel._util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/excel/_util.py', + 'PYMODULE'), + ('pandas.io.excel._xlrd', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/excel/_xlrd.py', + 'PYMODULE'), + ('pandas.io.excel._xlsxwriter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/excel/_xlsxwriter.py', + 'PYMODULE'), + ('pandas.io.feather_format', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/feather_format.py', + 'PYMODULE'), + ('pandas.io.formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/__init__.py', + 'PYMODULE'), + ('pandas.io.formats._color_data', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/_color_data.py', + 'PYMODULE'), + ('pandas.io.formats.console', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/console.py', + 'PYMODULE'), + ('pandas.io.formats.css', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/css.py', + 'PYMODULE'), + ('pandas.io.formats.csvs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/csvs.py', + 'PYMODULE'), + ('pandas.io.formats.excel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/excel.py', + 'PYMODULE'), + ('pandas.io.formats.format', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/format.py', + 'PYMODULE'), + ('pandas.io.formats.html', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/html.py', + 'PYMODULE'), + ('pandas.io.formats.info', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/info.py', + 'PYMODULE'), + ('pandas.io.formats.printing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/printing.py', + 'PYMODULE'), + ('pandas.io.formats.string', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/string.py', + 'PYMODULE'), + ('pandas.io.formats.style', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/style.py', + 'PYMODULE'), + ('pandas.io.formats.style_render', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/style_render.py', + 'PYMODULE'), + ('pandas.io.formats.xml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/formats/xml.py', + 'PYMODULE'), + ('pandas.io.gbq', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/gbq.py', + 'PYMODULE'), + ('pandas.io.html', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/html.py', + 'PYMODULE'), + ('pandas.io.json', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/json/__init__.py', + 'PYMODULE'), + ('pandas.io.json._json', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/json/_json.py', + 'PYMODULE'), + ('pandas.io.json._normalize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/json/_normalize.py', + 'PYMODULE'), + ('pandas.io.json._table_schema', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/json/_table_schema.py', + 'PYMODULE'), + ('pandas.io.orc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/orc.py', + 'PYMODULE'), + ('pandas.io.parquet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/parquet.py', + 'PYMODULE'), + ('pandas.io.parsers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/parsers/__init__.py', + 'PYMODULE'), + ('pandas.io.parsers.arrow_parser_wrapper', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/parsers/arrow_parser_wrapper.py', + 'PYMODULE'), + ('pandas.io.parsers.base_parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/parsers/base_parser.py', + 'PYMODULE'), + ('pandas.io.parsers.c_parser_wrapper', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/parsers/c_parser_wrapper.py', + 'PYMODULE'), + ('pandas.io.parsers.python_parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/parsers/python_parser.py', + 'PYMODULE'), + ('pandas.io.parsers.readers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/parsers/readers.py', + 'PYMODULE'), + ('pandas.io.pickle', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/pickle.py', + 'PYMODULE'), + ('pandas.io.pytables', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/pytables.py', + 'PYMODULE'), + ('pandas.io.sas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/sas/__init__.py', + 'PYMODULE'), + ('pandas.io.sas.sas7bdat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/sas/sas7bdat.py', + 'PYMODULE'), + ('pandas.io.sas.sas_constants', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/sas/sas_constants.py', + 'PYMODULE'), + ('pandas.io.sas.sas_xport', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/sas/sas_xport.py', + 'PYMODULE'), + ('pandas.io.sas.sasreader', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/sas/sasreader.py', + 'PYMODULE'), + ('pandas.io.spss', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/spss.py', + 'PYMODULE'), + ('pandas.io.sql', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/sql.py', + 'PYMODULE'), + ('pandas.io.stata', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/stata.py', + 'PYMODULE'), + ('pandas.io.xml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/io/xml.py', + 'PYMODULE'), + ('pandas.plotting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/__init__.py', + 'PYMODULE'), + ('pandas.plotting._core', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_core.py', + 'PYMODULE'), + ('pandas.plotting._matplotlib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_matplotlib/__init__.py', + 'PYMODULE'), + ('pandas.plotting._matplotlib.boxplot', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_matplotlib/boxplot.py', + 'PYMODULE'), + ('pandas.plotting._matplotlib.converter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_matplotlib/converter.py', + 'PYMODULE'), + ('pandas.plotting._matplotlib.core', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_matplotlib/core.py', + 'PYMODULE'), + ('pandas.plotting._matplotlib.groupby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_matplotlib/groupby.py', + 'PYMODULE'), + ('pandas.plotting._matplotlib.hist', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_matplotlib/hist.py', + 'PYMODULE'), + ('pandas.plotting._matplotlib.misc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_matplotlib/misc.py', + 'PYMODULE'), + ('pandas.plotting._matplotlib.style', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_matplotlib/style.py', + 'PYMODULE'), + ('pandas.plotting._matplotlib.timeseries', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_matplotlib/timeseries.py', + 'PYMODULE'), + ('pandas.plotting._matplotlib.tools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_matplotlib/tools.py', + 'PYMODULE'), + ('pandas.plotting._misc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/plotting/_misc.py', + 'PYMODULE'), + ('pandas.testing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/testing.py', + 'PYMODULE'), + ('pandas.tests', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/__init__.py', + 'PYMODULE'), + ('pandas.tests.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/api/__init__.py', + 'PYMODULE'), + ('pandas.tests.api.test_api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/api/test_api.py', + 'PYMODULE'), + ('pandas.tests.api.test_types', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/api/test_types.py', + 'PYMODULE'), + ('pandas.tests.apply', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/apply/__init__.py', + 'PYMODULE'), + ('pandas.tests.apply.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/apply/common.py', + 'PYMODULE'), + ('pandas.tests.apply.test_frame_apply', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/apply/test_frame_apply.py', + 'PYMODULE'), + ('pandas.tests.apply.test_frame_apply_relabeling', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/apply/test_frame_apply_relabeling.py', + 'PYMODULE'), + ('pandas.tests.apply.test_frame_transform', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/apply/test_frame_transform.py', + 'PYMODULE'), + ('pandas.tests.apply.test_invalid_arg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/apply/test_invalid_arg.py', + 'PYMODULE'), + ('pandas.tests.apply.test_numba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/apply/test_numba.py', + 'PYMODULE'), + ('pandas.tests.apply.test_series_apply', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/apply/test_series_apply.py', + 'PYMODULE'), + ('pandas.tests.apply.test_series_apply_relabeling', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/apply/test_series_apply_relabeling.py', + 'PYMODULE'), + ('pandas.tests.apply.test_series_transform', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/apply/test_series_transform.py', + 'PYMODULE'), + ('pandas.tests.apply.test_str', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/apply/test_str.py', + 'PYMODULE'), + ('pandas.tests.arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arithmetic/__init__.py', + 'PYMODULE'), + ('pandas.tests.arithmetic.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arithmetic/common.py', + 'PYMODULE'), + ('pandas.tests.arithmetic.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arithmetic/conftest.py', + 'PYMODULE'), + ('pandas.tests.arithmetic.test_array_ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arithmetic/test_array_ops.py', + 'PYMODULE'), + ('pandas.tests.arithmetic.test_categorical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arithmetic/test_categorical.py', + 'PYMODULE'), + ('pandas.tests.arithmetic.test_datetime64', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arithmetic/test_datetime64.py', + 'PYMODULE'), + ('pandas.tests.arithmetic.test_interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arithmetic/test_interval.py', + 'PYMODULE'), + ('pandas.tests.arithmetic.test_numeric', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arithmetic/test_numeric.py', + 'PYMODULE'), + ('pandas.tests.arithmetic.test_object', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arithmetic/test_object.py', + 'PYMODULE'), + ('pandas.tests.arithmetic.test_period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arithmetic/test_period.py', + 'PYMODULE'), + ('pandas.tests.arithmetic.test_timedelta64', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arithmetic/test_timedelta64.py', + 'PYMODULE'), + ('pandas.tests.arrays', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.boolean', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/boolean/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.boolean.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/boolean/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.arrays.boolean.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/boolean/test_astype.py', + 'PYMODULE'), + ('pandas.tests.arrays.boolean.test_comparison', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/boolean/test_comparison.py', + 'PYMODULE'), + ('pandas.tests.arrays.boolean.test_construction', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/boolean/test_construction.py', + 'PYMODULE'), + ('pandas.tests.arrays.boolean.test_function', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/boolean/test_function.py', + 'PYMODULE'), + ('pandas.tests.arrays.boolean.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/boolean/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.arrays.boolean.test_logical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/boolean/test_logical.py', + 'PYMODULE'), + ('pandas.tests.arrays.boolean.test_ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/boolean/test_ops.py', + 'PYMODULE'), + ('pandas.tests.arrays.boolean.test_reduction', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/boolean/test_reduction.py', + 'PYMODULE'), + ('pandas.tests.arrays.boolean.test_repr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/boolean/test_repr.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_algos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_algos.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_analytics', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_analytics.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_api.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_astype.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_dtypes.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_map', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_map.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_missing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_missing.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_operators', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_operators.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_replace', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_replace.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_repr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_repr.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_sorting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_sorting.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_subclass', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_subclass.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_take', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_take.py', + 'PYMODULE'), + ('pandas.tests.arrays.categorical.test_warnings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/categorical/test_warnings.py', + 'PYMODULE'), + ('pandas.tests.arrays.datetimes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/datetimes/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.datetimes.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/datetimes/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.arrays.datetimes.test_cumulative', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/datetimes/test_cumulative.py', + 'PYMODULE'), + ('pandas.tests.arrays.datetimes.test_reductions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/datetimes/test_reductions.py', + 'PYMODULE'), + ('pandas.tests.arrays.floating', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/floating/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.floating.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/floating/conftest.py', + 'PYMODULE'), + ('pandas.tests.arrays.floating.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/floating/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.arrays.floating.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/floating/test_astype.py', + 'PYMODULE'), + ('pandas.tests.arrays.floating.test_comparison', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/floating/test_comparison.py', + 'PYMODULE'), + ('pandas.tests.arrays.floating.test_concat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/floating/test_concat.py', + 'PYMODULE'), + ('pandas.tests.arrays.floating.test_construction', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/floating/test_construction.py', + 'PYMODULE'), + ('pandas.tests.arrays.floating.test_contains', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/floating/test_contains.py', + 'PYMODULE'), + ('pandas.tests.arrays.floating.test_function', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/floating/test_function.py', + 'PYMODULE'), + ('pandas.tests.arrays.floating.test_repr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/floating/test_repr.py', + 'PYMODULE'), + ('pandas.tests.arrays.floating.test_to_numpy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/floating/test_to_numpy.py', + 'PYMODULE'), + ('pandas.tests.arrays.integer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/integer/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.integer.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/integer/conftest.py', + 'PYMODULE'), + ('pandas.tests.arrays.integer.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/integer/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.arrays.integer.test_comparison', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/integer/test_comparison.py', + 'PYMODULE'), + ('pandas.tests.arrays.integer.test_concat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/integer/test_concat.py', + 'PYMODULE'), + ('pandas.tests.arrays.integer.test_construction', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/integer/test_construction.py', + 'PYMODULE'), + ('pandas.tests.arrays.integer.test_dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/integer/test_dtypes.py', + 'PYMODULE'), + ('pandas.tests.arrays.integer.test_function', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/integer/test_function.py', + 'PYMODULE'), + ('pandas.tests.arrays.integer.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/integer/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.arrays.integer.test_reduction', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/integer/test_reduction.py', + 'PYMODULE'), + ('pandas.tests.arrays.integer.test_repr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/integer/test_repr.py', + 'PYMODULE'), + ('pandas.tests.arrays.interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/interval/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.interval.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/interval/test_astype.py', + 'PYMODULE'), + ('pandas.tests.arrays.interval.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/interval/test_formats.py', + 'PYMODULE'), + ('pandas.tests.arrays.interval.test_interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/interval/test_interval.py', + 'PYMODULE'), + ('pandas.tests.arrays.interval.test_interval_pyarrow', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/interval/test_interval_pyarrow.py', + 'PYMODULE'), + ('pandas.tests.arrays.interval.test_overlaps', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/interval/test_overlaps.py', + 'PYMODULE'), + ('pandas.tests.arrays.masked', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/masked/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.masked.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/masked/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.arrays.masked.test_arrow_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/masked/test_arrow_compat.py', + 'PYMODULE'), + ('pandas.tests.arrays.masked.test_function', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/masked/test_function.py', + 'PYMODULE'), + ('pandas.tests.arrays.masked.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/masked/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.arrays.masked_shared', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/masked_shared.py', + 'PYMODULE'), + ('pandas.tests.arrays.numpy_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/numpy_/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.numpy_.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/numpy_/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.arrays.numpy_.test_numpy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/numpy_/test_numpy.py', + 'PYMODULE'), + ('pandas.tests.arrays.period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/period/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.period.test_arrow_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/period/test_arrow_compat.py', + 'PYMODULE'), + ('pandas.tests.arrays.period.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/period/test_astype.py', + 'PYMODULE'), + ('pandas.tests.arrays.period.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/period/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.arrays.period.test_reductions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/period/test_reductions.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse.test_accessor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/test_accessor.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse.test_arithmetics', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/test_arithmetics.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse.test_array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/test_array.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/test_astype.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse.test_combine_concat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/test_combine_concat.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse.test_dtype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/test_dtype.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse.test_libsparse', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/test_libsparse.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse.test_reductions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/test_reductions.py', + 'PYMODULE'), + ('pandas.tests.arrays.sparse.test_unary', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/sparse/test_unary.py', + 'PYMODULE'), + ('pandas.tests.arrays.string_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/string_/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.string_.test_string', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/string_/test_string.py', + 'PYMODULE'), + ('pandas.tests.arrays.string_.test_string_arrow', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/string_/test_string_arrow.py', + 'PYMODULE'), + ('pandas.tests.arrays.test_array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/test_array.py', + 'PYMODULE'), + ('pandas.tests.arrays.test_datetimelike', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/test_datetimelike.py', + 'PYMODULE'), + ('pandas.tests.arrays.test_datetimes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/test_datetimes.py', + 'PYMODULE'), + ('pandas.tests.arrays.test_ndarray_backed', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/test_ndarray_backed.py', + 'PYMODULE'), + ('pandas.tests.arrays.test_period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/test_period.py', + 'PYMODULE'), + ('pandas.tests.arrays.test_timedeltas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/test_timedeltas.py', + 'PYMODULE'), + ('pandas.tests.arrays.timedeltas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/timedeltas/__init__.py', + 'PYMODULE'), + ('pandas.tests.arrays.timedeltas.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/timedeltas/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.arrays.timedeltas.test_cumulative', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/timedeltas/test_cumulative.py', + 'PYMODULE'), + ('pandas.tests.arrays.timedeltas.test_reductions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/arrays/timedeltas/test_reductions.py', + 'PYMODULE'), + ('pandas.tests.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/base/__init__.py', + 'PYMODULE'), + ('pandas.tests.base.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/base/common.py', + 'PYMODULE'), + ('pandas.tests.base.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/base/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.base.test_conversion', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/base/test_conversion.py', + 'PYMODULE'), + ('pandas.tests.base.test_fillna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/base/test_fillna.py', + 'PYMODULE'), + ('pandas.tests.base.test_misc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/base/test_misc.py', + 'PYMODULE'), + ('pandas.tests.base.test_transpose', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/base/test_transpose.py', + 'PYMODULE'), + ('pandas.tests.base.test_unique', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/base/test_unique.py', + 'PYMODULE'), + ('pandas.tests.base.test_value_counts', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/base/test_value_counts.py', + 'PYMODULE'), + ('pandas.tests.computation', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/computation/__init__.py', + 'PYMODULE'), + ('pandas.tests.computation.test_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/computation/test_compat.py', + 'PYMODULE'), + ('pandas.tests.computation.test_eval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/computation/test_eval.py', + 'PYMODULE'), + ('pandas.tests.config', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/config/__init__.py', + 'PYMODULE'), + ('pandas.tests.config.test_config', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/config/test_config.py', + 'PYMODULE'), + ('pandas.tests.config.test_localization', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/config/test_localization.py', + 'PYMODULE'), + ('pandas.tests.construction', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/construction/__init__.py', + 'PYMODULE'), + ('pandas.tests.construction.test_extract_array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/construction/test_extract_array.py', + 'PYMODULE'), + ('pandas.tests.copy_view', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/__init__.py', + 'PYMODULE'), + ('pandas.tests.copy_view.index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/index/__init__.py', + 'PYMODULE'), + ('pandas.tests.copy_view.index.test_datetimeindex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/index/test_datetimeindex.py', + 'PYMODULE'), + ('pandas.tests.copy_view.index.test_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/index/test_index.py', + 'PYMODULE'), + ('pandas.tests.copy_view.index.test_periodindex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/index/test_periodindex.py', + 'PYMODULE'), + ('pandas.tests.copy_view.index.test_timedeltaindex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/index/test_timedeltaindex.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_array.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_astype.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_chained_assignment_deprecation', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_chained_assignment_deprecation.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_clip', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_clip.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_core_functionalities', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_core_functionalities.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_functions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_functions.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_internals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_internals.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_interp_fillna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_interp_fillna.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_methods.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_replace', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_replace.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_setitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_setitem.py', + 'PYMODULE'), + ('pandas.tests.copy_view.test_util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/test_util.py', + 'PYMODULE'), + ('pandas.tests.copy_view.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/copy_view/util.py', + 'PYMODULE'), + ('pandas.tests.dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/__init__.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/__init__.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast.test_can_hold_element', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/test_can_hold_element.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast.test_construct_from_scalar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/test_construct_from_scalar.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast.test_construct_ndarray', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/test_construct_ndarray.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast.test_construct_object_arr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/test_construct_object_arr.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast.test_dict_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/test_dict_compat.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast.test_downcast', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/test_downcast.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast.test_find_common_type', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/test_find_common_type.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast.test_infer_datetimelike', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/test_infer_datetimelike.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast.test_infer_dtype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/test_infer_dtype.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast.test_maybe_box_native', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/test_maybe_box_native.py', + 'PYMODULE'), + ('pandas.tests.dtypes.cast.test_promote', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/cast/test_promote.py', + 'PYMODULE'), + ('pandas.tests.dtypes.test_common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/test_common.py', + 'PYMODULE'), + ('pandas.tests.dtypes.test_concat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/test_concat.py', + 'PYMODULE'), + ('pandas.tests.dtypes.test_dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/test_dtypes.py', + 'PYMODULE'), + ('pandas.tests.dtypes.test_generic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/test_generic.py', + 'PYMODULE'), + ('pandas.tests.dtypes.test_inference', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/test_inference.py', + 'PYMODULE'), + ('pandas.tests.dtypes.test_missing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/dtypes/test_missing.py', + 'PYMODULE'), + ('pandas.tests.extension', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/__init__.py', + 'PYMODULE'), + ('pandas.tests.extension.array_with_attr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/array_with_attr/__init__.py', + 'PYMODULE'), + ('pandas.tests.extension.array_with_attr.array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/array_with_attr/array.py', + 'PYMODULE'), + ('pandas.tests.extension.array_with_attr.test_array_with_attr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/array_with_attr/test_array_with_attr.py', + 'PYMODULE'), + ('pandas.tests.extension.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/__init__.py', + 'PYMODULE'), + ('pandas.tests.extension.base.accumulate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/accumulate.py', + 'PYMODULE'), + ('pandas.tests.extension.base.casting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/casting.py', + 'PYMODULE'), + ('pandas.tests.extension.base.constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/constructors.py', + 'PYMODULE'), + ('pandas.tests.extension.base.dim2', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/dim2.py', + 'PYMODULE'), + ('pandas.tests.extension.base.dtype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/dtype.py', + 'PYMODULE'), + ('pandas.tests.extension.base.getitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/getitem.py', + 'PYMODULE'), + ('pandas.tests.extension.base.groupby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/groupby.py', + 'PYMODULE'), + ('pandas.tests.extension.base.index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/index.py', + 'PYMODULE'), + ('pandas.tests.extension.base.interface', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/interface.py', + 'PYMODULE'), + ('pandas.tests.extension.base.io', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/io.py', + 'PYMODULE'), + ('pandas.tests.extension.base.methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/methods.py', + 'PYMODULE'), + ('pandas.tests.extension.base.missing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/missing.py', + 'PYMODULE'), + ('pandas.tests.extension.base.ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/ops.py', + 'PYMODULE'), + ('pandas.tests.extension.base.printing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/printing.py', + 'PYMODULE'), + ('pandas.tests.extension.base.reduce', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/reduce.py', + 'PYMODULE'), + ('pandas.tests.extension.base.reshaping', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/reshaping.py', + 'PYMODULE'), + ('pandas.tests.extension.base.setitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/base/setitem.py', + 'PYMODULE'), + ('pandas.tests.extension.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/conftest.py', + 'PYMODULE'), + ('pandas.tests.extension.date', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/date/__init__.py', + 'PYMODULE'), + ('pandas.tests.extension.date.array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/date/array.py', + 'PYMODULE'), + ('pandas.tests.extension.decimal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/decimal/__init__.py', + 'PYMODULE'), + ('pandas.tests.extension.decimal.array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/decimal/array.py', + 'PYMODULE'), + ('pandas.tests.extension.decimal.test_decimal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/decimal/test_decimal.py', + 'PYMODULE'), + ('pandas.tests.extension.json', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/json/__init__.py', + 'PYMODULE'), + ('pandas.tests.extension.json.array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/json/array.py', + 'PYMODULE'), + ('pandas.tests.extension.json.test_json', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/json/test_json.py', + 'PYMODULE'), + ('pandas.tests.extension.list', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/list/__init__.py', + 'PYMODULE'), + ('pandas.tests.extension.list.array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/list/array.py', + 'PYMODULE'), + ('pandas.tests.extension.list.test_list', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/list/test_list.py', + 'PYMODULE'), + ('pandas.tests.extension.test_arrow', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/test_arrow.py', + 'PYMODULE'), + ('pandas.tests.extension.test_categorical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/test_categorical.py', + 'PYMODULE'), + ('pandas.tests.extension.test_common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/test_common.py', + 'PYMODULE'), + ('pandas.tests.extension.test_datetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/test_datetime.py', + 'PYMODULE'), + ('pandas.tests.extension.test_extension', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/test_extension.py', + 'PYMODULE'), + ('pandas.tests.extension.test_interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/test_interval.py', + 'PYMODULE'), + ('pandas.tests.extension.test_masked', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/test_masked.py', + 'PYMODULE'), + ('pandas.tests.extension.test_numpy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/test_numpy.py', + 'PYMODULE'), + ('pandas.tests.extension.test_period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/test_period.py', + 'PYMODULE'), + ('pandas.tests.extension.test_sparse', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/test_sparse.py', + 'PYMODULE'), + ('pandas.tests.extension.test_string', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/extension/test_string.py', + 'PYMODULE'), + ('pandas.tests.frame', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/__init__.py', + 'PYMODULE'), + ('pandas.tests.frame.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/common.py', + 'PYMODULE'), + ('pandas.tests.frame.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/conftest.py', + 'PYMODULE'), + ('pandas.tests.frame.constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/constructors/__init__.py', + 'PYMODULE'), + ('pandas.tests.frame.constructors.test_from_dict', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/constructors/test_from_dict.py', + 'PYMODULE'), + ('pandas.tests.frame.constructors.test_from_records', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/constructors/test_from_records.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/__init__.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_coercion', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_coercion.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_delitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_delitem.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_get', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_get.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_get_value', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_get_value.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_getitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_getitem.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_insert', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_insert.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_mask', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_mask.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_set_value', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_set_value.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_setitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_setitem.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_take', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_take.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_where', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_where.py', + 'PYMODULE'), + ('pandas.tests.frame.indexing.test_xs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/indexing/test_xs.py', + 'PYMODULE'), + ('pandas.tests.frame.methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/__init__.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_add_prefix_suffix', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_add_prefix_suffix.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_align', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_align.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_asfreq', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_asfreq.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_asof', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_asof.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_assign', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_assign.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_astype.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_at_time', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_at_time.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_between_time', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_between_time.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_clip', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_clip.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_combine', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_combine.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_combine_first', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_combine_first.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_compare', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_compare.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_convert_dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_convert_dtypes.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_copy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_copy.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_count', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_count.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_cov_corr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_cov_corr.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_describe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_describe.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_diff', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_diff.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_dot', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_dot.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_drop', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_drop.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_drop_duplicates', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_drop_duplicates.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_droplevel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_droplevel.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_dropna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_dropna.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_dtypes.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_duplicated', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_duplicated.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_equals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_equals.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_explode', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_explode.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_fillna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_fillna.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_filter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_filter.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_first_and_last', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_first_and_last.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_first_valid_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_first_valid_index.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_get_numeric_data', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_get_numeric_data.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_head_tail', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_head_tail.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_infer_objects', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_infer_objects.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_info', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_info.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_interpolate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_interpolate.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_is_homogeneous_dtype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_is_homogeneous_dtype.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_isetitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_isetitem.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_isin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_isin.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_iterrows', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_iterrows.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_join', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_join.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_map', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_map.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_matmul', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_matmul.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_nlargest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_nlargest.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_pct_change', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_pct_change.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_pipe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_pipe.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_pop', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_pop.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_quantile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_quantile.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_rank', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_rank.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_reindex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_reindex.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_reindex_like', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_reindex_like.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_rename', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_rename.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_rename_axis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_rename_axis.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_reorder_levels', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_reorder_levels.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_replace', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_replace.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_reset_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_reset_index.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_round', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_round.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_sample', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_sample.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_select_dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_select_dtypes.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_set_axis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_set_axis.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_set_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_set_index.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_shift', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_shift.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_size', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_size.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_sort_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_sort_index.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_sort_values', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_sort_values.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_swapaxes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_swapaxes.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_swaplevel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_swaplevel.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_to_csv', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_to_csv.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_to_dict', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_to_dict.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_to_dict_of_blocks', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_to_dict_of_blocks.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_to_numpy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_to_numpy.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_to_period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_to_period.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_to_records', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_to_records.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_to_timestamp', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_to_timestamp.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_transpose', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_transpose.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_truncate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_truncate.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_tz_convert', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_tz_convert.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_tz_localize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_tz_localize.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_update', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_update.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_value_counts', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_value_counts.py', + 'PYMODULE'), + ('pandas.tests.frame.methods.test_values', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/methods/test_values.py', + 'PYMODULE'), + ('pandas.tests.frame.test_alter_axes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_alter_axes.py', + 'PYMODULE'), + ('pandas.tests.frame.test_api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_api.py', + 'PYMODULE'), + ('pandas.tests.frame.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.frame.test_arrow_interface', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_arrow_interface.py', + 'PYMODULE'), + ('pandas.tests.frame.test_block_internals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_block_internals.py', + 'PYMODULE'), + ('pandas.tests.frame.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.frame.test_cumulative', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_cumulative.py', + 'PYMODULE'), + ('pandas.tests.frame.test_iteration', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_iteration.py', + 'PYMODULE'), + ('pandas.tests.frame.test_logical_ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_logical_ops.py', + 'PYMODULE'), + ('pandas.tests.frame.test_nonunique_indexes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_nonunique_indexes.py', + 'PYMODULE'), + ('pandas.tests.frame.test_npfuncs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_npfuncs.py', + 'PYMODULE'), + ('pandas.tests.frame.test_query_eval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_query_eval.py', + 'PYMODULE'), + ('pandas.tests.frame.test_reductions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_reductions.py', + 'PYMODULE'), + ('pandas.tests.frame.test_repr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_repr.py', + 'PYMODULE'), + ('pandas.tests.frame.test_stack_unstack', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_stack_unstack.py', + 'PYMODULE'), + ('pandas.tests.frame.test_subclass', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_subclass.py', + 'PYMODULE'), + ('pandas.tests.frame.test_ufunc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_ufunc.py', + 'PYMODULE'), + ('pandas.tests.frame.test_unary', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_unary.py', + 'PYMODULE'), + ('pandas.tests.frame.test_validate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/frame/test_validate.py', + 'PYMODULE'), + ('pandas.tests.generic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/generic/__init__.py', + 'PYMODULE'), + ('pandas.tests.generic.test_duplicate_labels', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/generic/test_duplicate_labels.py', + 'PYMODULE'), + ('pandas.tests.generic.test_finalize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/generic/test_finalize.py', + 'PYMODULE'), + ('pandas.tests.generic.test_frame', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/generic/test_frame.py', + 'PYMODULE'), + ('pandas.tests.generic.test_generic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/generic/test_generic.py', + 'PYMODULE'), + ('pandas.tests.generic.test_label_or_level_utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/generic/test_label_or_level_utils.py', + 'PYMODULE'), + ('pandas.tests.generic.test_series', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/generic/test_series.py', + 'PYMODULE'), + ('pandas.tests.generic.test_to_xarray', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/generic/test_to_xarray.py', + 'PYMODULE'), + ('pandas.tests.groupby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/__init__.py', + 'PYMODULE'), + ('pandas.tests.groupby.aggregate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/aggregate/__init__.py', + 'PYMODULE'), + ('pandas.tests.groupby.aggregate.test_aggregate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/aggregate/test_aggregate.py', + 'PYMODULE'), + ('pandas.tests.groupby.aggregate.test_cython', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/aggregate/test_cython.py', + 'PYMODULE'), + ('pandas.tests.groupby.aggregate.test_numba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/aggregate/test_numba.py', + 'PYMODULE'), + ('pandas.tests.groupby.aggregate.test_other', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/aggregate/test_other.py', + 'PYMODULE'), + ('pandas.tests.groupby.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/conftest.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/__init__.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_corrwith', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_corrwith.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_describe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_describe.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_groupby_shift_diff', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_groupby_shift_diff.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_is_monotonic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_is_monotonic.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_nlargest_nsmallest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_nlargest_nsmallest.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_nth', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_nth.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_quantile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_quantile.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_rank', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_rank.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_sample', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_sample.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_size', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_size.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_skew', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_skew.py', + 'PYMODULE'), + ('pandas.tests.groupby.methods.test_value_counts', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/methods/test_value_counts.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_all_methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_all_methods.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_api.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_apply', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_apply.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_apply_mutate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_apply_mutate.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_bin_groupby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_bin_groupby.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_categorical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_categorical.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_counting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_counting.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_cumulative', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_cumulative.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_filters', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_filters.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_groupby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_groupby.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_groupby_dropna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_groupby_dropna.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_groupby_subclass', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_groupby_subclass.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_grouping', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_grouping.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_index_as_string', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_index_as_string.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_libgroupby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_libgroupby.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_missing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_missing.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_numba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_numba.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_numeric_only', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_numeric_only.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_pipe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_pipe.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_raises', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_raises.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_reductions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_reductions.py', + 'PYMODULE'), + ('pandas.tests.groupby.test_timegrouper', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/test_timegrouper.py', + 'PYMODULE'), + ('pandas.tests.groupby.transform', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/transform/__init__.py', + 'PYMODULE'), + ('pandas.tests.groupby.transform.test_numba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/transform/test_numba.py', + 'PYMODULE'), + ('pandas.tests.groupby.transform.test_transform', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/groupby/transform/test_transform.py', + 'PYMODULE'), + ('pandas.tests.indexes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.base_class', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/base_class/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.base_class.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/base_class/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.indexes.base_class.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/base_class/test_formats.py', + 'PYMODULE'), + ('pandas.tests.indexes.base_class.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/base_class/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.base_class.test_pickle', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/base_class/test_pickle.py', + 'PYMODULE'), + ('pandas.tests.indexes.base_class.test_reshape', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/base_class/test_reshape.py', + 'PYMODULE'), + ('pandas.tests.indexes.base_class.test_setops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/base_class/test_setops.py', + 'PYMODULE'), + ('pandas.tests.indexes.base_class.test_where', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/base_class/test_where.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical.test_append', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/test_append.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/test_astype.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical.test_category', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/test_category.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical.test_equals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/test_equals.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical.test_fillna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/test_fillna.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/test_formats.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical.test_map', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/test_map.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical.test_reindex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/test_reindex.py', + 'PYMODULE'), + ('pandas.tests.indexes.categorical.test_setops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/categorical/test_setops.py', + 'PYMODULE'), + ('pandas.tests.indexes.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/conftest.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimelike_', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimelike_/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimelike_.test_drop_duplicates', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimelike_/test_drop_duplicates.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimelike_.test_equals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimelike_/test_equals.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimelike_.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimelike_/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimelike_.test_is_monotonic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimelike_/test_is_monotonic.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimelike_.test_nat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimelike_/test_nat.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimelike_.test_sort_values', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimelike_/test_sort_values.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimelike_.test_value_counts', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimelike_/test_value_counts.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_asof', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_asof.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_astype.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_delete', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_delete.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_factorize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_factorize.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_fillna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_fillna.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_insert', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_insert.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_isocalendar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_isocalendar.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_map', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_map.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_normalize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_normalize.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_repeat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_repeat.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_resolution', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_resolution.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_round', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_round.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_shift', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_shift.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_snap', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_snap.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_to_frame', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_to_frame.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_to_julian_date', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_to_julian_date.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_to_period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_to_period.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_to_pydatetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_to_pydatetime.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_to_series', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_to_series.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_tz_convert', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_tz_convert.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_tz_localize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_tz_localize.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.methods.test_unique', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/methods/test_unique.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_date_range', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_date_range.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_datetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_datetime.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_formats.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_freq_attr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_freq_attr.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_iter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_iter.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_join', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_join.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_npfuncs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_npfuncs.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_ops.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_partial_slicing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_partial_slicing.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_pickle', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_pickle.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_reindex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_reindex.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_scalar_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_scalar_compat.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_setops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_setops.py', + 'PYMODULE'), + ('pandas.tests.indexes.datetimes.test_timezones', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/datetimes/test_timezones.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/test_astype.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval.test_equals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/test_equals.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/test_formats.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval.test_interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/test_interval.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval.test_interval_range', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/test_interval_range.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval.test_interval_tree', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/test_interval_tree.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval.test_join', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/test_join.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval.test_pickle', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/test_pickle.py', + 'PYMODULE'), + ('pandas.tests.indexes.interval.test_setops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/interval/test_setops.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/conftest.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_analytics', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_analytics.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_astype.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_compat.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_conversion', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_conversion.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_copy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_copy.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_drop', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_drop.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_duplicates', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_duplicates.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_equivalence', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_equivalence.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_formats.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_get_level_values', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_get_level_values.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_get_set', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_get_set.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_integrity', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_integrity.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_isin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_isin.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_join', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_join.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_lexsort', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_lexsort.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_missing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_missing.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_monotonic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_monotonic.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_names', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_names.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_partial_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_partial_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_pickle', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_pickle.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_reindex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_reindex.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_reshape', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_reshape.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_setops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_setops.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_sorting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_sorting.py', + 'PYMODULE'), + ('pandas.tests.indexes.multi.test_take', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/multi/test_take.py', + 'PYMODULE'), + ('pandas.tests.indexes.numeric', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/numeric/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.numeric.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/numeric/test_astype.py', + 'PYMODULE'), + ('pandas.tests.indexes.numeric.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/numeric/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.numeric.test_join', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/numeric/test_join.py', + 'PYMODULE'), + ('pandas.tests.indexes.numeric.test_numeric', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/numeric/test_numeric.py', + 'PYMODULE'), + ('pandas.tests.indexes.numeric.test_setops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/numeric/test_setops.py', + 'PYMODULE'), + ('pandas.tests.indexes.object', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/object/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.object.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/object/test_astype.py', + 'PYMODULE'), + ('pandas.tests.indexes.object.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/object/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/methods/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.methods.test_asfreq', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/methods/test_asfreq.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.methods.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/methods/test_astype.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.methods.test_factorize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/methods/test_factorize.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.methods.test_fillna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/methods/test_fillna.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.methods.test_insert', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/methods/test_insert.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.methods.test_is_full', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/methods/test_is_full.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.methods.test_repeat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/methods/test_repeat.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.methods.test_shift', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/methods/test_shift.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.methods.test_to_timestamp', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/methods/test_to_timestamp.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_formats.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_freq_attr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_freq_attr.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_join', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_join.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_monotonic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_monotonic.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_partial_slicing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_partial_slicing.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_period.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_period_range', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_period_range.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_pickle', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_pickle.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_resolution', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_resolution.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_scalar_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_scalar_compat.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_searchsorted', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_searchsorted.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_setops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_setops.py', + 'PYMODULE'), + ('pandas.tests.indexes.period.test_tools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/period/test_tools.py', + 'PYMODULE'), + ('pandas.tests.indexes.ranges', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/ranges/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.ranges.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/ranges/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.indexes.ranges.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/ranges/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.ranges.test_join', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/ranges/test_join.py', + 'PYMODULE'), + ('pandas.tests.indexes.ranges.test_range', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/ranges/test_range.py', + 'PYMODULE'), + ('pandas.tests.indexes.ranges.test_setops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/ranges/test_setops.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_any_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_any_index.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_base.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_common.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_datetimelike', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_datetimelike.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_engines', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_engines.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_frozen', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_frozen.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_index_new', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_index_new.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_numpy_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_numpy_compat.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_old_base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_old_base.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_setops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_setops.py', + 'PYMODULE'), + ('pandas.tests.indexes.test_subclass', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/test_subclass.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/methods/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.methods.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/methods/test_astype.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.methods.test_factorize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/methods/test_factorize.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.methods.test_fillna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/methods/test_fillna.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.methods.test_insert', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/methods/test_insert.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.methods.test_repeat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/methods/test_repeat.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.methods.test_shift', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/methods/test_shift.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_delete', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_delete.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_formats.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_freq_attr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_freq_attr.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_join', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_join.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_ops.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_pickle', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_pickle.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_scalar_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_scalar_compat.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_searchsorted', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_searchsorted.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_setops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_setops.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_timedelta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_timedelta.py', + 'PYMODULE'), + ('pandas.tests.indexes.timedeltas.test_timedelta_range', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexes/timedeltas/test_timedelta_range.py', + 'PYMODULE'), + ('pandas.tests.indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexing.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/common.py', + 'PYMODULE'), + ('pandas.tests.indexing.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/conftest.py', + 'PYMODULE'), + ('pandas.tests.indexing.interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/interval/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexing.interval.test_interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/interval/test_interval.py', + 'PYMODULE'), + ('pandas.tests.indexing.interval.test_interval_new', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/interval/test_interval_new.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/__init__.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex.test_chaining_and_caching', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/test_chaining_and_caching.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex.test_datetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/test_datetime.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex.test_getitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/test_getitem.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex.test_iloc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/test_iloc.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex.test_indexing_slow', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/test_indexing_slow.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex.test_loc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/test_loc.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex.test_multiindex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/test_multiindex.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex.test_partial', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/test_partial.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex.test_setitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/test_setitem.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex.test_slice', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/test_slice.py', + 'PYMODULE'), + ('pandas.tests.indexing.multiindex.test_sorted', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/multiindex/test_sorted.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_at', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_at.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_categorical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_categorical.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_chaining_and_caching', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_chaining_and_caching.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_check_indexer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_check_indexer.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_coercion', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_coercion.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_datetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_datetime.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_floats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_floats.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_iat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_iat.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_iloc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_iloc.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_indexers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_indexers.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_loc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_loc.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_na_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_na_indexing.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_partial', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_partial.py', + 'PYMODULE'), + ('pandas.tests.indexing.test_scalar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/indexing/test_scalar.py', + 'PYMODULE'), + ('pandas.tests.interchange', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/interchange/__init__.py', + 'PYMODULE'), + ('pandas.tests.interchange.test_impl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/interchange/test_impl.py', + 'PYMODULE'), + ('pandas.tests.interchange.test_spec_conformance', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/interchange/test_spec_conformance.py', + 'PYMODULE'), + ('pandas.tests.interchange.test_utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/interchange/test_utils.py', + 'PYMODULE'), + ('pandas.tests.internals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/internals/__init__.py', + 'PYMODULE'), + ('pandas.tests.internals.test_api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/internals/test_api.py', + 'PYMODULE'), + ('pandas.tests.internals.test_internals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/internals/test_internals.py', + 'PYMODULE'), + ('pandas.tests.internals.test_managers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/internals/test_managers.py', + 'PYMODULE'), + ('pandas.tests.io', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/conftest.py', + 'PYMODULE'), + ('pandas.tests.io.excel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/excel/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.excel.test_odf', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/excel/test_odf.py', + 'PYMODULE'), + ('pandas.tests.io.excel.test_odswriter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/excel/test_odswriter.py', + 'PYMODULE'), + ('pandas.tests.io.excel.test_openpyxl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/excel/test_openpyxl.py', + 'PYMODULE'), + ('pandas.tests.io.excel.test_readers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/excel/test_readers.py', + 'PYMODULE'), + ('pandas.tests.io.excel.test_style', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/excel/test_style.py', + 'PYMODULE'), + ('pandas.tests.io.excel.test_writers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/excel/test_writers.py', + 'PYMODULE'), + ('pandas.tests.io.excel.test_xlrd', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/excel/test_xlrd.py', + 'PYMODULE'), + ('pandas.tests.io.excel.test_xlsxwriter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/excel/test_xlsxwriter.py', + 'PYMODULE'), + ('pandas.tests.io.formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style.test_bar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/test_bar.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style.test_exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/test_exceptions.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style.test_format', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/test_format.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style.test_highlight', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/test_highlight.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style.test_html', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/test_html.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style.test_matplotlib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/test_matplotlib.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style.test_non_unique', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/test_non_unique.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style.test_style', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/test_style.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style.test_to_latex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/test_to_latex.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style.test_to_string', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/test_to_string.py', + 'PYMODULE'), + ('pandas.tests.io.formats.style.test_tooltip', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/style/test_tooltip.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_console', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_console.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_css', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_css.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_eng_formatting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_eng_formatting.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_format', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_format.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_ipython_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_ipython_compat.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_printing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_printing.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_to_csv', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_to_csv.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_to_excel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_to_excel.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_to_html', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_to_html.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_to_latex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_to_latex.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_to_markdown', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_to_markdown.py', + 'PYMODULE'), + ('pandas.tests.io.formats.test_to_string', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/formats/test_to_string.py', + 'PYMODULE'), + ('pandas.tests.io.generate_legacy_storage_files', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/generate_legacy_storage_files.py', + 'PYMODULE'), + ('pandas.tests.io.json', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/json/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.json.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/json/conftest.py', + 'PYMODULE'), + ('pandas.tests.io.json.test_compression', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/json/test_compression.py', + 'PYMODULE'), + ('pandas.tests.io.json.test_deprecated_kwargs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/json/test_deprecated_kwargs.py', + 'PYMODULE'), + ('pandas.tests.io.json.test_json_table_schema', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/json/test_json_table_schema.py', + 'PYMODULE'), + ('pandas.tests.io.json.test_json_table_schema_ext_dtype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/json/test_json_table_schema_ext_dtype.py', + 'PYMODULE'), + ('pandas.tests.io.json.test_normalize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/json/test_normalize.py', + 'PYMODULE'), + ('pandas.tests.io.json.test_pandas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/json/test_pandas.py', + 'PYMODULE'), + ('pandas.tests.io.json.test_readlines', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/json/test_readlines.py', + 'PYMODULE'), + ('pandas.tests.io.json.test_ujson', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/json/test_ujson.py', + 'PYMODULE'), + ('pandas.tests.io.parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_chunksize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_chunksize.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_common_basic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_common_basic.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_data_list', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_data_list.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_decimal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_decimal.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_file_buffer_url', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_file_buffer_url.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_float', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_float.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_index.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_inf', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_inf.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_ints', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_ints.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_iterator', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_iterator.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_read_errors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_read_errors.py', + 'PYMODULE'), + ('pandas.tests.io.parser.common.test_verbose', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/common/test_verbose.py', + 'PYMODULE'), + ('pandas.tests.io.parser.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/conftest.py', + 'PYMODULE'), + ('pandas.tests.io.parser.dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/dtypes/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.parser.dtypes.test_categorical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/dtypes/test_categorical.py', + 'PYMODULE'), + ('pandas.tests.io.parser.dtypes.test_dtypes_basic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/dtypes/test_dtypes_basic.py', + 'PYMODULE'), + ('pandas.tests.io.parser.dtypes.test_empty', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/dtypes/test_empty.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_c_parser_only', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_c_parser_only.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_comment', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_comment.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_compression', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_compression.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_concatenate_chunks', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_concatenate_chunks.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_converters', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_converters.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_dialect', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_dialect.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_encoding', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_encoding.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_header', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_header.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_index_col', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_index_col.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_mangle_dupes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_mangle_dupes.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_multi_thread', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_multi_thread.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_na_values', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_na_values.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_network', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_network.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_parse_dates', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_parse_dates.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_python_parser_only', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_python_parser_only.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_quoting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_quoting.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_read_fwf', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_read_fwf.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_skiprows', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_skiprows.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_textreader', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_textreader.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_unsupported', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_unsupported.py', + 'PYMODULE'), + ('pandas.tests.io.parser.test_upcast', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/test_upcast.py', + 'PYMODULE'), + ('pandas.tests.io.parser.usecols', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/usecols/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.parser.usecols.test_parse_dates', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/usecols/test_parse_dates.py', + 'PYMODULE'), + ('pandas.tests.io.parser.usecols.test_strings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/usecols/test_strings.py', + 'PYMODULE'), + ('pandas.tests.io.parser.usecols.test_usecols_basic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/parser/usecols/test_usecols_basic.py', + 'PYMODULE'), + ('pandas.tests.io.pytables', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/common.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/conftest.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_append', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_append.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_categorical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_categorical.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_compat.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_complex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_complex.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_errors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_errors.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_file_handling', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_file_handling.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_keys', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_keys.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_put', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_put.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_pytables_missing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_pytables_missing.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_read', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_read.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_retain_attributes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_retain_attributes.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_round_trip', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_round_trip.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_select', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_select.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_store', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_store.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_subclass', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_subclass.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_time_series', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_time_series.py', + 'PYMODULE'), + ('pandas.tests.io.pytables.test_timezones', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/pytables/test_timezones.py', + 'PYMODULE'), + ('pandas.tests.io.sas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/sas/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.sas.test_byteswap', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/sas/test_byteswap.py', + 'PYMODULE'), + ('pandas.tests.io.sas.test_sas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/sas/test_sas.py', + 'PYMODULE'), + ('pandas.tests.io.sas.test_sas7bdat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/sas/test_sas7bdat.py', + 'PYMODULE'), + ('pandas.tests.io.sas.test_xport', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/sas/test_xport.py', + 'PYMODULE'), + ('pandas.tests.io.test_clipboard', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_clipboard.py', + 'PYMODULE'), + ('pandas.tests.io.test_common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_common.py', + 'PYMODULE'), + ('pandas.tests.io.test_compression', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_compression.py', + 'PYMODULE'), + ('pandas.tests.io.test_feather', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_feather.py', + 'PYMODULE'), + ('pandas.tests.io.test_fsspec', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_fsspec.py', + 'PYMODULE'), + ('pandas.tests.io.test_gbq', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_gbq.py', + 'PYMODULE'), + ('pandas.tests.io.test_gcs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_gcs.py', + 'PYMODULE'), + ('pandas.tests.io.test_html', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_html.py', + 'PYMODULE'), + ('pandas.tests.io.test_http_headers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_http_headers.py', + 'PYMODULE'), + ('pandas.tests.io.test_orc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_orc.py', + 'PYMODULE'), + ('pandas.tests.io.test_parquet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_parquet.py', + 'PYMODULE'), + ('pandas.tests.io.test_pickle', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_pickle.py', + 'PYMODULE'), + ('pandas.tests.io.test_s3', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_s3.py', + 'PYMODULE'), + ('pandas.tests.io.test_spss', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_spss.py', + 'PYMODULE'), + ('pandas.tests.io.test_sql', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_sql.py', + 'PYMODULE'), + ('pandas.tests.io.test_stata', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/test_stata.py', + 'PYMODULE'), + ('pandas.tests.io.xml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/xml/__init__.py', + 'PYMODULE'), + ('pandas.tests.io.xml.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/xml/conftest.py', + 'PYMODULE'), + ('pandas.tests.io.xml.test_to_xml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/xml/test_to_xml.py', + 'PYMODULE'), + ('pandas.tests.io.xml.test_xml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/xml/test_xml.py', + 'PYMODULE'), + ('pandas.tests.io.xml.test_xml_dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/io/xml/test_xml_dtypes.py', + 'PYMODULE'), + ('pandas.tests.libs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/libs/__init__.py', + 'PYMODULE'), + ('pandas.tests.libs.test_hashtable', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/libs/test_hashtable.py', + 'PYMODULE'), + ('pandas.tests.libs.test_join', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/libs/test_join.py', + 'PYMODULE'), + ('pandas.tests.libs.test_lib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/libs/test_lib.py', + 'PYMODULE'), + ('pandas.tests.libs.test_libalgos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/libs/test_libalgos.py', + 'PYMODULE'), + ('pandas.tests.plotting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/__init__.py', + 'PYMODULE'), + ('pandas.tests.plotting.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/common.py', + 'PYMODULE'), + ('pandas.tests.plotting.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/conftest.py', + 'PYMODULE'), + ('pandas.tests.plotting.frame', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/frame/__init__.py', + 'PYMODULE'), + ('pandas.tests.plotting.frame.test_frame', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/frame/test_frame.py', + 'PYMODULE'), + ('pandas.tests.plotting.frame.test_frame_color', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/frame/test_frame_color.py', + 'PYMODULE'), + ('pandas.tests.plotting.frame.test_frame_groupby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/frame/test_frame_groupby.py', + 'PYMODULE'), + ('pandas.tests.plotting.frame.test_frame_legend', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/frame/test_frame_legend.py', + 'PYMODULE'), + ('pandas.tests.plotting.frame.test_frame_subplots', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/frame/test_frame_subplots.py', + 'PYMODULE'), + ('pandas.tests.plotting.frame.test_hist_box_by', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/frame/test_hist_box_by.py', + 'PYMODULE'), + ('pandas.tests.plotting.test_backend', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/test_backend.py', + 'PYMODULE'), + ('pandas.tests.plotting.test_boxplot_method', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/test_boxplot_method.py', + 'PYMODULE'), + ('pandas.tests.plotting.test_common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/test_common.py', + 'PYMODULE'), + ('pandas.tests.plotting.test_converter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/test_converter.py', + 'PYMODULE'), + ('pandas.tests.plotting.test_datetimelike', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/test_datetimelike.py', + 'PYMODULE'), + ('pandas.tests.plotting.test_groupby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/test_groupby.py', + 'PYMODULE'), + ('pandas.tests.plotting.test_hist_method', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/test_hist_method.py', + 'PYMODULE'), + ('pandas.tests.plotting.test_misc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/test_misc.py', + 'PYMODULE'), + ('pandas.tests.plotting.test_series', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/test_series.py', + 'PYMODULE'), + ('pandas.tests.plotting.test_style', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/plotting/test_style.py', + 'PYMODULE'), + ('pandas.tests.reductions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reductions/__init__.py', + 'PYMODULE'), + ('pandas.tests.reductions.test_reductions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reductions/test_reductions.py', + 'PYMODULE'), + ('pandas.tests.reductions.test_stat_reductions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reductions/test_stat_reductions.py', + 'PYMODULE'), + ('pandas.tests.resample', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/resample/__init__.py', + 'PYMODULE'), + ('pandas.tests.resample.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/resample/conftest.py', + 'PYMODULE'), + ('pandas.tests.resample.test_base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/resample/test_base.py', + 'PYMODULE'), + ('pandas.tests.resample.test_datetime_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/resample/test_datetime_index.py', + 'PYMODULE'), + ('pandas.tests.resample.test_period_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/resample/test_period_index.py', + 'PYMODULE'), + ('pandas.tests.resample.test_resample_api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/resample/test_resample_api.py', + 'PYMODULE'), + ('pandas.tests.resample.test_resampler_grouper', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/resample/test_resampler_grouper.py', + 'PYMODULE'), + ('pandas.tests.resample.test_time_grouper', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/resample/test_time_grouper.py', + 'PYMODULE'), + ('pandas.tests.resample.test_timedelta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/resample/test_timedelta.py', + 'PYMODULE'), + ('pandas.tests.reshape', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/__init__.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/__init__.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/conftest.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.test_append', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/test_append.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.test_append_common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/test_append_common.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.test_categorical', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/test_categorical.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.test_concat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/test_concat.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.test_dataframe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/test_dataframe.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.test_datetimes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/test_datetimes.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.test_empty', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/test_empty.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.test_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/test_index.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.test_invalid', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/test_invalid.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.test_series', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/test_series.py', + 'PYMODULE'), + ('pandas.tests.reshape.concat.test_sort', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/concat/test_sort.py', + 'PYMODULE'), + ('pandas.tests.reshape.merge', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/merge/__init__.py', + 'PYMODULE'), + ('pandas.tests.reshape.merge.test_join', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/merge/test_join.py', + 'PYMODULE'), + ('pandas.tests.reshape.merge.test_merge', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/merge/test_merge.py', + 'PYMODULE'), + ('pandas.tests.reshape.merge.test_merge_asof', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/merge/test_merge_asof.py', + 'PYMODULE'), + ('pandas.tests.reshape.merge.test_merge_cross', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/merge/test_merge_cross.py', + 'PYMODULE'), + ('pandas.tests.reshape.merge.test_merge_index_as_string', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/merge/test_merge_index_as_string.py', + 'PYMODULE'), + ('pandas.tests.reshape.merge.test_merge_ordered', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/merge/test_merge_ordered.py', + 'PYMODULE'), + ('pandas.tests.reshape.merge.test_multi', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/merge/test_multi.py', + 'PYMODULE'), + ('pandas.tests.reshape.test_crosstab', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/test_crosstab.py', + 'PYMODULE'), + ('pandas.tests.reshape.test_cut', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/test_cut.py', + 'PYMODULE'), + ('pandas.tests.reshape.test_from_dummies', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/test_from_dummies.py', + 'PYMODULE'), + ('pandas.tests.reshape.test_get_dummies', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/test_get_dummies.py', + 'PYMODULE'), + ('pandas.tests.reshape.test_melt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/test_melt.py', + 'PYMODULE'), + ('pandas.tests.reshape.test_pivot', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/test_pivot.py', + 'PYMODULE'), + ('pandas.tests.reshape.test_pivot_multilevel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/test_pivot_multilevel.py', + 'PYMODULE'), + ('pandas.tests.reshape.test_qcut', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/test_qcut.py', + 'PYMODULE'), + ('pandas.tests.reshape.test_union_categoricals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/test_union_categoricals.py', + 'PYMODULE'), + ('pandas.tests.reshape.test_util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/reshape/test_util.py', + 'PYMODULE'), + ('pandas.tests.scalar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/__init__.py', + 'PYMODULE'), + ('pandas.tests.scalar.interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/interval/__init__.py', + 'PYMODULE'), + ('pandas.tests.scalar.interval.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/interval/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.scalar.interval.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/interval/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.scalar.interval.test_contains', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/interval/test_contains.py', + 'PYMODULE'), + ('pandas.tests.scalar.interval.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/interval/test_formats.py', + 'PYMODULE'), + ('pandas.tests.scalar.interval.test_interval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/interval/test_interval.py', + 'PYMODULE'), + ('pandas.tests.scalar.interval.test_overlaps', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/interval/test_overlaps.py', + 'PYMODULE'), + ('pandas.tests.scalar.period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/period/__init__.py', + 'PYMODULE'), + ('pandas.tests.scalar.period.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/period/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.scalar.period.test_asfreq', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/period/test_asfreq.py', + 'PYMODULE'), + ('pandas.tests.scalar.period.test_period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/period/test_period.py', + 'PYMODULE'), + ('pandas.tests.scalar.test_na_scalar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/test_na_scalar.py', + 'PYMODULE'), + ('pandas.tests.scalar.test_nat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/test_nat.py', + 'PYMODULE'), + ('pandas.tests.scalar.timedelta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timedelta/__init__.py', + 'PYMODULE'), + ('pandas.tests.scalar.timedelta.methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timedelta/methods/__init__.py', + 'PYMODULE'), + ('pandas.tests.scalar.timedelta.methods.test_as_unit', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timedelta/methods/test_as_unit.py', + 'PYMODULE'), + ('pandas.tests.scalar.timedelta.methods.test_round', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timedelta/methods/test_round.py', + 'PYMODULE'), + ('pandas.tests.scalar.timedelta.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timedelta/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.scalar.timedelta.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timedelta/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.scalar.timedelta.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timedelta/test_formats.py', + 'PYMODULE'), + ('pandas.tests.scalar.timedelta.test_timedelta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timedelta/test_timedelta.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/__init__.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/methods/__init__.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.methods.test_as_unit', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/methods/test_as_unit.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.methods.test_normalize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/methods/test_normalize.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.methods.test_replace', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/methods/test_replace.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.methods.test_round', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/methods/test_round.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.methods.test_timestamp_method', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/methods/test_timestamp_method.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.methods.test_to_julian_date', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/methods/test_to_julian_date.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.methods.test_to_pydatetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/methods/test_to_pydatetime.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.methods.test_tz_convert', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/methods/test_tz_convert.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.methods.test_tz_localize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/methods/test_tz_localize.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.test_comparisons', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/test_comparisons.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/test_formats.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.test_timestamp', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/test_timestamp.py', + 'PYMODULE'), + ('pandas.tests.scalar.timestamp.test_timezones', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/scalar/timestamp/test_timezones.py', + 'PYMODULE'), + ('pandas.tests.series', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/__init__.py', + 'PYMODULE'), + ('pandas.tests.series.accessors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/accessors/__init__.py', + 'PYMODULE'), + ('pandas.tests.series.accessors.test_cat_accessor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/accessors/test_cat_accessor.py', + 'PYMODULE'), + ('pandas.tests.series.accessors.test_dt_accessor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/accessors/test_dt_accessor.py', + 'PYMODULE'), + ('pandas.tests.series.accessors.test_list_accessor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/accessors/test_list_accessor.py', + 'PYMODULE'), + ('pandas.tests.series.accessors.test_sparse_accessor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/accessors/test_sparse_accessor.py', + 'PYMODULE'), + ('pandas.tests.series.accessors.test_str_accessor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/accessors/test_str_accessor.py', + 'PYMODULE'), + ('pandas.tests.series.accessors.test_struct_accessor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/accessors/test_struct_accessor.py', + 'PYMODULE'), + ('pandas.tests.series.indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/__init__.py', + 'PYMODULE'), + ('pandas.tests.series.indexing.test_datetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/test_datetime.py', + 'PYMODULE'), + ('pandas.tests.series.indexing.test_delitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/test_delitem.py', + 'PYMODULE'), + ('pandas.tests.series.indexing.test_get', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/test_get.py', + 'PYMODULE'), + ('pandas.tests.series.indexing.test_getitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/test_getitem.py', + 'PYMODULE'), + ('pandas.tests.series.indexing.test_indexing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/test_indexing.py', + 'PYMODULE'), + ('pandas.tests.series.indexing.test_mask', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/test_mask.py', + 'PYMODULE'), + ('pandas.tests.series.indexing.test_set_value', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/test_set_value.py', + 'PYMODULE'), + ('pandas.tests.series.indexing.test_setitem', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/test_setitem.py', + 'PYMODULE'), + ('pandas.tests.series.indexing.test_take', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/test_take.py', + 'PYMODULE'), + ('pandas.tests.series.indexing.test_where', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/test_where.py', + 'PYMODULE'), + ('pandas.tests.series.indexing.test_xs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/indexing/test_xs.py', + 'PYMODULE'), + ('pandas.tests.series.methods', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/__init__.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_add_prefix_suffix', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_add_prefix_suffix.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_align', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_align.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_argsort', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_argsort.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_asof', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_asof.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_astype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_astype.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_autocorr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_autocorr.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_between', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_between.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_case_when', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_case_when.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_clip', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_clip.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_combine', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_combine.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_combine_first', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_combine_first.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_compare', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_compare.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_convert_dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_convert_dtypes.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_copy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_copy.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_count', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_count.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_cov_corr', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_cov_corr.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_describe', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_describe.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_diff', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_diff.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_drop', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_drop.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_drop_duplicates', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_drop_duplicates.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_dropna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_dropna.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_dtypes.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_duplicated', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_duplicated.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_equals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_equals.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_explode', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_explode.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_fillna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_fillna.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_get_numeric_data', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_get_numeric_data.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_head_tail', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_head_tail.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_infer_objects', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_infer_objects.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_info', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_info.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_interpolate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_interpolate.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_is_monotonic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_is_monotonic.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_is_unique', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_is_unique.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_isin', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_isin.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_isna', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_isna.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_item', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_item.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_map', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_map.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_matmul', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_matmul.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_nlargest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_nlargest.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_nunique', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_nunique.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_pct_change', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_pct_change.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_pop', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_pop.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_quantile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_quantile.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_rank', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_rank.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_reindex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_reindex.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_reindex_like', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_reindex_like.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_rename', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_rename.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_rename_axis', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_rename_axis.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_repeat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_repeat.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_replace', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_replace.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_reset_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_reset_index.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_round', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_round.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_searchsorted', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_searchsorted.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_set_name', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_set_name.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_size', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_size.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_sort_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_sort_index.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_sort_values', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_sort_values.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_to_csv', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_to_csv.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_to_dict', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_to_dict.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_to_frame', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_to_frame.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_to_numpy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_to_numpy.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_tolist', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_tolist.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_truncate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_truncate.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_tz_localize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_tz_localize.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_unique', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_unique.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_unstack', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_unstack.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_update', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_update.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_value_counts', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_value_counts.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_values', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_values.py', + 'PYMODULE'), + ('pandas.tests.series.methods.test_view', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/methods/test_view.py', + 'PYMODULE'), + ('pandas.tests.series.test_api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_api.py', + 'PYMODULE'), + ('pandas.tests.series.test_arithmetic', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_arithmetic.py', + 'PYMODULE'), + ('pandas.tests.series.test_constructors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_constructors.py', + 'PYMODULE'), + ('pandas.tests.series.test_cumulative', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_cumulative.py', + 'PYMODULE'), + ('pandas.tests.series.test_formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_formats.py', + 'PYMODULE'), + ('pandas.tests.series.test_iteration', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_iteration.py', + 'PYMODULE'), + ('pandas.tests.series.test_logical_ops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_logical_ops.py', + 'PYMODULE'), + ('pandas.tests.series.test_missing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_missing.py', + 'PYMODULE'), + ('pandas.tests.series.test_npfuncs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_npfuncs.py', + 'PYMODULE'), + ('pandas.tests.series.test_reductions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_reductions.py', + 'PYMODULE'), + ('pandas.tests.series.test_subclass', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_subclass.py', + 'PYMODULE'), + ('pandas.tests.series.test_ufunc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_ufunc.py', + 'PYMODULE'), + ('pandas.tests.series.test_unary', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_unary.py', + 'PYMODULE'), + ('pandas.tests.series.test_validate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/series/test_validate.py', + 'PYMODULE'), + ('pandas.tests.strings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/strings/__init__.py', + 'PYMODULE'), + ('pandas.tests.strings.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/strings/conftest.py', + 'PYMODULE'), + ('pandas.tests.strings.test_api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/strings/test_api.py', + 'PYMODULE'), + ('pandas.tests.strings.test_case_justify', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/strings/test_case_justify.py', + 'PYMODULE'), + ('pandas.tests.strings.test_cat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/strings/test_cat.py', + 'PYMODULE'), + ('pandas.tests.strings.test_extract', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/strings/test_extract.py', + 'PYMODULE'), + ('pandas.tests.strings.test_find_replace', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/strings/test_find_replace.py', + 'PYMODULE'), + ('pandas.tests.strings.test_get_dummies', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/strings/test_get_dummies.py', + 'PYMODULE'), + ('pandas.tests.strings.test_split_partition', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/strings/test_split_partition.py', + 'PYMODULE'), + ('pandas.tests.strings.test_string_array', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/strings/test_string_array.py', + 'PYMODULE'), + ('pandas.tests.strings.test_strings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/strings/test_strings.py', + 'PYMODULE'), + ('pandas.tests.test_aggregation', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_aggregation.py', + 'PYMODULE'), + ('pandas.tests.test_algos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_algos.py', + 'PYMODULE'), + ('pandas.tests.test_common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_common.py', + 'PYMODULE'), + ('pandas.tests.test_downstream', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_downstream.py', + 'PYMODULE'), + ('pandas.tests.test_errors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_errors.py', + 'PYMODULE'), + ('pandas.tests.test_expressions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_expressions.py', + 'PYMODULE'), + ('pandas.tests.test_flags', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_flags.py', + 'PYMODULE'), + ('pandas.tests.test_multilevel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_multilevel.py', + 'PYMODULE'), + ('pandas.tests.test_nanops', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_nanops.py', + 'PYMODULE'), + ('pandas.tests.test_optional_dependency', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_optional_dependency.py', + 'PYMODULE'), + ('pandas.tests.test_register_accessor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_register_accessor.py', + 'PYMODULE'), + ('pandas.tests.test_sorting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_sorting.py', + 'PYMODULE'), + ('pandas.tests.test_take', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/test_take.py', + 'PYMODULE'), + ('pandas.tests.tools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tools/__init__.py', + 'PYMODULE'), + ('pandas.tests.tools.test_to_datetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tools/test_to_datetime.py', + 'PYMODULE'), + ('pandas.tests.tools.test_to_numeric', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tools/test_to_numeric.py', + 'PYMODULE'), + ('pandas.tests.tools.test_to_time', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tools/test_to_time.py', + 'PYMODULE'), + ('pandas.tests.tools.test_to_timedelta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tools/test_to_timedelta.py', + 'PYMODULE'), + ('pandas.tests.tseries', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/__init__.py', + 'PYMODULE'), + ('pandas.tests.tseries.frequencies', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/frequencies/__init__.py', + 'PYMODULE'), + ('pandas.tests.tseries.frequencies.test_freq_code', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/frequencies/test_freq_code.py', + 'PYMODULE'), + ('pandas.tests.tseries.frequencies.test_frequencies', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/frequencies/test_frequencies.py', + 'PYMODULE'), + ('pandas.tests.tseries.frequencies.test_inference', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/frequencies/test_inference.py', + 'PYMODULE'), + ('pandas.tests.tseries.holiday', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/holiday/__init__.py', + 'PYMODULE'), + ('pandas.tests.tseries.holiday.test_calendar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/holiday/test_calendar.py', + 'PYMODULE'), + ('pandas.tests.tseries.holiday.test_federal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/holiday/test_federal.py', + 'PYMODULE'), + ('pandas.tests.tseries.holiday.test_holiday', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/holiday/test_holiday.py', + 'PYMODULE'), + ('pandas.tests.tseries.holiday.test_observance', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/holiday/test_observance.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/__init__.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/common.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_business_day', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_business_day.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_business_hour', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_business_hour.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_business_month', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_business_month.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_business_quarter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_business_quarter.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_business_year', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_business_year.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_common.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_custom_business_day', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_custom_business_day.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_custom_business_hour', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_custom_business_hour.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_custom_business_month', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_custom_business_month.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_dst', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_dst.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_easter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_easter.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_fiscal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_fiscal.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_index', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_index.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_month', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_month.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_offsets', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_offsets.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_offsets_properties', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_offsets_properties.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_quarter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_quarter.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_ticks', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_ticks.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_week', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_week.py', + 'PYMODULE'), + ('pandas.tests.tseries.offsets.test_year', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tseries/offsets/test_year.py', + 'PYMODULE'), + ('pandas.tests.tslibs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/__init__.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_api.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_array_to_datetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_array_to_datetime.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_ccalendar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_ccalendar.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_conversion', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_conversion.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_fields', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_fields.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_libfrequencies', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_libfrequencies.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_liboffsets', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_liboffsets.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_np_datetime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_np_datetime.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_npy_units', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_npy_units.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_parse_iso8601', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_parse_iso8601.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_parsing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_parsing.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_period', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_period.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_resolution', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_resolution.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_strptime', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_strptime.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_timedeltas', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_timedeltas.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_timezones', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_timezones.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_to_offset', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_to_offset.py', + 'PYMODULE'), + ('pandas.tests.tslibs.test_tzconversion', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/tslibs/test_tzconversion.py', + 'PYMODULE'), + ('pandas.tests.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/__init__.py', + 'PYMODULE'), + ('pandas.tests.util.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/conftest.py', + 'PYMODULE'), + ('pandas.tests.util.test_assert_almost_equal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_assert_almost_equal.py', + 'PYMODULE'), + ('pandas.tests.util.test_assert_attr_equal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_assert_attr_equal.py', + 'PYMODULE'), + ('pandas.tests.util.test_assert_categorical_equal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_assert_categorical_equal.py', + 'PYMODULE'), + ('pandas.tests.util.test_assert_extension_array_equal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_assert_extension_array_equal.py', + 'PYMODULE'), + ('pandas.tests.util.test_assert_frame_equal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_assert_frame_equal.py', + 'PYMODULE'), + ('pandas.tests.util.test_assert_index_equal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_assert_index_equal.py', + 'PYMODULE'), + ('pandas.tests.util.test_assert_interval_array_equal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_assert_interval_array_equal.py', + 'PYMODULE'), + ('pandas.tests.util.test_assert_numpy_array_equal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_assert_numpy_array_equal.py', + 'PYMODULE'), + ('pandas.tests.util.test_assert_produces_warning', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_assert_produces_warning.py', + 'PYMODULE'), + ('pandas.tests.util.test_assert_series_equal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_assert_series_equal.py', + 'PYMODULE'), + ('pandas.tests.util.test_deprecate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_deprecate.py', + 'PYMODULE'), + ('pandas.tests.util.test_deprecate_kwarg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_deprecate_kwarg.py', + 'PYMODULE'), + ('pandas.tests.util.test_deprecate_nonkeyword_arguments', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_deprecate_nonkeyword_arguments.py', + 'PYMODULE'), + ('pandas.tests.util.test_doc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_doc.py', + 'PYMODULE'), + ('pandas.tests.util.test_hashing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_hashing.py', + 'PYMODULE'), + ('pandas.tests.util.test_numba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_numba.py', + 'PYMODULE'), + ('pandas.tests.util.test_rewrite_warning', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_rewrite_warning.py', + 'PYMODULE'), + ('pandas.tests.util.test_shares_memory', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_shares_memory.py', + 'PYMODULE'), + ('pandas.tests.util.test_show_versions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_show_versions.py', + 'PYMODULE'), + ('pandas.tests.util.test_util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_util.py', + 'PYMODULE'), + ('pandas.tests.util.test_validate_args', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_validate_args.py', + 'PYMODULE'), + ('pandas.tests.util.test_validate_args_and_kwargs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_validate_args_and_kwargs.py', + 'PYMODULE'), + ('pandas.tests.util.test_validate_inclusive', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_validate_inclusive.py', + 'PYMODULE'), + ('pandas.tests.util.test_validate_kwargs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/util/test_validate_kwargs.py', + 'PYMODULE'), + ('pandas.tests.window', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/__init__.py', + 'PYMODULE'), + ('pandas.tests.window.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/conftest.py', + 'PYMODULE'), + ('pandas.tests.window.moments', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/moments/__init__.py', + 'PYMODULE'), + ('pandas.tests.window.moments.conftest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/moments/conftest.py', + 'PYMODULE'), + ('pandas.tests.window.moments.test_moments_consistency_ewm', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/moments/test_moments_consistency_ewm.py', + 'PYMODULE'), + ('pandas.tests.window.moments.test_moments_consistency_expanding', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/moments/test_moments_consistency_expanding.py', + 'PYMODULE'), + ('pandas.tests.window.moments.test_moments_consistency_rolling', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/moments/test_moments_consistency_rolling.py', + 'PYMODULE'), + ('pandas.tests.window.test_api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_api.py', + 'PYMODULE'), + ('pandas.tests.window.test_apply', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_apply.py', + 'PYMODULE'), + ('pandas.tests.window.test_base_indexer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_base_indexer.py', + 'PYMODULE'), + ('pandas.tests.window.test_cython_aggregations', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_cython_aggregations.py', + 'PYMODULE'), + ('pandas.tests.window.test_dtypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_dtypes.py', + 'PYMODULE'), + ('pandas.tests.window.test_ewm', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_ewm.py', + 'PYMODULE'), + ('pandas.tests.window.test_expanding', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_expanding.py', + 'PYMODULE'), + ('pandas.tests.window.test_groupby', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_groupby.py', + 'PYMODULE'), + ('pandas.tests.window.test_numba', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_numba.py', + 'PYMODULE'), + ('pandas.tests.window.test_online', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_online.py', + 'PYMODULE'), + ('pandas.tests.window.test_pairwise', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_pairwise.py', + 'PYMODULE'), + ('pandas.tests.window.test_rolling', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_rolling.py', + 'PYMODULE'), + ('pandas.tests.window.test_rolling_functions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_rolling_functions.py', + 'PYMODULE'), + ('pandas.tests.window.test_rolling_quantile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_rolling_quantile.py', + 'PYMODULE'), + ('pandas.tests.window.test_rolling_skew_kurt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_rolling_skew_kurt.py', + 'PYMODULE'), + ('pandas.tests.window.test_timeseries_window', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_timeseries_window.py', + 'PYMODULE'), + ('pandas.tests.window.test_win_type', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tests/window/test_win_type.py', + 'PYMODULE'), + ('pandas.tseries', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tseries/__init__.py', + 'PYMODULE'), + ('pandas.tseries.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tseries/api.py', + 'PYMODULE'), + ('pandas.tseries.frequencies', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tseries/frequencies.py', + 'PYMODULE'), + ('pandas.tseries.holiday', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tseries/holiday.py', + 'PYMODULE'), + ('pandas.tseries.offsets', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/tseries/offsets.py', + 'PYMODULE'), + ('pandas.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/util/__init__.py', + 'PYMODULE'), + ('pandas.util._decorators', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/util/_decorators.py', + 'PYMODULE'), + ('pandas.util._doctools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/util/_doctools.py', + 'PYMODULE'), + ('pandas.util._exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/util/_exceptions.py', + 'PYMODULE'), + ('pandas.util._print_versions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/util/_print_versions.py', + 'PYMODULE'), + ('pandas.util._test_decorators', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/util/_test_decorators.py', + 'PYMODULE'), + ('pandas.util._tester', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/util/_tester.py', + 'PYMODULE'), + ('pandas.util._validators', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/util/_validators.py', + 'PYMODULE'), + ('pandas.util.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/util/version/__init__.py', + 'PYMODULE'), + ('pathlib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/pathlib.py', + 'PYMODULE'), + ('pdb', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/pdb.py', + 'PYMODULE'), + ('pickle', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/pickle.py', + 'PYMODULE'), + ('pickletools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/pickletools.py', + 'PYMODULE'), + ('pkg_resources', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pkg_resources/__init__.py', + 'PYMODULE'), + ('pkgutil', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/pkgutil.py', + 'PYMODULE'), + ('platform', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/platform.py', + 'PYMODULE'), + ('platformdirs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/platformdirs/__init__.py', + 'PYMODULE'), + ('platformdirs.android', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/platformdirs/android.py', + 'PYMODULE'), + ('platformdirs.api', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/platformdirs/api.py', + 'PYMODULE'), + ('platformdirs.macos', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/platformdirs/macos.py', + 'PYMODULE'), + ('platformdirs.unix', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/platformdirs/unix.py', + 'PYMODULE'), + ('platformdirs.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/platformdirs/version.py', + 'PYMODULE'), + ('platformdirs.windows', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/platformdirs/windows.py', + 'PYMODULE'), + ('plistlib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/plistlib.py', + 'PYMODULE'), + ('pprint', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/pprint.py', + 'PYMODULE'), + ('py_compile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/py_compile.py', + 'PYMODULE'), + ('pyasn1', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/__init__.py', + 'PYMODULE'), + ('pyasn1.codec', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/codec/__init__.py', + 'PYMODULE'), + ('pyasn1.codec.ber', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/codec/ber/__init__.py', + 'PYMODULE'), + ('pyasn1.codec.ber.decoder', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/codec/ber/decoder.py', + 'PYMODULE'), + ('pyasn1.codec.ber.encoder', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/codec/ber/encoder.py', + 'PYMODULE'), + ('pyasn1.codec.ber.eoo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/codec/ber/eoo.py', + 'PYMODULE'), + ('pyasn1.codec.streaming', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/codec/streaming.py', + 'PYMODULE'), + ('pyasn1.compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/compat/__init__.py', + 'PYMODULE'), + ('pyasn1.compat.integer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/compat/integer.py', + 'PYMODULE'), + ('pyasn1.debug', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/debug.py', + 'PYMODULE'), + ('pyasn1.error', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/error.py', + 'PYMODULE'), + ('pyasn1.type', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/type/__init__.py', + 'PYMODULE'), + ('pyasn1.type.base', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/type/base.py', + 'PYMODULE'), + ('pyasn1.type.char', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/type/char.py', + 'PYMODULE'), + ('pyasn1.type.constraint', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/type/constraint.py', + 'PYMODULE'), + ('pyasn1.type.error', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/type/error.py', + 'PYMODULE'), + ('pyasn1.type.namedtype', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/type/namedtype.py', + 'PYMODULE'), + ('pyasn1.type.namedval', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/type/namedval.py', + 'PYMODULE'), + ('pyasn1.type.tag', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/type/tag.py', + 'PYMODULE'), + ('pyasn1.type.tagmap', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/type/tagmap.py', + 'PYMODULE'), + ('pyasn1.type.univ', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/type/univ.py', + 'PYMODULE'), + ('pyasn1.type.useful', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pyasn1/type/useful.py', + 'PYMODULE'), + ('pycparser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pycparser/__init__.py', + 'PYMODULE'), + ('pycparser.ast_transforms', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pycparser/ast_transforms.py', + 'PYMODULE'), + ('pycparser.c_ast', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pycparser/c_ast.py', + 'PYMODULE'), + ('pycparser.c_lexer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pycparser/c_lexer.py', + 'PYMODULE'), + ('pycparser.c_parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pycparser/c_parser.py', + 'PYMODULE'), + ('pycparser.lextab', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pycparser/lextab.py', + 'PYMODULE'), + ('pycparser.ply', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pycparser/ply/__init__.py', + 'PYMODULE'), + ('pycparser.ply.lex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pycparser/ply/lex.py', + 'PYMODULE'), + ('pycparser.ply.yacc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pycparser/ply/yacc.py', + 'PYMODULE'), + ('pycparser.plyparser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pycparser/plyparser.py', + 'PYMODULE'), + ('pycparser.yacctab', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pycparser/yacctab.py', + 'PYMODULE'), + ('pydoc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/pydoc.py', + 'PYMODULE'), + ('pydoc_data', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/pydoc_data/__init__.py', + 'PYMODULE'), + ('pydoc_data.topics', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/pydoc_data/topics.py', + 'PYMODULE'), + ('pytz', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/__init__.py', + 'PYMODULE'), + ('pytz.exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/exceptions.py', + 'PYMODULE'), + ('pytz.lazy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/lazy.py', + 'PYMODULE'), + ('pytz.tzfile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/tzfile.py', + 'PYMODULE'), + ('pytz.tzinfo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pytz/tzinfo.py', + 'PYMODULE'), + ('queue', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/queue.py', + 'PYMODULE'), + ('quopri', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/quopri.py', + 'PYMODULE'), + ('random', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/random.py', + 'PYMODULE'), + ('rlcompleter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/rlcompleter.py', + 'PYMODULE'), + ('runpy', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/runpy.py', + 'PYMODULE'), + ('secrets', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/secrets.py', + 'PYMODULE'), + ('selectors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/selectors.py', + 'PYMODULE'), + ('setuptools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/__init__.py', + 'PYMODULE'), + ('setuptools._core_metadata', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_core_metadata.py', + 'PYMODULE'), + ('setuptools._distutils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/__init__.py', + 'PYMODULE'), + ('setuptools._distutils._log', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/_log.py', + 'PYMODULE'), + ('setuptools._distutils._modified', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/_modified.py', + 'PYMODULE'), + ('setuptools._distutils._msvccompiler', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/_msvccompiler.py', + 'PYMODULE'), + ('setuptools._distutils.archive_util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/archive_util.py', + 'PYMODULE'), + ('setuptools._distutils.ccompiler', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/ccompiler.py', + 'PYMODULE'), + ('setuptools._distutils.cmd', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/cmd.py', + 'PYMODULE'), + ('setuptools._distutils.command', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/command/__init__.py', + 'PYMODULE'), + ('setuptools._distutils.command.bdist', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/command/bdist.py', + 'PYMODULE'), + ('setuptools._distutils.command.build', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/command/build.py', + 'PYMODULE'), + ('setuptools._distutils.command.build_ext', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/command/build_ext.py', + 'PYMODULE'), + ('setuptools._distutils.command.sdist', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/command/sdist.py', + 'PYMODULE'), + ('setuptools._distutils.compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/compat/__init__.py', + 'PYMODULE'), + ('setuptools._distutils.compat.py39', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/compat/py39.py', + 'PYMODULE'), + ('setuptools._distutils.core', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/core.py', + 'PYMODULE'), + ('setuptools._distutils.debug', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/debug.py', + 'PYMODULE'), + ('setuptools._distutils.dir_util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/dir_util.py', + 'PYMODULE'), + ('setuptools._distutils.dist', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/dist.py', + 'PYMODULE'), + ('setuptools._distutils.errors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/errors.py', + 'PYMODULE'), + ('setuptools._distutils.extension', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/extension.py', + 'PYMODULE'), + ('setuptools._distutils.fancy_getopt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/fancy_getopt.py', + 'PYMODULE'), + ('setuptools._distutils.file_util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/file_util.py', + 'PYMODULE'), + ('setuptools._distutils.filelist', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/filelist.py', + 'PYMODULE'), + ('setuptools._distutils.log', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/log.py', + 'PYMODULE'), + ('setuptools._distutils.spawn', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/spawn.py', + 'PYMODULE'), + ('setuptools._distutils.sysconfig', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/sysconfig.py', + 'PYMODULE'), + ('setuptools._distutils.text_file', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/text_file.py', + 'PYMODULE'), + ('setuptools._distutils.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/util.py', + 'PYMODULE'), + ('setuptools._distutils.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/version.py', + 'PYMODULE'), + ('setuptools._distutils.versionpredicate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_distutils/versionpredicate.py', + 'PYMODULE'), + ('setuptools._entry_points', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_entry_points.py', + 'PYMODULE'), + ('setuptools._imp', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_imp.py', + 'PYMODULE'), + ('setuptools._importlib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_importlib.py', + 'PYMODULE'), + ('setuptools._itertools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_itertools.py', + 'PYMODULE'), + ('setuptools._normalization', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_normalization.py', + 'PYMODULE'), + ('setuptools._path', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_path.py', + 'PYMODULE'), + ('setuptools._reqs', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_reqs.py', + 'PYMODULE'), + ('setuptools._shutil', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_shutil.py', + 'PYMODULE'), + ('setuptools._static', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_static.py', + 'PYMODULE'), + ('setuptools._vendor', '-', 'PYMODULE'), + ('setuptools._vendor.backports', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/backports/__init__.py', + 'PYMODULE'), + ('setuptools._vendor.backports.tarfile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__init__.py', + 'PYMODULE'), + ('setuptools._vendor.backports.tarfile.compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__init__.py', + 'PYMODULE'), + ('setuptools._vendor.backports.tarfile.compat.py38', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/py38.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__init__.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._adapters', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._collections', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_collections.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_compat.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._functools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_functools.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._itertools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._meta', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_meta.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata._text', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_text.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata.compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__init__.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata.compat.py311', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py311.py', + 'PYMODULE'), + ('setuptools._vendor.importlib_metadata.compat.py39', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py39.py', + 'PYMODULE'), + ('setuptools._vendor.jaraco', '-', 'PYMODULE'), + ('setuptools._vendor.jaraco.context', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/jaraco/context.py', + 'PYMODULE'), + ('setuptools._vendor.jaraco.functools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__init__.py', + 'PYMODULE'), + ('setuptools._vendor.jaraco.text', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__init__.py', + 'PYMODULE'), + ('setuptools._vendor.more_itertools', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__init__.py', + 'PYMODULE'), + ('setuptools._vendor.more_itertools.more', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/more.py', + 'PYMODULE'), + ('setuptools._vendor.more_itertools.recipes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/recipes.py', + 'PYMODULE'), + ('setuptools._vendor.packaging', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/__init__.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._elffile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/_elffile.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._manylinux', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/_manylinux.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._musllinux', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/_musllinux.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/_parser.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._structures', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/_structures.py', + 'PYMODULE'), + ('setuptools._vendor.packaging._tokenizer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/_tokenizer.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.markers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/markers.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.requirements', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/requirements.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.specifiers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/specifiers.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.tags', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/tags.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/utils.py', + 'PYMODULE'), + ('setuptools._vendor.packaging.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/packaging/version.py', + 'PYMODULE'), + ('setuptools._vendor.tomli', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/tomli/__init__.py', + 'PYMODULE'), + ('setuptools._vendor.tomli._parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/tomli/_parser.py', + 'PYMODULE'), + ('setuptools._vendor.tomli._re', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/tomli/_re.py', + 'PYMODULE'), + ('setuptools._vendor.tomli._types', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/tomli/_types.py', + 'PYMODULE'), + ('setuptools._vendor.zipp', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/zipp/__init__.py', + 'PYMODULE'), + ('setuptools._vendor.zipp.compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__init__.py', + 'PYMODULE'), + ('setuptools._vendor.zipp.compat.py310', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/py310.py', + 'PYMODULE'), + ('setuptools._vendor.zipp.glob', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/_vendor/zipp/glob.py', + 'PYMODULE'), + ('setuptools.archive_util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/archive_util.py', + 'PYMODULE'), + ('setuptools.command', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/command/__init__.py', + 'PYMODULE'), + ('setuptools.command._requirestxt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/command/_requirestxt.py', + 'PYMODULE'), + ('setuptools.command.bdist_egg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/command/bdist_egg.py', + 'PYMODULE'), + ('setuptools.command.bdist_wheel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/command/bdist_wheel.py', + 'PYMODULE'), + ('setuptools.command.build', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/command/build.py', + 'PYMODULE'), + ('setuptools.command.egg_info', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/command/egg_info.py', + 'PYMODULE'), + ('setuptools.command.sdist', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/command/sdist.py', + 'PYMODULE'), + ('setuptools.command.setopt', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/command/setopt.py', + 'PYMODULE'), + ('setuptools.compat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/compat/__init__.py', + 'PYMODULE'), + ('setuptools.compat.py310', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/compat/py310.py', + 'PYMODULE'), + ('setuptools.compat.py311', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/compat/py311.py', + 'PYMODULE'), + ('setuptools.compat.py39', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/compat/py39.py', + 'PYMODULE'), + ('setuptools.config', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/config/__init__.py', + 'PYMODULE'), + ('setuptools.config._apply_pyprojecttoml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__init__.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject.error_reporting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/error_reporting.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject.extra_validations', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/extra_validations.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject.fastjsonschema_exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject.fastjsonschema_validations', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py', + 'PYMODULE'), + ('setuptools.config._validate_pyproject.formats', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/formats.py', + 'PYMODULE'), + ('setuptools.config.expand', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/config/expand.py', + 'PYMODULE'), + ('setuptools.config.pyprojecttoml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/config/pyprojecttoml.py', + 'PYMODULE'), + ('setuptools.config.setupcfg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/config/setupcfg.py', + 'PYMODULE'), + ('setuptools.depends', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/depends.py', + 'PYMODULE'), + ('setuptools.discovery', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/discovery.py', + 'PYMODULE'), + ('setuptools.dist', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/dist.py', + 'PYMODULE'), + ('setuptools.errors', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/errors.py', + 'PYMODULE'), + ('setuptools.extension', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/extension.py', + 'PYMODULE'), + ('setuptools.glob', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/glob.py', + 'PYMODULE'), + ('setuptools.installer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/installer.py', + 'PYMODULE'), + ('setuptools.logging', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/logging.py', + 'PYMODULE'), + ('setuptools.monkey', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/monkey.py', + 'PYMODULE'), + ('setuptools.msvc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/msvc.py', + 'PYMODULE'), + ('setuptools.unicode_utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/unicode_utils.py', + 'PYMODULE'), + ('setuptools.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/version.py', + 'PYMODULE'), + ('setuptools.warnings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/warnings.py', + 'PYMODULE'), + ('setuptools.wheel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/wheel.py', + 'PYMODULE'), + ('setuptools.windows_support', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/setuptools/windows_support.py', + 'PYMODULE'), + ('shlex', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/shlex.py', + 'PYMODULE'), + ('shutil', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/shutil.py', + 'PYMODULE'), + ('signal', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/signal.py', + 'PYMODULE'), + ('site', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site.py', + 'PYMODULE'), + ('six', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/six.py', + 'PYMODULE'), + ('socket', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/socket.py', + 'PYMODULE'), + ('socketserver', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/socketserver.py', + 'PYMODULE'), + ('soupsieve', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/soupsieve/__init__.py', + 'PYMODULE'), + ('soupsieve.__meta__', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/soupsieve/__meta__.py', + 'PYMODULE'), + ('soupsieve.css_match', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/soupsieve/css_match.py', + 'PYMODULE'), + ('soupsieve.css_parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/soupsieve/css_parser.py', + 'PYMODULE'), + ('soupsieve.css_types', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/soupsieve/css_types.py', + 'PYMODULE'), + ('soupsieve.pretty', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/soupsieve/pretty.py', + 'PYMODULE'), + ('soupsieve.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/soupsieve/util.py', + 'PYMODULE'), + ('sqlite3', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/sqlite3/__init__.py', + 'PYMODULE'), + ('sqlite3.__main__', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/sqlite3/__main__.py', + 'PYMODULE'), + ('sqlite3.dbapi2', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/sqlite3/dbapi2.py', + 'PYMODULE'), + ('sqlite3.dump', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/sqlite3/dump.py', + 'PYMODULE'), + ('ssl', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/ssl.py', + 'PYMODULE'), + ('statistics', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/statistics.py', + 'PYMODULE'), + ('string', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/string.py', + 'PYMODULE'), + ('stringprep', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/stringprep.py', + 'PYMODULE'), + ('subprocess', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/subprocess.py', + 'PYMODULE'), + ('sysconfig', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/sysconfig.py', + 'PYMODULE'), + ('tarfile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/tarfile.py', + 'PYMODULE'), + ('tempfile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/tempfile.py', + 'PYMODULE'), + ('textwrap', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/textwrap.py', + 'PYMODULE'), + ('threading', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/threading.py', + 'PYMODULE'), + ('token', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/token.py', + 'PYMODULE'), + ('tokenize', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/tokenize.py', + 'PYMODULE'), + ('tomllib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/tomllib/__init__.py', + 'PYMODULE'), + ('tomllib._parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/tomllib/_parser.py', + 'PYMODULE'), + ('tomllib._re', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/tomllib/_re.py', + 'PYMODULE'), + ('tomllib._types', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/tomllib/_types.py', + 'PYMODULE'), + ('tracemalloc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/tracemalloc.py', + 'PYMODULE'), + ('tty', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/tty.py', + 'PYMODULE'), + ('typing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/typing.py', + 'PYMODULE'), + ('typing_extensions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/typing_extensions.py', + 'PYMODULE'), + ('unittest', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/__init__.py', + 'PYMODULE'), + ('unittest._log', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/_log.py', + 'PYMODULE'), + ('unittest.async_case', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/async_case.py', + 'PYMODULE'), + ('unittest.case', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/case.py', + 'PYMODULE'), + ('unittest.loader', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/loader.py', + 'PYMODULE'), + ('unittest.main', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/main.py', + 'PYMODULE'), + ('unittest.mock', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/mock.py', + 'PYMODULE'), + ('unittest.result', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/result.py', + 'PYMODULE'), + ('unittest.runner', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/runner.py', + 'PYMODULE'), + ('unittest.signals', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/signals.py', + 'PYMODULE'), + ('unittest.suite', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/suite.py', + 'PYMODULE'), + ('unittest.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/unittest/util.py', + 'PYMODULE'), + ('urllib', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/urllib/__init__.py', + 'PYMODULE'), + ('urllib.error', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/urllib/error.py', + 'PYMODULE'), + ('urllib.parse', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/urllib/parse.py', + 'PYMODULE'), + ('urllib.request', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/urllib/request.py', + 'PYMODULE'), + ('urllib.response', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/urllib/response.py', + 'PYMODULE'), + ('uuid', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/uuid.py', + 'PYMODULE'), + ('webbrowser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/webbrowser.py', + 'PYMODULE'), + ('wheel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/__init__.py', + 'PYMODULE'), + ('wheel.cli', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/cli/__init__.py', + 'PYMODULE'), + ('wheel.cli.convert', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/cli/convert.py', + 'PYMODULE'), + ('wheel.cli.pack', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/cli/pack.py', + 'PYMODULE'), + ('wheel.cli.tags', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/cli/tags.py', + 'PYMODULE'), + ('wheel.cli.unpack', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/cli/unpack.py', + 'PYMODULE'), + ('wheel.macosx_libfile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/macosx_libfile.py', + 'PYMODULE'), + ('wheel.metadata', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/metadata.py', + 'PYMODULE'), + ('wheel.util', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/util.py', + 'PYMODULE'), + ('wheel.vendored', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/__init__.py', + 'PYMODULE'), + ('wheel.vendored.packaging', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/__init__.py', + 'PYMODULE'), + ('wheel.vendored.packaging._elffile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/_elffile.py', + 'PYMODULE'), + ('wheel.vendored.packaging._manylinux', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/_manylinux.py', + 'PYMODULE'), + ('wheel.vendored.packaging._musllinux', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/_musllinux.py', + 'PYMODULE'), + ('wheel.vendored.packaging._parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/_parser.py', + 'PYMODULE'), + ('wheel.vendored.packaging._structures', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/_structures.py', + 'PYMODULE'), + ('wheel.vendored.packaging._tokenizer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/_tokenizer.py', + 'PYMODULE'), + ('wheel.vendored.packaging.markers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/markers.py', + 'PYMODULE'), + ('wheel.vendored.packaging.requirements', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/requirements.py', + 'PYMODULE'), + ('wheel.vendored.packaging.specifiers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/specifiers.py', + 'PYMODULE'), + ('wheel.vendored.packaging.tags', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/tags.py', + 'PYMODULE'), + ('wheel.vendored.packaging.utils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/utils.py', + 'PYMODULE'), + ('wheel.vendored.packaging.version', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/vendored/packaging/version.py', + 'PYMODULE'), + ('wheel.wheelfile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/wheel/wheelfile.py', + 'PYMODULE'), + ('xlrd', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlrd/__init__.py', + 'PYMODULE'), + ('xlrd.biffh', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlrd/biffh.py', + 'PYMODULE'), + ('xlrd.book', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlrd/book.py', + 'PYMODULE'), + ('xlrd.compdoc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlrd/compdoc.py', + 'PYMODULE'), + ('xlrd.formatting', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlrd/formatting.py', + 'PYMODULE'), + ('xlrd.formula', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlrd/formula.py', + 'PYMODULE'), + ('xlrd.info', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlrd/info.py', + 'PYMODULE'), + ('xlrd.sheet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlrd/sheet.py', + 'PYMODULE'), + ('xlrd.timemachine', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlrd/timemachine.py', + 'PYMODULE'), + ('xlrd.xldate', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlrd/xldate.py', + 'PYMODULE'), + ('xlsxwriter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/__init__.py', + 'PYMODULE'), + ('xlsxwriter.app', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/app.py', + 'PYMODULE'), + ('xlsxwriter.chart', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/chart.py', + 'PYMODULE'), + ('xlsxwriter.chart_area', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/chart_area.py', + 'PYMODULE'), + ('xlsxwriter.chart_bar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/chart_bar.py', + 'PYMODULE'), + ('xlsxwriter.chart_column', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/chart_column.py', + 'PYMODULE'), + ('xlsxwriter.chart_doughnut', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/chart_doughnut.py', + 'PYMODULE'), + ('xlsxwriter.chart_line', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/chart_line.py', + 'PYMODULE'), + ('xlsxwriter.chart_pie', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/chart_pie.py', + 'PYMODULE'), + ('xlsxwriter.chart_radar', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/chart_radar.py', + 'PYMODULE'), + ('xlsxwriter.chart_scatter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/chart_scatter.py', + 'PYMODULE'), + ('xlsxwriter.chart_stock', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/chart_stock.py', + 'PYMODULE'), + ('xlsxwriter.chartsheet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/chartsheet.py', + 'PYMODULE'), + ('xlsxwriter.comments', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/comments.py', + 'PYMODULE'), + ('xlsxwriter.contenttypes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/contenttypes.py', + 'PYMODULE'), + ('xlsxwriter.core', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/core.py', + 'PYMODULE'), + ('xlsxwriter.custom', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/custom.py', + 'PYMODULE'), + ('xlsxwriter.drawing', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/drawing.py', + 'PYMODULE'), + ('xlsxwriter.exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/exceptions.py', + 'PYMODULE'), + ('xlsxwriter.feature_property_bag', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/feature_property_bag.py', + 'PYMODULE'), + ('xlsxwriter.format', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/format.py', + 'PYMODULE'), + ('xlsxwriter.metadata', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/metadata.py', + 'PYMODULE'), + ('xlsxwriter.packager', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/packager.py', + 'PYMODULE'), + ('xlsxwriter.relationships', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/relationships.py', + 'PYMODULE'), + ('xlsxwriter.rich_value', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/rich_value.py', + 'PYMODULE'), + ('xlsxwriter.rich_value_rel', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/rich_value_rel.py', + 'PYMODULE'), + ('xlsxwriter.rich_value_structure', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/rich_value_structure.py', + 'PYMODULE'), + ('xlsxwriter.rich_value_types', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/rich_value_types.py', + 'PYMODULE'), + ('xlsxwriter.shape', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/shape.py', + 'PYMODULE'), + ('xlsxwriter.sharedstrings', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/sharedstrings.py', + 'PYMODULE'), + ('xlsxwriter.styles', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/styles.py', + 'PYMODULE'), + ('xlsxwriter.table', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/table.py', + 'PYMODULE'), + ('xlsxwriter.theme', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/theme.py', + 'PYMODULE'), + ('xlsxwriter.utility', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/utility.py', + 'PYMODULE'), + ('xlsxwriter.vml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/vml.py', + 'PYMODULE'), + ('xlsxwriter.workbook', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/workbook.py', + 'PYMODULE'), + ('xlsxwriter.worksheet', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/worksheet.py', + 'PYMODULE'), + ('xlsxwriter.xmlwriter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/xlsxwriter/xmlwriter.py', + 'PYMODULE'), + ('xml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/__init__.py', + 'PYMODULE'), + ('xml.dom', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/dom/__init__.py', + 'PYMODULE'), + ('xml.dom.NodeFilter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/dom/NodeFilter.py', + 'PYMODULE'), + ('xml.dom.domreg', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/dom/domreg.py', + 'PYMODULE'), + ('xml.dom.expatbuilder', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/dom/expatbuilder.py', + 'PYMODULE'), + ('xml.dom.minicompat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/dom/minicompat.py', + 'PYMODULE'), + ('xml.dom.minidom', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/dom/minidom.py', + 'PYMODULE'), + ('xml.dom.pulldom', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/dom/pulldom.py', + 'PYMODULE'), + ('xml.dom.xmlbuilder', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/dom/xmlbuilder.py', + 'PYMODULE'), + ('xml.etree', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/etree/__init__.py', + 'PYMODULE'), + ('xml.etree.ElementInclude', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/etree/ElementInclude.py', + 'PYMODULE'), + ('xml.etree.ElementPath', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/etree/ElementPath.py', + 'PYMODULE'), + ('xml.etree.ElementTree', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/etree/ElementTree.py', + 'PYMODULE'), + ('xml.etree.cElementTree', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/etree/cElementTree.py', + 'PYMODULE'), + ('xml.parsers', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/parsers/__init__.py', + 'PYMODULE'), + ('xml.parsers.expat', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/parsers/expat.py', + 'PYMODULE'), + ('xml.sax', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/sax/__init__.py', + 'PYMODULE'), + ('xml.sax._exceptions', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/sax/_exceptions.py', + 'PYMODULE'), + ('xml.sax.expatreader', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/sax/expatreader.py', + 'PYMODULE'), + ('xml.sax.handler', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/sax/handler.py', + 'PYMODULE'), + ('xml.sax.saxutils', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/sax/saxutils.py', + 'PYMODULE'), + ('xml.sax.xmlreader', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xml/sax/xmlreader.py', + 'PYMODULE'), + ('xmlrpc', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xmlrpc/__init__.py', + 'PYMODULE'), + ('xmlrpc.client', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xmlrpc/client.py', + 'PYMODULE'), + ('xmlrpc.server', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/xmlrpc/server.py', + 'PYMODULE'), + ('yaml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/__init__.py', + 'PYMODULE'), + ('yaml.composer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/composer.py', + 'PYMODULE'), + ('yaml.constructor', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/constructor.py', + 'PYMODULE'), + ('yaml.cyaml', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/cyaml.py', + 'PYMODULE'), + ('yaml.dumper', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/dumper.py', + 'PYMODULE'), + ('yaml.emitter', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/emitter.py', + 'PYMODULE'), + ('yaml.error', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/error.py', + 'PYMODULE'), + ('yaml.events', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/events.py', + 'PYMODULE'), + ('yaml.loader', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/loader.py', + 'PYMODULE'), + ('yaml.nodes', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/nodes.py', + 'PYMODULE'), + ('yaml.parser', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/parser.py', + 'PYMODULE'), + ('yaml.reader', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/reader.py', + 'PYMODULE'), + ('yaml.representer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/representer.py', + 'PYMODULE'), + ('yaml.resolver', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/resolver.py', + 'PYMODULE'), + ('yaml.scanner', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/scanner.py', + 'PYMODULE'), + ('yaml.serializer', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/serializer.py', + 'PYMODULE'), + ('yaml.tokens', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/tokens.py', + 'PYMODULE'), + ('zipfile', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/zipfile/__init__.py', + 'PYMODULE'), + ('zipfile._path', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/zipfile/_path/__init__.py', + 'PYMODULE'), + ('zipfile._path.glob', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/zipfile/_path/glob.py', + 'PYMODULE'), + ('zipimport', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/zipimport.py', + 'PYMODULE'), + ('zoneinfo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/zoneinfo/__init__.py', + 'PYMODULE'), + ('zoneinfo._common', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/zoneinfo/_common.py', + 'PYMODULE'), + ('zoneinfo._tzpath', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/zoneinfo/_tzpath.py', + 'PYMODULE'), + ('zoneinfo._zoneinfo', + '/opt/homebrew/Caskroom/miniconda/base/lib/python3.12/zoneinfo/_zoneinfo.py', + 'PYMODULE')]) diff --git a/build/ad_user_creator/ad-user-creator.pkg b/build/ad_user_creator/ad-user-creator.pkg new file mode 100644 index 0000000..00a7a83 Binary files /dev/null and b/build/ad_user_creator/ad-user-creator.pkg differ diff --git a/build/ad_user_creator/base_library.zip b/build/ad_user_creator/base_library.zip new file mode 100644 index 0000000..65f4736 Binary files /dev/null and b/build/ad_user_creator/base_library.zip differ diff --git a/build/ad_user_creator/localpycs/pyimod01_archive.pyc b/build/ad_user_creator/localpycs/pyimod01_archive.pyc new file mode 100644 index 0000000..e479a28 Binary files /dev/null and b/build/ad_user_creator/localpycs/pyimod01_archive.pyc differ diff --git a/build/ad_user_creator/localpycs/pyimod02_importers.pyc b/build/ad_user_creator/localpycs/pyimod02_importers.pyc new file mode 100644 index 0000000..91c346e Binary files /dev/null and b/build/ad_user_creator/localpycs/pyimod02_importers.pyc differ diff --git a/build/ad_user_creator/localpycs/pyimod03_ctypes.pyc b/build/ad_user_creator/localpycs/pyimod03_ctypes.pyc new file mode 100644 index 0000000..6e85833 Binary files /dev/null and b/build/ad_user_creator/localpycs/pyimod03_ctypes.pyc differ diff --git a/build/ad_user_creator/localpycs/struct.pyc b/build/ad_user_creator/localpycs/struct.pyc new file mode 100644 index 0000000..5adc9cd Binary files /dev/null and b/build/ad_user_creator/localpycs/struct.pyc differ diff --git a/build/ad_user_creator/warn-ad_user_creator.txt b/build/ad_user_creator/warn-ad_user_creator.txt new file mode 100644 index 0000000..f07dc97 --- /dev/null +++ b/build/ad_user_creator/warn-ad_user_creator.txt @@ -0,0 +1,352 @@ + +This file lists modules PyInstaller was not able to find. This does not +necessarily mean these modules are required for running your program. Both +Python's standard library and 3rd-party Python packages often conditionally +import optional modules, some of which may be available only on certain +platforms. + +Types of import: +* top-level: imported at the top-level - look at these first +* conditional: imported within an if-statement +* delayed: imported within a function +* optional: imported within a try-except-statement + +IMPORTANT: Do NOT post this list to the issue-tracker. Use it as a basis for + tracking down the missing module yourself. Thanks! + +missing module named pyimod02_importers - imported by /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py (delayed), /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgres.py (delayed) +missing module named _winapi - imported by encodings (delayed, conditional, optional), shutil (conditional), ntpath (optional), subprocess (conditional), mimetypes (optional), multiprocessing.connection (optional), multiprocessing.spawn (delayed, conditional), multiprocessing.reduction (conditional), multiprocessing.shared_memory (conditional), multiprocessing.heap (conditional), multiprocessing.popen_spawn_win32 (top-level), asyncio.windows_events (top-level), asyncio.windows_utils (top-level) +missing module named msvcrt - imported by subprocess (optional), getpass (optional), multiprocessing.spawn (delayed, conditional), multiprocessing.popen_spawn_win32 (top-level), asyncio.windows_events (top-level), asyncio.windows_utils (top-level), filelock._windows (conditional) +missing module named urllib.unquote - imported by urllib (optional), ldap3.core.server (optional), ldap3.utils.uri (optional) +missing module named urllib.urlopen - imported by urllib (delayed, optional), lxml.html (delayed, optional) +missing module named urllib.urlencode - imported by urllib (delayed, optional), lxml.html (delayed, optional) +missing module named nt - imported by shutil (conditional), importlib._bootstrap_external (conditional), ntpath (optional), os (delayed, conditional, optional), ctypes (delayed, conditional) +missing module named _manylinux - imported by packaging._manylinux (delayed, optional), setuptools._vendor.packaging._manylinux (delayed, optional), wheel.vendored.packaging._manylinux (delayed, optional) +missing module named '_typeshed.importlib' - imported by pkg_resources (conditional) +missing module named _typeshed - imported by pkg_resources (conditional), setuptools.glob (conditional), setuptools.compat.py311 (conditional) +missing module named jnius - imported by platformdirs.android (delayed, optional) +missing module named winreg - imported by importlib._bootstrap_external (conditional), platform (delayed, optional), mimetypes (optional), urllib.request (delayed, conditional, optional), numexpr.cpuinfo (delayed, optional), platformdirs.windows (delayed, optional), setuptools._distutils._msvccompiler (top-level), setuptools.msvc (conditional) +missing module named _overlapped - imported by asyncio.windows_events (top-level) +missing module named asyncio.DefaultEventLoopPolicy - imported by asyncio (delayed, conditional), asyncio.events (delayed, conditional) +missing module named multiprocessing.set_start_method - imported by multiprocessing (top-level), multiprocessing.spawn (top-level) +missing module named multiprocessing.get_start_method - imported by multiprocessing (top-level), multiprocessing.spawn (top-level) +missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional), zipimport (top-level) +missing module named multiprocessing.get_context - imported by multiprocessing (top-level), multiprocessing.pool (top-level), multiprocessing.managers (top-level), multiprocessing.sharedctypes (top-level) +missing module named multiprocessing.TimeoutError - imported by multiprocessing (top-level), multiprocessing.pool (top-level) +missing module named multiprocessing.BufferTooShort - imported by multiprocessing (top-level), multiprocessing.connection (top-level) +missing module named multiprocessing.AuthenticationError - imported by multiprocessing (top-level), multiprocessing.connection (top-level) +missing module named usercustomize - imported by site (delayed, optional) +missing module named sitecustomize - imported by site (delayed, optional) +missing module named trove_classifiers - imported by setuptools.config._validate_pyproject.formats (optional) +missing module named importlib_resources - imported by setuptools._vendor.jaraco.text (optional) +excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional), zipimport (top-level) +missing module named vms_lib - imported by platform (delayed, optional) +missing module named 'java.lang' - imported by platform (delayed, optional) +missing module named java - imported by platform (delayed) +missing module named _winreg - imported by platform (delayed, optional), numexpr.cpuinfo (delayed, optional) +missing module named _wmi - imported by platform (optional) +missing module named 'setuptools._vendor.backports.ssl_match_hostname' - imported by ldap3.utils.tls_backport (optional) +missing module named UserDict - imported by pytz.lazy (optional), ldap3.utils.ordDict (top-level) +missing module named 'setuptools._distutils.msvc9compiler' - imported by cffi._shimmed_dist_utils (conditional, optional) +missing module named collections.Callable - imported by collections (optional), cffi.api (optional) +missing module named _dummy_thread - imported by numpy._core.arrayprint (optional), cffi.lock (conditional, optional) +missing module named dummy_thread - imported by cffi.lock (conditional, optional) +missing module named thread - imported by cffi.lock (conditional, optional), cffi.cparser (conditional, optional) +missing module named cStringIO - imported by xlrd.timemachine (conditional), cffi.ffiplatform (optional) +missing module named cPickle - imported by pycparser.ply.yacc (delayed, optional) +missing module named cffi._pycparser - imported by cffi (optional), cffi.cparser (optional) +missing module named imp - imported by Crypto.Util._raw_api (conditional), cffi.verifier (conditional), cffi._imp_emulation (optional) +missing module named StringIO - imported by six (conditional), Crypto.Util.py3compat (conditional) +missing module named collections.Mapping - imported by collections (optional), pytz.lazy (optional), ldap3.utils.ciDict (optional) +missing module named collections.MutableMapping - imported by collections (optional), ldap3.utils.ciDict (optional) +missing module named 'pyasn1.compat.octets' - imported by ldap3.utils.asn1 (conditional) +missing module named Queue - imported by ldap3.extend.microsoft.persistentSearch (optional), ldap3.extend.standard.PersistentSearch (optional), ldap3.strategy.reusable (optional), ldap3.strategy.asyncStream (optional) +missing module named winkerberos - imported by ldap3.protocol.sasl.kerberos (conditional, optional) +missing module named 'gssapi.raw' - imported by ldap3.protocol.sasl.kerberos (optional) +missing module named gssapi - imported by ldap3.protocol.sasl.kerberos (optional) +missing module named future - imported by ldap3 (conditional, optional) +missing module named xmlrpclib - imported by defusedxml.xmlrpc (conditional) +missing module named htmlentitydefs - imported by lxml.html.soupparser (optional) +missing module named BeautifulSoup - imported by lxml.html.soupparser (optional) +missing module named chardet - imported by bs4.dammit (optional) +missing module named cchardet - imported by bs4.dammit (optional) +missing module named 'html5lib.treebuilders' - imported by bs4.builder._html5lib (top-level), lxml.html._html5builder (top-level), lxml.html.html5parser (top-level) +missing module named 'html5lib.constants' - imported by bs4.builder._html5lib (top-level) +missing module named html5lib - imported by bs4.builder._html5lib (top-level), lxml.html.html5parser (top-level) +missing module named urlparse - imported by lxml.ElementInclude (optional), lxml.html.html5parser (optional) +missing module named urllib2 - imported by lxml.ElementInclude (optional), lxml.html.html5parser (optional) +missing module named lxml_html_clean - imported by lxml.html.clean (optional) +missing module named numpy._typing._ufunc - imported by numpy._typing (conditional) +missing module named 'numpy_distutils.cpuinfo' - imported by numpy.f2py.diagnose (delayed, conditional, optional) +missing module named 'numpy_distutils.fcompiler' - imported by numpy.f2py.diagnose (delayed, conditional, optional) +missing module named 'numpy_distutils.command' - imported by numpy.f2py.diagnose (delayed, conditional, optional) +missing module named numpy_distutils - imported by numpy.f2py.diagnose (delayed, optional) +missing module named psutil - imported by numpy.testing._private.utils (delayed, optional) +missing module named win32pdh - imported by numpy.testing._private.utils (delayed, conditional) +missing module named threadpoolctl - imported by numpy.lib._utils_impl (delayed, optional) +missing module named numpy._core.zeros - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.vstack - imported by numpy._core (top-level), numpy.lib._shape_base_impl (top-level), numpy (conditional) +missing module named numpy._core.void - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.vecdot - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.ushort - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.unsignedinteger - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.ulonglong - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.ulong - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.uintp - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.uintc - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.uint64 - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.uint32 - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.uint16 - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.uint - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.ubyte - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.trunc - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.true_divide - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.transpose - imported by numpy._core (top-level), numpy.lib._function_base_impl (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.trace - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.timedelta64 - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.tensordot - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.tanh - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.tan - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.swapaxes - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.sum - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.subtract - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.str_ - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.square - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.sqrt - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional), numpy.fft._pocketfft (top-level) +missing module named numpy._core.spacing - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.sort - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.sinh - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.single - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.signedinteger - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.signbit - imported by numpy._core (delayed), numpy.testing._private.utils (delayed), numpy (conditional) +missing module named numpy._core.sign - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.short - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.rint - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.right_shift - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.result_type - imported by numpy._core (delayed), numpy.testing._private.utils (delayed), numpy (conditional), numpy.fft._pocketfft (top-level) +missing module named numpy._core.remainder - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.reciprocal - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional), numpy.fft._pocketfft (top-level) +missing module named numpy._core.radians - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.rad2deg - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.prod - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.power - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.positive - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.pi - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.outer - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.ones - imported by numpy._core (top-level), numpy.lib._polynomial_impl (top-level), numpy (conditional) +missing module named numpy._core.object_ - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy.testing._private.utils (delayed), numpy (conditional) +missing module named numpy._core.number - imported by numpy._core (delayed), numpy.testing._private.utils (delayed), numpy (conditional) +missing module named numpy._core.not_equal - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.newaxis - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.negative - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.ndarray - imported by numpy._core (top-level), numpy.lib._utils_impl (top-level), numpy.testing._private.utils (top-level), numpy (conditional) +missing module named numpy._core.multiply - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.moveaxis - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.modf - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.mod - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.minimum - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.maximum - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.max - imported by numpy._core (delayed), numpy.testing._private.utils (delayed), numpy (conditional) +missing module named numpy._core.matrix_transpose - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.matmul - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.longdouble - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.long - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.logical_xor - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.logical_or - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.logical_not - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.logical_and - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.logaddexp2 - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.logaddexp - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.log2 - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.log1p - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.log - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.linspace - imported by numpy._core (top-level), numpy.lib._index_tricks_impl (top-level), numpy (conditional) +missing module named numpy._core.less_equal - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.less - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.left_shift - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.ldexp - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.lcm - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.isscalar - imported by numpy._core (delayed), numpy.testing._private.utils (delayed), numpy.lib._polynomial_impl (top-level), numpy (conditional) +missing module named numpy._core.isnat - imported by numpy._core (top-level), numpy.testing._private.utils (top-level), numpy (conditional) +missing module named numpy._core.isnan - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy.testing._private.utils (delayed), numpy (conditional) +missing module named numpy._core.isfinite - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.intp - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy.testing._private.utils (top-level), numpy (conditional) +missing module named numpy._core.integer - imported by numpy._core (conditional), numpy (conditional), numpy.fft._helper (top-level) +missing module named numpy._core.intc - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.int8 - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.int64 - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.int32 - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.int16 - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.inf - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy.testing._private.utils (delayed), numpy (conditional) +missing module named numpy._core.inexact - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.iinfo - imported by numpy._core (top-level), numpy.lib._twodim_base_impl (top-level), numpy (conditional) +missing module named numpy._core.hypot - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.hstack - imported by numpy._core (top-level), numpy.lib._polynomial_impl (top-level), numpy (conditional) +missing module named numpy._core.heaviside - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.half - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.greater_equal - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.greater - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.gcd - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.frompyfunc - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.frexp - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.fmod - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.fmin - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.fmax - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.floor_divide - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.floor - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.floating - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.float_power - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.float32 - imported by numpy._core (top-level), numpy.testing._private.utils (top-level), numpy (conditional) +missing module named numpy._core.float16 - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.finfo - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy.lib._polynomial_impl (top-level), numpy (conditional) +missing module named numpy._core.fabs - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.expm1 - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.exp - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.euler_gamma - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.errstate - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy.testing._private.utils (delayed), numpy (conditional) +missing module named numpy._core.equal - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.empty_like - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional), numpy.fft._pocketfft (top-level) +missing module named numpy._core.empty - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy.testing._private.utils (top-level), numpy (conditional), numpy.fft._helper (top-level) +missing module named numpy._core.e - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.double - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.dot - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy.lib._polynomial_impl (top-level), numpy (conditional) +missing module named numpy._core.divmod - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.divide - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.diagonal - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.degrees - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.deg2rad - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.datetime64 - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.csingle - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.cross - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.count_nonzero - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.cosh - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.cos - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.copysign - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.conjugate - imported by numpy._core (conditional), numpy (conditional), numpy.fft._pocketfft (top-level) +missing module named numpy._core.conj - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.complexfloating - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.complex64 - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.clongdouble - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.character - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.ceil - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.cdouble - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.cbrt - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.bytes_ - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.byte - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.bool_ - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.bitwise_xor - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.bitwise_or - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.bitwise_count - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.bitwise_and - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.atleast_3d - imported by numpy._core (top-level), numpy.lib._shape_base_impl (top-level), numpy (conditional) +missing module named numpy._core.atleast_2d - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.atleast_1d - imported by numpy._core (top-level), numpy.lib._polynomial_impl (top-level), numpy (conditional) +missing module named numpy._core.asarray - imported by numpy._core (top-level), numpy.lib._array_utils_impl (top-level), numpy.linalg._linalg (top-level), numpy (conditional), numpy.fft._pocketfft (top-level), numpy.fft._helper (top-level) +missing module named numpy._core.asanyarray - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.array_repr - imported by numpy._core (top-level), numpy.testing._private.utils (top-level), numpy (conditional) +missing module named numpy._core.array2string - imported by numpy._core (delayed), numpy.testing._private.utils (delayed), numpy (conditional) +missing module named numpy._core.array - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy.testing._private.utils (top-level), numpy.lib._polynomial_impl (top-level), numpy (conditional) +missing module named numpy._core.argsort - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.arctanh - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.arctan2 - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.arctan - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.arcsinh - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.arcsin - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.arccosh - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.arccos - imported by numpy._core (conditional), numpy (conditional) +missing module named numpy._core.arange - imported by numpy._core (top-level), numpy.testing._private.utils (top-level), numpy (conditional), numpy.fft._helper (top-level) +missing module named numpy._core.amin - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.amax - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._core.all - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy.testing._private.utils (delayed), numpy (conditional) +missing module named numpy._core.add - imported by numpy._core (top-level), numpy.linalg._linalg (top-level), numpy (conditional) +missing module named numpy._distributor_init_local - imported by numpy (optional), numpy._distributor_init (optional) +missing module named openpyxl.tests - imported by openpyxl.reader.excel (optional) +missing module named pytest - imported by pandas._testing._io (delayed), pandas._testing (delayed), pandas.conftest (top-level), pandas.util._test_decorators (top-level), pandas.tests.api.test_api (top-level), pandas.tests.apply.test_frame_apply (top-level), pandas.tests.apply.test_frame_apply_relabeling (top-level), pandas.tests.apply.test_frame_transform (top-level), pandas.tests.apply.test_invalid_arg (top-level), pandas.tests.apply.test_numba (top-level), pandas.tests.apply.test_series_apply (top-level), pandas.tests.apply.test_series_transform (top-level), pandas.tests.apply.test_str (top-level), pandas.tests.arithmetic.common (top-level), pandas.tests.arithmetic.conftest (top-level), pandas.tests.arithmetic.test_array_ops (top-level), pandas.tests.arithmetic.test_datetime64 (top-level), pandas.tests.arithmetic.test_interval (top-level), pandas.tests.arithmetic.test_numeric (top-level), pandas.tests.arithmetic.test_object (top-level), pandas.tests.arithmetic.test_period (top-level), pandas.tests.arithmetic.test_timedelta64 (top-level), pandas.tests.arrays.boolean.test_arithmetic (top-level), pandas.tests.arrays.boolean.test_astype (top-level), pandas.tests.arrays.boolean.test_comparison (top-level), pandas.tests.arrays.masked_shared (top-level), pandas.tests.extension.base.accumulate (top-level), pandas.tests.extension.base.casting (top-level), pandas.tests.extension.base.constructors (top-level), pandas.tests.extension.base.dim2 (top-level), pandas.tests.extension.base.dtype (top-level), pandas.tests.extension.base.getitem (top-level), pandas.tests.extension.base.groupby (top-level), pandas.tests.extension.base.interface (top-level), pandas.tests.extension.base.io (top-level), pandas.tests.extension.base.methods (top-level), pandas.tests.extension.base.missing (top-level), pandas.tests.extension.base.ops (top-level), pandas.tests.extension.base.printing (top-level), pandas.tests.extension.base.reduce (top-level), pandas.tests.extension.base.reshaping (top-level), pandas.tests.extension.base.setitem (top-level), pandas.tests.arrays.boolean.test_construction (top-level), pandas.tests.arrays.boolean.test_function (top-level), pandas.tests.arrays.boolean.test_indexing (top-level), pandas.tests.arrays.boolean.test_logical (top-level), pandas.tests.arrays.boolean.test_reduction (top-level), pandas.tests.arrays.categorical.test_algos (top-level), pandas.tests.arrays.categorical.test_analytics (top-level), pandas.tests.arrays.categorical.test_api (top-level), pandas.tests.arrays.categorical.test_astype (top-level), pandas.tests.arrays.categorical.test_constructors (top-level), pandas.tests.arrays.categorical.test_dtypes (top-level), pandas.tests.arrays.categorical.test_indexing (top-level), pandas.tests.arrays.categorical.test_map (top-level), pandas.tests.arrays.categorical.test_missing (top-level), pandas.tests.arrays.categorical.test_operators (top-level), pandas.tests.arrays.categorical.test_replace (top-level), pandas.tests.arrays.categorical.test_repr (top-level), pandas.tests.arrays.categorical.test_sorting (top-level), pandas.tests.arrays.categorical.test_take (top-level), pandas.tests.arrays.categorical.test_warnings (top-level), pandas.tests.arrays.datetimes.test_constructors (top-level), pandas.tests.arrays.datetimes.test_cumulative (top-level), pandas.tests.arrays.datetimes.test_reductions (top-level), pandas.tests.arrays.floating.conftest (top-level), pandas.tests.arrays.floating.test_arithmetic (top-level), pandas.tests.arrays.floating.test_astype (top-level), pandas.tests.arrays.floating.test_comparison (top-level), pandas.tests.arrays.floating.test_concat (top-level), pandas.tests.arrays.floating.test_construction (top-level), pandas.tests.arrays.floating.test_function (top-level), pandas.tests.arrays.floating.test_repr (top-level), pandas.tests.arrays.floating.test_to_numpy (top-level), pandas.tests.arrays.integer.conftest (top-level), pandas.tests.arrays.integer.test_arithmetic (top-level), pandas.tests.arrays.integer.test_comparison (top-level), pandas.tests.arrays.integer.test_concat (top-level), pandas.tests.arrays.integer.test_construction (top-level), pandas.tests.arrays.integer.test_dtypes (top-level), pandas.tests.arrays.integer.test_function (top-level), pandas.tests.arrays.integer.test_reduction (top-level), pandas.tests.arrays.integer.test_repr (top-level), pandas.tests.arrays.interval.test_astype (top-level), pandas.tests.arrays.interval.test_interval (top-level), pandas.tests.arrays.interval.test_interval_pyarrow (top-level), pandas.tests.arrays.interval.test_overlaps (top-level), pandas.tests.arrays.masked.test_arithmetic (top-level), pandas.tests.arrays.masked.test_arrow_compat (top-level), pandas.tests.arrays.masked.test_function (top-level), pandas.tests.arrays.masked.test_indexing (top-level), pandas.tests.arrays.numpy_.test_numpy (top-level), pandas.tests.arrays.period.test_arrow_compat (top-level), pandas.tests.arrays.period.test_astype (top-level), pandas.tests.arrays.period.test_constructors (top-level), pandas.tests.arrays.period.test_reductions (top-level), pandas.tests.arrays.sparse.test_accessor (top-level), pandas.tests.arrays.sparse.test_arithmetics (top-level), pandas.tests.arrays.sparse.test_array (top-level), pandas.tests.arrays.sparse.test_astype (top-level), pandas.tests.arrays.sparse.test_combine_concat (top-level), pandas.tests.arrays.sparse.test_constructors (top-level), pandas.tests.arrays.sparse.test_dtype (top-level), pandas.tests.arrays.sparse.test_indexing (top-level), pandas.tests.arrays.sparse.test_libsparse (top-level), pandas.tests.arrays.sparse.test_reductions (top-level), pandas.tests.arrays.sparse.test_unary (top-level), pandas.tests.arrays.string_.test_string (top-level), pandas.tests.arrays.string_.test_string_arrow (top-level), pandas.tests.arrays.test_array (top-level), pandas.tests.arrays.test_datetimelike (top-level), pandas.tests.arrays.test_datetimes (top-level), pandas.tests.arrays.test_period (top-level), pandas.tests.arrays.test_timedeltas (top-level), pandas.tests.arrays.timedeltas.test_constructors (top-level), pandas.tests.arrays.timedeltas.test_cumulative (top-level), pandas.tests.arrays.timedeltas.test_reductions (top-level), pandas.tests.base.test_constructors (top-level), pandas.tests.base.test_conversion (top-level), pandas.tests.base.test_fillna (top-level), pandas.tests.base.test_misc (top-level), pandas.tests.base.test_transpose (top-level), pandas.tests.base.test_unique (top-level), pandas.tests.base.test_value_counts (top-level), pandas.tests.computation.test_compat (top-level), pandas.tests.computation.test_eval (top-level), pandas.tests.config.test_config (top-level), pandas.tests.config.test_localization (top-level), pandas.tests.copy_view.index.test_datetimeindex (top-level), pandas.tests.copy_view.index.test_index (top-level), pandas.tests.copy_view.index.test_periodindex (top-level), pandas.tests.copy_view.index.test_timedeltaindex (top-level), pandas.tests.copy_view.test_array (top-level), pandas.tests.copy_view.test_astype (top-level), pandas.tests.copy_view.test_chained_assignment_deprecation (top-level), pandas.tests.copy_view.test_constructors (top-level), pandas.tests.copy_view.test_core_functionalities (top-level), pandas.tests.copy_view.test_functions (top-level), pandas.tests.copy_view.test_indexing (top-level), pandas.tests.copy_view.test_internals (top-level), pandas.tests.copy_view.test_interp_fillna (top-level), pandas.tests.copy_view.test_methods (top-level), pandas.tests.copy_view.test_replace (top-level), pandas.tests.dtypes.cast.test_construct_from_scalar (top-level), pandas.tests.dtypes.cast.test_construct_ndarray (top-level), pandas.tests.dtypes.cast.test_construct_object_arr (top-level), pandas.tests.dtypes.cast.test_downcast (top-level), pandas.tests.dtypes.cast.test_find_common_type (top-level), pandas.tests.dtypes.cast.test_infer_datetimelike (top-level), pandas.tests.dtypes.cast.test_infer_dtype (top-level), pandas.tests.dtypes.cast.test_maybe_box_native (top-level), pandas.tests.dtypes.cast.test_promote (top-level), pandas.tests.dtypes.test_common (top-level), pandas.tests.dtypes.test_concat (top-level), pandas.tests.dtypes.test_dtypes (top-level), pandas.tests.dtypes.test_generic (top-level), pandas.tests.dtypes.test_inference (top-level), pandas.tests.dtypes.test_missing (top-level), pandas.tests.extension.conftest (top-level), pandas.tests.extension.decimal.test_decimal (top-level), pandas.tests.extension.json.test_json (top-level), pandas.tests.extension.list.test_list (top-level), pandas.tests.extension.test_arrow (top-level), pandas.tests.extension.test_categorical (top-level), pandas.tests.extension.test_common (top-level), pandas.tests.extension.test_datetime (top-level), pandas.tests.extension.test_extension (top-level), pandas.tests.extension.test_interval (top-level), pandas.tests.extension.test_masked (top-level), pandas.tests.extension.test_numpy (top-level), pandas.tests.extension.test_period (top-level), pandas.tests.extension.test_sparse (top-level), pandas.tests.extension.test_string (top-level), pandas.tests.frame.conftest (top-level), pandas.tests.frame.constructors.test_from_dict (top-level), pandas.tests.frame.constructors.test_from_records (top-level), pandas.tests.frame.indexing.test_coercion (top-level), pandas.tests.frame.indexing.test_delitem (top-level), pandas.tests.frame.indexing.test_get (top-level), pandas.tests.frame.indexing.test_get_value (top-level), pandas.tests.frame.indexing.test_getitem (top-level), pandas.tests.frame.indexing.test_indexing (top-level), pandas.tests.frame.indexing.test_insert (top-level), pandas.tests.frame.indexing.test_setitem (top-level), pandas.tests.frame.indexing.test_take (top-level), pandas.tests.frame.indexing.test_where (top-level), pandas.tests.frame.indexing.test_xs (top-level), pandas.tests.frame.methods.test_add_prefix_suffix (top-level), pandas.tests.frame.methods.test_align (top-level), pandas.tests.frame.methods.test_asfreq (top-level), pandas.tests.frame.methods.test_asof (top-level), pandas.tests.frame.methods.test_assign (top-level), pandas.tests.frame.methods.test_astype (top-level), pandas.tests.frame.methods.test_at_time (top-level), pandas.tests.frame.methods.test_between_time (top-level), pandas.tests.frame.methods.test_clip (top-level), pandas.tests.frame.methods.test_combine (top-level), pandas.tests.frame.methods.test_combine_first (top-level), pandas.tests.frame.methods.test_compare (top-level), pandas.tests.frame.methods.test_convert_dtypes (top-level), pandas.tests.frame.methods.test_copy (top-level), pandas.tests.frame.methods.test_cov_corr (top-level), pandas.tests.frame.methods.test_describe (top-level), pandas.tests.frame.methods.test_diff (top-level), pandas.tests.frame.methods.test_dot (top-level), pandas.tests.frame.methods.test_drop (top-level), pandas.tests.frame.methods.test_drop_duplicates (top-level), pandas.tests.frame.methods.test_droplevel (top-level), pandas.tests.frame.methods.test_dropna (top-level), pandas.tests.frame.methods.test_dtypes (top-level), pandas.tests.frame.methods.test_duplicated (top-level), pandas.tests.frame.methods.test_explode (top-level), pandas.tests.frame.methods.test_fillna (top-level), pandas.tests.frame.methods.test_filter (top-level), pandas.tests.frame.methods.test_first_and_last (top-level), pandas.tests.frame.methods.test_first_valid_index (top-level), pandas.tests.frame.methods.test_info (top-level), pandas.tests.frame.methods.test_interpolate (top-level), pandas.tests.frame.methods.test_is_homogeneous_dtype (top-level), pandas.tests.frame.methods.test_isetitem (top-level), pandas.tests.frame.methods.test_isin (top-level), pandas.tests.frame.methods.test_join (top-level), pandas.tests.frame.methods.test_map (top-level), pandas.tests.frame.methods.test_matmul (top-level), pandas.tests.frame.methods.test_nlargest (top-level), pandas.tests.frame.methods.test_pct_change (top-level), pandas.tests.frame.methods.test_pipe (top-level), pandas.tests.frame.methods.test_quantile (top-level), pandas.tests.frame.methods.test_rank (top-level), pandas.tests.frame.methods.test_reindex (top-level), pandas.tests.frame.methods.test_reindex_like (top-level), pandas.tests.frame.methods.test_rename (top-level), pandas.tests.frame.methods.test_rename_axis (top-level), pandas.tests.frame.methods.test_reorder_levels (top-level), pandas.tests.frame.methods.test_replace (top-level), pandas.tests.frame.methods.test_reset_index (top-level), pandas.tests.frame.methods.test_round (top-level), pandas.tests.frame.methods.test_sample (top-level), pandas.tests.frame.methods.test_select_dtypes (top-level), pandas.tests.frame.methods.test_set_axis (top-level), pandas.tests.frame.methods.test_set_index (top-level), pandas.tests.frame.methods.test_shift (top-level), pandas.tests.frame.methods.test_size (top-level), pandas.tests.frame.methods.test_sort_index (top-level), pandas.tests.frame.methods.test_sort_values (top-level), pandas.tests.frame.methods.test_swapaxes (top-level), pandas.tests.frame.methods.test_swaplevel (top-level), pandas.tests.frame.methods.test_to_csv (top-level), pandas.tests.frame.methods.test_to_dict (top-level), pandas.tests.frame.methods.test_to_dict_of_blocks (top-level), pandas.tests.frame.methods.test_to_period (top-level), pandas.tests.frame.methods.test_to_records (top-level), pandas.tests.frame.methods.test_to_timestamp (top-level), pandas.tests.frame.methods.test_transpose (top-level), pandas.tests.frame.methods.test_truncate (top-level), pandas.tests.frame.methods.test_tz_convert (top-level), pandas.tests.frame.methods.test_tz_localize (top-level), pandas.tests.frame.methods.test_update (top-level), pandas.tests.frame.methods.test_value_counts (top-level), pandas.tests.frame.methods.test_values (top-level), pandas.tests.frame.test_api (top-level), pandas.tests.frame.test_arithmetic (top-level), pandas.tests.frame.test_arrow_interface (top-level), pandas.tests.frame.test_block_internals (top-level), pandas.tests.frame.test_constructors (top-level), pandas.tests.frame.test_cumulative (top-level), pandas.tests.frame.test_iteration (top-level), pandas.tests.frame.test_logical_ops (top-level), pandas.tests.frame.test_nonunique_indexes (top-level), pandas.tests.frame.test_query_eval (top-level), pandas.tests.frame.test_reductions (top-level), pandas.tests.frame.test_repr (top-level), pandas.tests.frame.test_stack_unstack (top-level), pandas.tests.frame.test_subclass (top-level), pandas.tests.frame.test_ufunc (top-level), pandas.tests.frame.test_unary (top-level), pandas.tests.frame.test_validate (top-level), pandas.tests.generic.test_duplicate_labels (top-level), pandas.tests.generic.test_finalize (top-level), pandas.tests.generic.test_frame (top-level), pandas.tests.generic.test_generic (top-level), pandas.tests.generic.test_label_or_level_utils (top-level), pandas.tests.generic.test_series (top-level), pandas.tests.generic.test_to_xarray (top-level), pandas.tests.groupby.aggregate.test_aggregate (top-level), pandas.tests.groupby.aggregate.test_cython (top-level), pandas.tests.groupby.aggregate.test_numba (top-level), pandas.tests.groupby.aggregate.test_other (top-level), pandas.tests.groupby.conftest (top-level), pandas.tests.groupby.methods.test_describe (top-level), pandas.tests.groupby.methods.test_groupby_shift_diff (top-level), pandas.tests.groupby.methods.test_is_monotonic (top-level), pandas.tests.groupby.methods.test_nlargest_nsmallest (top-level), pandas.tests.groupby.methods.test_nth (top-level), pandas.tests.groupby.methods.test_quantile (top-level), pandas.tests.groupby.methods.test_rank (top-level), pandas.tests.groupby.methods.test_sample (top-level), pandas.tests.groupby.methods.test_size (top-level), pandas.tests.groupby.methods.test_value_counts (top-level), pandas.tests.groupby.test_all_methods (top-level), pandas.tests.groupby.test_api (top-level), pandas.tests.groupby.test_apply (top-level), pandas.tests.groupby.test_bin_groupby (top-level), pandas.tests.groupby.test_categorical (top-level), pandas.tests.groupby.test_counting (top-level), pandas.tests.groupby.test_cumulative (top-level), pandas.tests.groupby.test_filters (top-level), pandas.tests.groupby.test_groupby (top-level), pandas.tests.groupby.test_groupby_dropna (top-level), pandas.tests.groupby.test_groupby_subclass (top-level), pandas.tests.groupby.test_grouping (top-level), pandas.tests.groupby.test_index_as_string (top-level), pandas.tests.groupby.test_indexing (top-level), pandas.tests.groupby.test_libgroupby (top-level), pandas.tests.groupby.test_missing (top-level), pandas.tests.groupby.test_numba (top-level), pandas.tests.groupby.test_numeric_only (top-level), pandas.tests.groupby.test_raises (top-level), pandas.tests.groupby.test_reductions (top-level), pandas.tests.groupby.test_timegrouper (top-level), pandas.tests.groupby.transform.test_numba (top-level), pandas.tests.groupby.transform.test_transform (top-level), pandas.tests.indexes.base_class.test_constructors (top-level), pandas.tests.indexes.base_class.test_formats (top-level), pandas.tests.indexes.base_class.test_indexing (top-level), pandas.tests.indexes.base_class.test_reshape (top-level), pandas.tests.indexes.base_class.test_setops (top-level), pandas.tests.indexes.categorical.test_append (top-level), pandas.tests.indexes.categorical.test_astype (top-level), pandas.tests.indexes.categorical.test_category (top-level), pandas.tests.indexes.categorical.test_constructors (top-level), pandas.tests.indexes.categorical.test_equals (top-level), pandas.tests.indexes.categorical.test_fillna (top-level), pandas.tests.indexes.categorical.test_formats (top-level), pandas.tests.indexes.categorical.test_indexing (top-level), pandas.tests.indexes.categorical.test_map (top-level), pandas.tests.indexes.categorical.test_reindex (top-level), pandas.tests.indexes.categorical.test_setops (top-level), pandas.tests.indexes.conftest (top-level), pandas.tests.indexes.datetimelike_.test_drop_duplicates (top-level), pandas.tests.indexes.datetimelike_.test_equals (top-level), pandas.tests.indexes.datetimelike_.test_indexing (top-level), pandas.tests.indexes.datetimelike_.test_nat (top-level), pandas.tests.indexes.datetimelike_.test_sort_values (top-level), pandas.tests.indexes.datetimes.methods.test_astype (top-level), pandas.tests.indexes.datetimes.methods.test_delete (top-level), pandas.tests.indexes.datetimes.methods.test_factorize (top-level), pandas.tests.indexes.datetimes.methods.test_fillna (top-level), pandas.tests.indexes.datetimes.methods.test_insert (top-level), pandas.tests.indexes.datetimes.methods.test_map (top-level), pandas.tests.indexes.datetimes.methods.test_normalize (top-level), pandas.tests.indexes.datetimes.methods.test_repeat (top-level), pandas.tests.indexes.datetimes.methods.test_resolution (top-level), pandas.tests.indexes.datetimes.methods.test_round (top-level), pandas.tests.indexes.datetimes.methods.test_shift (top-level), pandas.tests.indexes.datetimes.methods.test_snap (top-level), pandas.tests.indexes.datetimes.methods.test_to_period (top-level), pandas.tests.indexes.datetimes.test_timezones (top-level), pandas.tests.indexes.datetimes.methods.test_tz_convert (top-level), pandas.tests.indexes.datetimes.methods.test_tz_localize (top-level), pandas.tests.indexes.datetimes.test_arithmetic (top-level), pandas.tests.indexes.datetimes.test_constructors (top-level), pandas.tests.indexes.datetimes.test_date_range (top-level), pandas.tests.indexes.datetimes.test_datetime (top-level), pandas.tests.indexes.datetimes.test_formats (top-level), pandas.tests.indexes.datetimes.test_freq_attr (top-level), pandas.tests.indexes.datetimes.test_indexing (top-level), pandas.tests.indexes.datetimes.test_iter (top-level), pandas.tests.indexes.datetimes.test_join (top-level), pandas.tests.indexes.datetimes.test_ops (top-level), pandas.tests.indexes.datetimes.test_partial_slicing (top-level), pandas.tests.indexes.datetimes.test_pickle (top-level), pandas.tests.indexes.datetimes.test_scalar_compat (top-level), pandas.tests.indexes.datetimes.test_setops (top-level), pandas.tests.indexes.interval.test_astype (top-level), pandas.tests.indexes.interval.test_constructors (top-level), pandas.tests.indexes.interval.test_formats (top-level), pandas.tests.indexes.interval.test_indexing (top-level), pandas.tests.indexes.interval.test_interval (top-level), pandas.tests.indexes.interval.test_interval_range (top-level), pandas.tests.indexes.interval.test_interval_tree (top-level), pandas.tests.indexes.interval.test_join (top-level), pandas.tests.indexes.interval.test_pickle (top-level), pandas.tests.indexes.interval.test_setops (top-level), pandas.tests.indexes.multi.conftest (top-level), pandas.tests.indexes.multi.test_analytics (top-level), pandas.tests.indexes.multi.test_astype (top-level), pandas.tests.indexes.multi.test_compat (top-level), pandas.tests.indexes.multi.test_constructors (top-level), pandas.tests.indexes.multi.test_conversion (top-level), pandas.tests.indexes.multi.test_copy (top-level), pandas.tests.indexes.multi.test_drop (top-level), pandas.tests.indexes.multi.test_duplicates (top-level), pandas.tests.indexes.multi.test_equivalence (top-level), pandas.tests.indexes.multi.test_formats (top-level), pandas.tests.indexes.multi.test_get_set (top-level), pandas.tests.indexes.multi.test_indexing (top-level), pandas.tests.indexes.multi.test_integrity (top-level), pandas.tests.indexes.multi.test_isin (top-level), pandas.tests.indexes.multi.test_join (top-level), pandas.tests.indexes.multi.test_missing (top-level), pandas.tests.indexes.multi.test_monotonic (top-level), pandas.tests.indexes.multi.test_names (top-level), pandas.tests.indexes.multi.test_partial_indexing (top-level), pandas.tests.indexes.multi.test_pickle (top-level), pandas.tests.indexes.multi.test_reindex (top-level), pandas.tests.indexes.multi.test_reshape (top-level), pandas.tests.indexes.multi.test_setops (top-level), pandas.tests.indexes.multi.test_sorting (top-level), pandas.tests.indexes.multi.test_take (top-level), pandas.tests.indexes.numeric.test_astype (top-level), pandas.tests.indexes.numeric.test_indexing (top-level), pandas.tests.indexes.numeric.test_join (top-level), pandas.tests.indexes.numeric.test_numeric (top-level), pandas.tests.indexes.numeric.test_setops (top-level), pandas.tests.indexes.object.test_astype (top-level), pandas.tests.indexes.object.test_indexing (top-level), pandas.tests.indexes.period.methods.test_asfreq (top-level), pandas.tests.indexes.period.methods.test_astype (top-level), pandas.tests.indexes.period.methods.test_insert (top-level), pandas.tests.indexes.period.methods.test_is_full (top-level), pandas.tests.indexes.period.methods.test_repeat (top-level), pandas.tests.indexes.period.methods.test_shift (top-level), pandas.tests.indexes.period.methods.test_to_timestamp (top-level), pandas.tests.indexes.period.test_constructors (top-level), pandas.tests.indexes.period.test_formats (top-level), pandas.tests.indexes.period.test_freq_attr (top-level), pandas.tests.indexes.period.test_indexing (top-level), pandas.tests.indexes.period.test_join (top-level), pandas.tests.indexes.period.test_partial_slicing (top-level), pandas.tests.indexes.period.test_period (top-level), pandas.tests.indexes.period.test_period_range (top-level), pandas.tests.indexes.period.test_pickle (top-level), pandas.tests.indexes.period.test_resolution (top-level), pandas.tests.indexes.period.test_scalar_compat (top-level), pandas.tests.indexes.period.test_searchsorted (top-level), pandas.tests.indexes.period.test_setops (top-level), pandas.tests.indexes.period.test_tools (top-level), pandas.tests.indexes.ranges.test_constructors (top-level), pandas.tests.indexes.ranges.test_indexing (top-level), pandas.tests.indexes.ranges.test_range (top-level), pandas.tests.indexes.ranges.test_setops (top-level), pandas.tests.indexes.test_any_index (top-level), pandas.tests.indexes.test_base (top-level), pandas.tests.indexes.test_common (top-level), pandas.tests.indexes.test_datetimelike (top-level), pandas.tests.indexes.test_engines (top-level), pandas.tests.indexes.test_frozen (top-level), pandas.tests.indexes.test_index_new (top-level), pandas.tests.indexes.test_indexing (top-level), pandas.tests.indexes.test_numpy_compat (top-level), pandas.tests.indexes.test_old_base (top-level), pandas.tests.indexes.test_setops (top-level), pandas.tests.indexes.timedeltas.methods.test_astype (top-level), pandas.tests.indexes.timedeltas.methods.test_insert (top-level), pandas.tests.indexes.timedeltas.methods.test_shift (top-level), pandas.tests.indexes.timedeltas.test_constructors (top-level), pandas.tests.indexes.timedeltas.test_formats (top-level), pandas.tests.indexes.timedeltas.test_freq_attr (top-level), pandas.tests.indexes.timedeltas.test_indexing (top-level), pandas.tests.indexes.timedeltas.test_scalar_compat (top-level), pandas.tests.indexes.timedeltas.test_searchsorted (top-level), pandas.tests.indexes.timedeltas.test_setops (top-level), pandas.tests.indexes.timedeltas.test_timedelta (top-level), pandas.tests.indexes.timedeltas.test_timedelta_range (top-level), pandas.tests.indexing.conftest (top-level), pandas.tests.indexing.interval.test_interval (top-level), pandas.tests.indexing.interval.test_interval_new (top-level), pandas.tests.indexing.multiindex.test_chaining_and_caching (top-level), pandas.tests.indexing.multiindex.test_getitem (top-level), pandas.tests.indexing.multiindex.test_iloc (top-level), pandas.tests.indexing.multiindex.test_indexing_slow (top-level), pandas.tests.indexing.multiindex.test_loc (top-level), pandas.tests.indexing.multiindex.test_multiindex (top-level), pandas.tests.indexing.multiindex.test_partial (top-level), pandas.tests.indexing.multiindex.test_setitem (top-level), pandas.tests.indexing.multiindex.test_slice (top-level), pandas.tests.indexing.multiindex.test_sorted (top-level), pandas.tests.indexing.test_at (top-level), pandas.tests.indexing.test_categorical (top-level), pandas.tests.indexing.test_chaining_and_caching (top-level), pandas.tests.indexing.test_check_indexer (top-level), pandas.tests.indexing.test_coercion (top-level), pandas.tests.indexing.test_datetime (top-level), pandas.tests.indexing.test_floats (top-level), pandas.tests.indexing.test_iloc (top-level), pandas.tests.indexing.test_indexers (top-level), pandas.tests.indexing.test_indexing (top-level), pandas.tests.indexing.test_loc (top-level), pandas.tests.indexing.test_na_indexing (top-level), pandas.tests.indexing.test_partial (top-level), pandas.tests.indexing.test_scalar (top-level), pandas.tests.interchange.test_impl (top-level), pandas.tests.interchange.test_spec_conformance (top-level), pandas.tests.interchange.test_utils (top-level), pandas.tests.internals.test_api (top-level), pandas.tests.internals.test_internals (top-level), pandas.tests.internals.test_managers (top-level), pandas.tests.io.conftest (top-level), pandas.tests.io.excel.test_odf (top-level), pandas.tests.io.excel.test_odswriter (top-level), pandas.tests.io.excel.test_openpyxl (top-level), pandas.tests.io.excel.test_readers (top-level), pandas.tests.io.excel.test_style (top-level), pandas.tests.io.excel.test_writers (top-level), pandas.tests.io.excel.test_xlrd (top-level), pandas.tests.io.excel.test_xlsxwriter (top-level), pandas.tests.io.formats.style.test_bar (top-level), pandas.tests.io.formats.style.test_exceptions (top-level), pandas.tests.io.formats.style.test_format (top-level), pandas.tests.io.formats.style.test_highlight (top-level), pandas.tests.io.formats.style.test_html (top-level), pandas.tests.io.formats.style.test_matplotlib (top-level), pandas.tests.io.formats.style.test_non_unique (top-level), pandas.tests.io.formats.style.test_style (top-level), pandas.tests.io.formats.style.test_to_latex (top-level), pandas.tests.io.formats.style.test_to_string (top-level), pandas.tests.io.formats.style.test_tooltip (top-level), pandas.tests.io.formats.test_console (top-level), pandas.tests.io.formats.test_css (top-level), pandas.tests.io.formats.test_eng_formatting (top-level), pandas.tests.io.formats.test_format (top-level), pandas.tests.io.formats.test_to_csv (top-level), pandas.tests.io.formats.test_to_excel (top-level), pandas.tests.io.formats.test_to_html (top-level), pandas.tests.io.formats.test_to_latex (top-level), pandas.tests.io.formats.test_to_markdown (top-level), pandas.tests.io.formats.test_to_string (top-level), pandas.tests.io.json.conftest (top-level), pandas.tests.io.json.test_compression (top-level), pandas.tests.io.json.test_json_table_schema (top-level), pandas.tests.io.json.test_json_table_schema_ext_dtype (top-level), pandas.tests.io.json.test_normalize (top-level), pandas.tests.io.json.test_pandas (top-level), pandas.tests.io.json.test_readlines (top-level), pandas.tests.io.json.test_ujson (top-level), pandas.tests.io.parser.common.test_chunksize (top-level), pandas.tests.io.parser.common.test_common_basic (top-level), pandas.tests.io.parser.common.test_data_list (top-level), pandas.tests.io.parser.common.test_decimal (top-level), pandas.tests.io.parser.common.test_file_buffer_url (top-level), pandas.tests.io.parser.common.test_float (top-level), pandas.tests.io.parser.common.test_index (top-level), pandas.tests.io.parser.common.test_inf (top-level), pandas.tests.io.parser.common.test_ints (top-level), pandas.tests.io.parser.common.test_iterator (top-level), pandas.tests.io.parser.common.test_read_errors (top-level), pandas.tests.io.parser.common.test_verbose (top-level), pandas.tests.io.parser.conftest (top-level), pandas.tests.io.parser.dtypes.test_categorical (top-level), pandas.tests.io.parser.dtypes.test_dtypes_basic (top-level), pandas.tests.io.parser.dtypes.test_empty (top-level), pandas.tests.io.parser.test_c_parser_only (top-level), pandas.tests.io.parser.test_comment (top-level), pandas.tests.io.parser.test_compression (top-level), pandas.tests.io.parser.test_concatenate_chunks (top-level), pandas.tests.io.parser.test_converters (top-level), pandas.tests.io.parser.test_dialect (top-level), pandas.tests.io.parser.test_encoding (top-level), pandas.tests.io.parser.test_header (top-level), pandas.tests.io.parser.test_index_col (top-level), pandas.tests.io.parser.test_mangle_dupes (top-level), pandas.tests.io.parser.test_multi_thread (top-level), pandas.tests.io.parser.test_na_values (top-level), pandas.tests.io.parser.test_network (top-level), pandas.tests.io.parser.test_parse_dates (top-level), pandas.tests.io.parser.test_python_parser_only (top-level), pandas.tests.io.parser.test_quoting (top-level), pandas.tests.io.parser.test_read_fwf (top-level), pandas.tests.io.parser.test_skiprows (top-level), pandas.tests.io.parser.test_textreader (top-level), pandas.tests.io.parser.test_unsupported (top-level), pandas.tests.io.parser.test_upcast (top-level), pandas.tests.io.parser.usecols.test_parse_dates (top-level), pandas.tests.io.parser.usecols.test_strings (top-level), pandas.tests.io.parser.usecols.test_usecols_basic (top-level), pandas.tests.io.pytables.common (top-level), pandas.tests.io.pytables.conftest (top-level), pandas.tests.io.pytables.test_append (top-level), pandas.tests.io.pytables.test_categorical (top-level), pandas.tests.io.pytables.test_compat (top-level), pandas.tests.io.pytables.test_complex (top-level), pandas.tests.io.pytables.test_errors (top-level), pandas.tests.io.pytables.test_file_handling (top-level), pandas.tests.io.pytables.test_keys (top-level), pandas.tests.io.pytables.test_put (top-level), pandas.tests.io.pytables.test_pytables_missing (top-level), pandas.tests.io.pytables.test_read (top-level), pandas.tests.io.pytables.test_retain_attributes (top-level), pandas.tests.io.pytables.test_round_trip (top-level), pandas.tests.io.pytables.test_select (top-level), pandas.tests.io.pytables.test_store (top-level), pandas.tests.io.pytables.test_subclass (top-level), pandas.tests.io.pytables.test_time_series (top-level), pandas.tests.io.pytables.test_timezones (top-level), pandas.tests.io.sas.test_byteswap (top-level), pandas.tests.io.sas.test_sas (top-level), pandas.tests.io.sas.test_sas7bdat (top-level), pandas.tests.io.sas.test_xport (top-level), pandas.tests.io.test_clipboard (top-level), pandas.tests.io.test_common (top-level), pandas.tests.io.test_compression (top-level), pandas.tests.io.test_feather (top-level), pandas.tests.io.test_fsspec (top-level), pandas.tests.io.test_gcs (top-level), pandas.tests.io.test_html (top-level), pandas.tests.io.test_http_headers (top-level), pandas.tests.io.test_orc (top-level), pandas.tests.io.test_parquet (top-level), pandas.tests.io.test_pickle (top-level), pandas.tests.io.test_s3 (top-level), pandas.tests.io.test_spss (top-level), pandas.tests.io.test_sql (top-level), pandas.tests.io.test_stata (top-level), pandas.tests.io.xml.conftest (top-level), pandas.tests.io.xml.test_to_xml (top-level), pandas.tests.io.xml.test_xml (top-level), pandas.tests.io.xml.test_xml_dtypes (top-level), pandas.tests.libs.test_hashtable (top-level), pandas.tests.libs.test_join (top-level), pandas.tests.libs.test_lib (top-level), pandas.tests.plotting.conftest (top-level), pandas.tests.plotting.frame.test_frame (top-level), pandas.tests.plotting.frame.test_frame_color (top-level), pandas.tests.plotting.frame.test_frame_groupby (top-level), pandas.tests.plotting.frame.test_frame_legend (top-level), pandas.tests.plotting.frame.test_frame_subplots (top-level), pandas.tests.plotting.frame.test_hist_box_by (top-level), pandas.tests.plotting.test_backend (top-level), pandas.tests.plotting.test_boxplot_method (top-level), pandas.tests.plotting.test_common (top-level), pandas.tests.plotting.test_converter (top-level), pandas.tests.plotting.test_datetimelike (top-level), pandas.tests.plotting.test_groupby (top-level), pandas.tests.plotting.test_hist_method (top-level), pandas.tests.plotting.test_misc (top-level), pandas.tests.plotting.test_series (top-level), pandas.tests.plotting.test_style (top-level), pandas.tests.reductions.test_reductions (top-level), pandas.tests.reductions.test_stat_reductions (top-level), pandas.tests.resample.conftest (top-level), pandas.tests.resample.test_base (top-level), pandas.tests.resample.test_datetime_index (top-level), pandas.tests.resample.test_period_index (top-level), pandas.tests.resample.test_resample_api (top-level), pandas.tests.resample.test_resampler_grouper (top-level), pandas.tests.resample.test_time_grouper (top-level), pandas.tests.resample.test_timedelta (top-level), pandas.tests.reshape.concat.conftest (top-level), pandas.tests.reshape.concat.test_append (top-level), pandas.tests.reshape.concat.test_append_common (top-level), pandas.tests.reshape.concat.test_concat (top-level), pandas.tests.reshape.concat.test_dataframe (top-level), pandas.tests.reshape.concat.test_datetimes (top-level), pandas.tests.reshape.concat.test_empty (top-level), pandas.tests.reshape.concat.test_index (top-level), pandas.tests.reshape.concat.test_invalid (top-level), pandas.tests.reshape.concat.test_series (top-level), pandas.tests.reshape.concat.test_sort (top-level), pandas.tests.reshape.merge.test_join (top-level), pandas.tests.reshape.merge.test_merge (top-level), pandas.tests.reshape.merge.test_merge_asof (top-level), pandas.tests.reshape.merge.test_merge_cross (top-level), pandas.tests.reshape.merge.test_merge_index_as_string (top-level), pandas.tests.reshape.merge.test_merge_ordered (top-level), pandas.tests.reshape.merge.test_multi (top-level), pandas.tests.reshape.test_crosstab (top-level), pandas.tests.reshape.test_cut (top-level), pandas.tests.reshape.test_from_dummies (top-level), pandas.tests.reshape.test_get_dummies (top-level), pandas.tests.reshape.test_melt (top-level), pandas.tests.reshape.test_pivot (top-level), pandas.tests.reshape.test_pivot_multilevel (top-level), pandas.tests.reshape.test_qcut (top-level), pandas.tests.reshape.test_union_categoricals (top-level), pandas.tests.reshape.test_util (top-level), pandas.tests.scalar.interval.test_arithmetic (top-level), pandas.tests.scalar.interval.test_constructors (top-level), pandas.tests.scalar.interval.test_contains (top-level), pandas.tests.scalar.interval.test_interval (top-level), pandas.tests.scalar.interval.test_overlaps (top-level), pandas.tests.scalar.period.test_arithmetic (top-level), pandas.tests.scalar.period.test_asfreq (top-level), pandas.tests.scalar.period.test_period (top-level), pandas.tests.scalar.test_na_scalar (top-level), pandas.tests.scalar.test_nat (top-level), pandas.tests.scalar.timedelta.methods.test_as_unit (top-level), pandas.tests.scalar.timedelta.methods.test_round (top-level), pandas.tests.scalar.timedelta.test_arithmetic (top-level), pandas.tests.scalar.timedelta.test_constructors (top-level), pandas.tests.scalar.timedelta.test_formats (top-level), pandas.tests.scalar.timedelta.test_timedelta (top-level), pandas.tests.scalar.timestamp.methods.test_as_unit (top-level), pandas.tests.scalar.timestamp.methods.test_normalize (top-level), pandas.tests.scalar.timestamp.methods.test_replace (top-level), pandas.tests.scalar.timestamp.methods.test_round (top-level), pandas.tests.scalar.timestamp.methods.test_tz_convert (top-level), pandas.tests.scalar.timestamp.methods.test_tz_localize (top-level), pandas.tests.scalar.timestamp.test_arithmetic (top-level), pandas.tests.scalar.timestamp.test_comparisons (top-level), pandas.tests.scalar.timestamp.test_constructors (top-level), pandas.tests.scalar.timestamp.test_formats (top-level), pandas.tests.scalar.timestamp.test_timestamp (top-level), pandas.tests.series.accessors.test_cat_accessor (top-level), pandas.tests.series.accessors.test_dt_accessor (top-level), pandas.tests.series.accessors.test_list_accessor (top-level), pandas.tests.series.accessors.test_str_accessor (top-level), pandas.tests.series.accessors.test_struct_accessor (top-level), pandas.tests.series.indexing.test_datetime (top-level), pandas.tests.series.indexing.test_delitem (top-level), pandas.tests.series.indexing.test_get (top-level), pandas.tests.series.indexing.test_getitem (top-level), pandas.tests.series.indexing.test_indexing (top-level), pandas.tests.series.indexing.test_mask (top-level), pandas.tests.series.indexing.test_setitem (top-level), pandas.tests.series.indexing.test_take (top-level), pandas.tests.series.indexing.test_where (top-level), pandas.tests.series.indexing.test_xs (top-level), pandas.tests.series.methods.test_add_prefix_suffix (top-level), pandas.tests.series.methods.test_align (top-level), pandas.tests.series.methods.test_argsort (top-level), pandas.tests.series.methods.test_asof (top-level), pandas.tests.series.methods.test_astype (top-level), pandas.tests.series.methods.test_between (top-level), pandas.tests.series.methods.test_case_when (top-level), pandas.tests.series.methods.test_clip (top-level), pandas.tests.series.methods.test_compare (top-level), pandas.tests.series.methods.test_convert_dtypes (top-level), pandas.tests.series.methods.test_copy (top-level), pandas.tests.series.methods.test_cov_corr (top-level), pandas.tests.series.methods.test_describe (top-level), pandas.tests.series.methods.test_diff (top-level), pandas.tests.series.methods.test_drop (top-level), pandas.tests.series.methods.test_drop_duplicates (top-level), pandas.tests.series.methods.test_dropna (top-level), pandas.tests.series.methods.test_duplicated (top-level), pandas.tests.series.methods.test_equals (top-level), pandas.tests.series.methods.test_explode (top-level), pandas.tests.series.methods.test_fillna (top-level), pandas.tests.series.methods.test_info (top-level), pandas.tests.series.methods.test_interpolate (top-level), pandas.tests.series.methods.test_is_unique (top-level), pandas.tests.series.methods.test_isin (top-level), pandas.tests.series.methods.test_item (top-level), pandas.tests.series.methods.test_map (top-level), pandas.tests.series.methods.test_matmul (top-level), pandas.tests.series.methods.test_nlargest (top-level), pandas.tests.series.methods.test_pct_change (top-level), pandas.tests.series.methods.test_quantile (top-level), pandas.tests.series.methods.test_rank (top-level), pandas.tests.series.methods.test_reindex (top-level), pandas.tests.series.methods.test_rename (top-level), pandas.tests.series.methods.test_rename_axis (top-level), pandas.tests.series.methods.test_repeat (top-level), pandas.tests.series.methods.test_replace (top-level), pandas.tests.series.methods.test_reset_index (top-level), pandas.tests.series.methods.test_round (top-level), pandas.tests.series.methods.test_searchsorted (top-level), pandas.tests.series.methods.test_size (top-level), pandas.tests.series.methods.test_sort_index (top-level), pandas.tests.series.methods.test_sort_values (top-level), pandas.tests.series.methods.test_to_csv (top-level), pandas.tests.series.methods.test_to_dict (top-level), pandas.tests.series.methods.test_to_frame (top-level), pandas.tests.series.methods.test_to_numpy (top-level), pandas.tests.series.methods.test_tolist (top-level), pandas.tests.series.methods.test_truncate (top-level), pandas.tests.series.methods.test_tz_localize (top-level), pandas.tests.series.methods.test_unstack (top-level), pandas.tests.series.methods.test_update (top-level), pandas.tests.series.methods.test_value_counts (top-level), pandas.tests.series.methods.test_values (top-level), pandas.tests.series.methods.test_view (top-level), pandas.tests.series.test_api (top-level), pandas.tests.series.test_arithmetic (top-level), pandas.tests.series.test_constructors (top-level), pandas.tests.series.test_cumulative (top-level), pandas.tests.series.test_formats (top-level), pandas.tests.series.test_logical_ops (top-level), pandas.tests.series.test_missing (top-level), pandas.tests.series.test_npfuncs (top-level), pandas.tests.series.test_reductions (top-level), pandas.tests.series.test_subclass (top-level), pandas.tests.series.test_ufunc (top-level), pandas.tests.series.test_unary (top-level), pandas.tests.series.test_validate (top-level), pandas.tests.strings.conftest (top-level), pandas.tests.strings.test_api (top-level), pandas.tests.strings.test_case_justify (top-level), pandas.tests.strings.test_cat (top-level), pandas.tests.strings.test_extract (top-level), pandas.tests.strings.test_find_replace (top-level), pandas.tests.strings.test_split_partition (top-level), pandas.tests.strings.test_string_array (top-level), pandas.tests.strings.test_strings (top-level), pandas.tests.test_aggregation (top-level), pandas.tests.test_algos (top-level), pandas.tests.test_common (top-level), pandas.tests.test_downstream (top-level), pandas.tests.test_errors (top-level), pandas.tests.test_expressions (top-level), pandas.tests.test_flags (top-level), pandas.tests.test_multilevel (top-level), pandas.tests.test_nanops (top-level), pandas.tests.test_optional_dependency (top-level), pandas.tests.test_register_accessor (top-level), pandas.tests.test_sorting (top-level), pandas.tests.test_take (top-level), pandas.tests.tools.test_to_datetime (top-level), pandas.tests.tools.test_to_numeric (top-level), pandas.tests.tools.test_to_time (top-level), pandas.tests.tools.test_to_timedelta (top-level), pandas.tests.tseries.frequencies.test_freq_code (top-level), pandas.tests.tseries.frequencies.test_frequencies (top-level), pandas.tests.tseries.frequencies.test_inference (top-level), pandas.tests.tseries.holiday.test_calendar (top-level), pandas.tests.tseries.holiday.test_holiday (top-level), pandas.tests.tseries.holiday.test_observance (top-level), pandas.tests.tseries.offsets.test_business_day (top-level), pandas.tests.tseries.offsets.test_business_hour (top-level), pandas.tests.tseries.offsets.test_business_month (top-level), pandas.tests.tseries.offsets.test_business_quarter (top-level), pandas.tests.tseries.offsets.test_business_year (top-level), pandas.tests.tseries.offsets.test_common (top-level), pandas.tests.tseries.offsets.test_custom_business_day (top-level), pandas.tests.tseries.offsets.test_custom_business_hour (top-level), pandas.tests.tseries.offsets.test_custom_business_month (top-level), pandas.tests.tseries.offsets.test_dst (top-level), pandas.tests.tseries.offsets.test_easter (top-level), pandas.tests.tseries.offsets.test_fiscal (top-level), pandas.tests.tseries.offsets.test_index (top-level), pandas.tests.tseries.offsets.test_month (top-level), pandas.tests.tseries.offsets.test_offsets (top-level), pandas.tests.tseries.offsets.test_offsets_properties (top-level), pandas.tests.tseries.offsets.test_quarter (top-level), pandas.tests.tseries.offsets.test_ticks (top-level), pandas.tests.tseries.offsets.test_week (top-level), pandas.tests.tseries.offsets.test_year (top-level), pandas.tests.tslibs.test_array_to_datetime (top-level), pandas.tests.tslibs.test_ccalendar (top-level), pandas.tests.tslibs.test_conversion (top-level), pandas.tests.tslibs.test_fields (top-level), pandas.tests.tslibs.test_libfrequencies (top-level), pandas.tests.tslibs.test_liboffsets (top-level), pandas.tests.tslibs.test_np_datetime (top-level), pandas.tests.tslibs.test_parse_iso8601 (top-level), pandas.tests.tslibs.test_parsing (top-level), pandas.tests.tslibs.test_period (top-level), pandas.tests.tslibs.test_resolution (top-level), pandas.tests.tslibs.test_strptime (top-level), pandas.tests.tslibs.test_timedeltas (top-level), pandas.tests.tslibs.test_timezones (top-level), pandas.tests.tslibs.test_to_offset (top-level), pandas.tests.tslibs.test_tzconversion (top-level), pandas.tests.util.conftest (top-level), pandas.tests.util.test_assert_almost_equal (top-level), pandas.tests.util.test_assert_attr_equal (top-level), pandas.tests.util.test_assert_categorical_equal (top-level), pandas.tests.util.test_assert_extension_array_equal (top-level), pandas.tests.util.test_assert_frame_equal (top-level), pandas.tests.util.test_assert_index_equal (top-level), pandas.tests.util.test_assert_interval_array_equal (top-level), pandas.tests.util.test_assert_numpy_array_equal (top-level), pandas.tests.util.test_assert_produces_warning (top-level), pandas.tests.util.test_assert_series_equal (top-level), pandas.tests.util.test_deprecate (top-level), pandas.tests.util.test_deprecate_kwarg (top-level), pandas.tests.util.test_hashing (top-level), pandas.tests.util.test_numba (top-level), pandas.tests.util.test_rewrite_warning (top-level), pandas.tests.util.test_util (top-level), pandas.tests.util.test_validate_args (top-level), pandas.tests.util.test_validate_args_and_kwargs (top-level), pandas.tests.util.test_validate_inclusive (top-level), pandas.tests.util.test_validate_kwargs (top-level), pandas.tests.window.conftest (top-level), pandas.tests.window.moments.conftest (top-level), pandas.tests.window.moments.test_moments_consistency_ewm (top-level), pandas.tests.window.moments.test_moments_consistency_expanding (top-level), pandas.tests.window.moments.test_moments_consistency_rolling (top-level), pandas.tests.window.test_api (top-level), pandas.tests.window.test_apply (top-level), pandas.tests.window.test_base_indexer (top-level), pandas.tests.window.test_cython_aggregations (top-level), pandas.tests.window.test_dtypes (top-level), pandas.tests.window.test_ewm (top-level), pandas.tests.window.test_expanding (top-level), pandas.tests.window.test_groupby (top-level), pandas.tests.window.test_numba (top-level), pandas.tests.window.test_online (top-level), pandas.tests.window.test_pairwise (top-level), pandas.tests.window.test_rolling (top-level), pandas.tests.window.test_rolling_functions (top-level), pandas.tests.window.test_rolling_quantile (top-level), pandas.tests.window.test_rolling_skew_kurt (top-level), pandas.tests.window.test_timeseries_window (top-level), pandas.tests.window.test_win_type (top-level) +missing module named 'matplotlib.pyplot' - imported by pandas.io.formats.style (optional), pandas.tests.plotting.common (delayed), pandas.plotting._matplotlib.tools (delayed), pandas.plotting._matplotlib.style (delayed), pandas.plotting._matplotlib.misc (delayed), pandas.plotting._matplotlib.core (delayed), pandas.plotting._matplotlib.boxplot (delayed), pandas.plotting._matplotlib.hist (delayed), pandas.plotting._matplotlib (delayed), pandas.tests.plotting.frame.test_frame (delayed), pandas.tests.plotting.test_boxplot_method (delayed), pandas.tests.plotting.test_datetimelike (delayed), pandas.tests.plotting.test_hist_method (delayed), pandas.tests.plotting.test_style (delayed), pandas.util._doctools (delayed) +missing module named matplotlib - imported by pandas.plotting._core (conditional), pandas.io.formats.style (optional), pandas.tests.io.formats.style.test_matplotlib (top-level), pandas.tests.plotting.common (delayed), pandas.plotting._matplotlib.core (top-level), pandas.plotting._matplotlib.tools (top-level), pandas.plotting._matplotlib.misc (top-level), pandas.plotting._matplotlib.style (top-level), pandas.plotting._matplotlib.timeseries (delayed), pandas.tests.plotting.frame.test_frame (delayed), pandas.tests.plotting.frame.test_frame_color (delayed), pandas.tests.plotting.test_misc (delayed), pandas.tests.plotting.test_series (delayed), pandas.tests.plotting.test_style (delayed), pandas.util._doctools (delayed) +missing module named pandas.util.hash_pandas_object - imported by pandas.util (top-level), pandas.tests.util.test_hashing (top-level) +missing module named pandas.util.hash_array - imported by pandas.util (top-level), pandas.tests.util.test_hashing (top-level) +missing module named six.moves.range - imported by six.moves (top-level), dateutil.rrule (top-level) +runtime module named six.moves - imported by dateutil.tz.tz (top-level), dateutil.tz._factories (top-level), dateutil.tz.win (top-level), dateutil.rrule (top-level) +missing module named six.moves.winreg - imported by six.moves (top-level), dateutil.tz.win (top-level) +missing module named dateutil.tz.tzfile - imported by dateutil.tz (top-level), dateutil.zoneinfo (top-level) +missing module named numba - imported by pandas.core._numba.executor (delayed, conditional), pandas.core.util.numba_ (delayed, conditional), pandas.core.window.numba_ (delayed, conditional), pandas.core.window.online (delayed, conditional), pandas.core._numba.kernels.mean_ (top-level), pandas.core._numba.kernels.shared (top-level), pandas.core._numba.kernels.sum_ (top-level), pandas.core._numba.kernels.min_max_ (top-level), pandas.core._numba.kernels.var_ (top-level), pandas.core.groupby.numba_ (delayed, conditional), pandas.core._numba.extensions (top-level), pandas.tests.groupby.aggregate.test_numba (delayed, conditional), pandas.tests.groupby.transform.test_numba (delayed, conditional), pandas.tests.window.test_numba (delayed, conditional) +missing module named pyarrow - imported by pandas.core.arrays.arrow.accessors (conditional), pandas.core.arrays.masked (delayed), pandas.core.arrays.string_ (delayed, conditional), pandas.core.arrays._arrow_string_mixins (conditional), pandas.core.arrays.boolean (delayed, conditional), pandas.core.arrays.string_arrow (conditional), pandas.core.arrays.arrow._arrow_utils (top-level), pandas.core.interchange.utils (delayed, conditional), pandas.core.strings.accessor (delayed, conditional), pandas.io.parsers.base_parser (delayed, conditional), pandas.core.arrays.interval (delayed), pandas.core.arrays.arrow.extension_types (top-level), pandas.core.arrays.period (delayed), pandas.core.methods.describe (delayed, conditional), pandas.io.sql (delayed, conditional), pandas.core.reshape.merge (delayed, conditional), pandas.core.arrays.numeric (delayed, conditional), pandas.core.interchange.buffer (conditional), pandas.io.feather_format (delayed), pandas.core.indexes.base (delayed, conditional), pandas.core.dtypes.cast (delayed, conditional), pandas.core.arrays.arrow.array (conditional), pandas.core.dtypes.dtypes (delayed, conditional), pandas.compat.pyarrow (optional), pandas.core.reshape.encoding (delayed, conditional), pandas._testing (conditional), pandas.conftest (optional), pandas.tests.apply.test_invalid_arg (delayed, conditional), pandas.tests.arithmetic.test_object (delayed, conditional), pandas.tests.arrays.boolean.test_arithmetic (delayed, conditional), pandas.tests.extension.base.ops (delayed, conditional), pandas.tests.arrays.floating.test_arithmetic (delayed, conditional), pandas.tests.arrays.integer.test_arithmetic (delayed, conditional), pandas.tests.arrays.string_.test_string (delayed, conditional), pandas.tests.extension.test_string (delayed, conditional), pandas.tests.frame.methods.test_cov_corr (delayed, conditional), pandas.tests.frame.test_logical_ops (delayed, conditional), pandas.tests.frame.test_unary (delayed, conditional), pandas.tests.groupby.test_numeric_only (delayed, conditional), pandas.tests.indexes.object.test_indexing (delayed, conditional), pandas.tests.indexes.test_base (delayed), pandas.tests.indexes.test_old_base (delayed, conditional), pandas.tests.io.excel.test_readers (delayed, conditional), pandas.tests.io.parser.conftest (delayed, conditional), pandas.tests.io.test_html (delayed, conditional), pandas.tests.io.test_orc (top-level), pandas.tests.io.test_parquet (delayed, optional), pandas.tests.reshape.test_get_dummies (optional), pandas.tests.series.test_arithmetic (delayed, conditional), pandas.tests.series.test_logical_ops (delayed, conditional), pandas.tests.util.test_shares_memory (delayed) +missing module named sets - imported by pytz.tzinfo (optional) +missing module named hypothesis - imported by pandas._testing._hypothesis (top-level), pandas.conftest (top-level), pandas.tests.frame.indexing.test_where (top-level), pandas.tests.indexes.ranges.test_setops (top-level), pandas.tests.io.sas.test_byteswap (top-level), pandas.tests.scalar.timedelta.methods.test_round (top-level), pandas.tests.scalar.timedelta.test_timedelta (top-level), pandas.tests.scalar.timestamp.methods.test_round (top-level), pandas.tests.scalar.timestamp.test_timestamp (top-level), pandas.tests.tseries.offsets.test_offsets_properties (top-level), pandas.tests.tseries.offsets.test_ticks (top-level), pandas.tests.tslibs.test_ccalendar (top-level), pandas.tests.tslibs.test_parsing (top-level) +missing module named xarray - imported by pandas.tests.generic.test_to_xarray (delayed), pandas.tests.test_downstream (delayed, conditional) +missing module named dask - imported by pandas.tests.test_downstream (delayed, conditional) +missing module named sklearn - imported by pandas.tests.test_downstream (delayed) +missing module named 'IPython.core' - imported by pandas.io.formats.printing (delayed, conditional), pandas.conftest (delayed), pandas.tests.arrays.categorical.test_warnings (delayed), pandas.tests.frame.test_api (delayed), pandas.tests.indexes.test_base (delayed), pandas.tests.resample.test_resampler_grouper (delayed) +missing module named 'matplotlib.colors' - imported by pandas.plotting._misc (conditional), pandas.io.formats.style (conditional), pandas.plotting._matplotlib.style (top-level), pandas.plotting._matplotlib.core (delayed), pandas.tests.plotting.test_style (delayed) +missing module named 'scipy.stats' - imported by pandas.core.nanops (delayed, conditional), pandas.tests.groupby.test_reductions (delayed), pandas.plotting._matplotlib.misc (delayed, conditional), pandas.plotting._matplotlib.hist (delayed) +missing module named 'matplotlib.figure' - imported by pandas.plotting._misc (conditional), pandas.plotting._matplotlib.tools (conditional), pandas.plotting._matplotlib.misc (conditional), pandas.plotting._matplotlib.core (conditional), pandas.plotting._matplotlib.boxplot (conditional), pandas.plotting._matplotlib.hist (conditional) +missing module named 'matplotlib.axes' - imported by pandas.plotting._misc (conditional), pandas._testing.asserters (delayed), pandas.tests.plotting.common (delayed, conditional), pandas.plotting._matplotlib.tools (conditional), pandas.plotting._matplotlib.misc (conditional), pandas.plotting._matplotlib.timeseries (conditional), pandas.plotting._matplotlib.core (delayed, conditional), pandas.plotting._matplotlib.boxplot (conditional), pandas.plotting._matplotlib.hist (conditional) +missing module named 'matplotlib.lines' - imported by pandas.tests.plotting.common (delayed), pandas.plotting._matplotlib.tools (conditional), pandas.plotting._matplotlib.misc (top-level), pandas.plotting._matplotlib.boxplot (conditional), pandas.tests.plotting.frame.test_frame_legend (delayed) +missing module named 'matplotlib.ticker' - imported by pandas.tests.plotting.common (delayed), pandas.plotting._matplotlib.converter (top-level), pandas.plotting._matplotlib.core (delayed) +missing module named 'matplotlib.axis' - imported by pandas.plotting._matplotlib.tools (conditional), pandas.plotting._matplotlib.converter (conditional), pandas.plotting._matplotlib.core (conditional) +missing module named 'matplotlib.artist' - imported by pandas._testing.asserters (delayed), pandas.plotting._matplotlib.boxplot (top-level), pandas.plotting._matplotlib.core (conditional) +missing module named 'matplotlib.units' - imported by pandas.plotting._matplotlib.converter (top-level) +missing module named 'matplotlib.transforms' - imported by pandas.plotting._matplotlib.converter (top-level) +missing module named 'matplotlib.dates' - imported by pandas.plotting._matplotlib.converter (top-level) +missing module named 'matplotlib.table' - imported by pandas.plotting._misc (conditional), pandas.plotting._matplotlib.tools (top-level) +missing module named 'matplotlib.text' - imported by pandas.tests.plotting.test_misc (delayed) +missing module named 'matplotlib.patches' - imported by pandas.tests.plotting.frame.test_frame (delayed), pandas.tests.plotting.test_hist_method (delayed) +missing module named pylab - imported by pandas.tests.plotting.test_hist_method (delayed) +missing module named 'matplotlib.collections' - imported by pandas.tests.plotting.common (delayed), pandas.tests.plotting.frame.test_frame_color (delayed), pandas.tests.plotting.frame.test_frame_legend (delayed) +missing module named cycler - imported by pandas.tests.plotting.frame.test_frame_color (delayed) +missing module named 'mpl_toolkits.axes_grid1' - imported by pandas.tests.plotting.frame.test_frame (delayed) +missing module named mpl_toolkits - imported by pandas.tests.plotting.frame.test_frame (delayed) +missing module named 'sqlalchemy.orm' - imported by pandas.tests.io.test_sql (delayed) +missing module named 'sqlalchemy.schema' - imported by pandas.io.sql (delayed), pandas.tests.io.test_sql (delayed) +missing module named 'sqlalchemy.sql' - imported by pandas.io.sql (conditional), pandas.tests.io.test_sql (delayed) +missing module named 'sqlalchemy.dialects' - imported by pandas.tests.io.test_sql (delayed) +missing module named adbc_driver_sqlite - imported by pandas.tests.io.test_sql (delayed) +missing module named adbc_driver_manager - imported by pandas.tests.io.test_sql (delayed) +missing module named adbc_driver_postgresql - imported by pandas.tests.io.test_sql (delayed) +missing module named 'sqlalchemy.engine' - imported by pandas.io.sql (delayed), pandas.tests.io.test_sql (delayed, conditional) +missing module named sqlalchemy - imported by pandas.io.sql (delayed, conditional), pandas.tests.io.test_sql (delayed, conditional) +missing module named 'botocore.response' - imported by pandas.tests.io.test_s3 (delayed) +missing module named 'pyarrow.parquet' - imported by pandas.io.parquet (delayed), pandas.tests.io.test_parquet (delayed) +missing module named 'pyarrow.dataset' - imported by pandas.tests.io.test_parquet (delayed) +missing module named fastparquet - imported by pandas.tests.io.test_parquet (delayed, optional) +missing module named fsspec - imported by pandas.io.orc (conditional), pandas.tests.io.test_fsspec (delayed), pandas.tests.io.test_gcs (delayed), pandas.tests.io.test_http_headers (delayed) +missing module named 'fsspec.registry' - imported by pandas.tests.io.test_fsspec (delayed) +missing module named 'fsspec.implementations' - imported by pandas.tests.io.test_fsspec (delayed) +missing module named 'py.path' - imported by pandas.tests.io.pytables.test_read (delayed), pandas.tests.io.sas.test_sas7bdat (delayed), pandas.tests.io.test_common (optional) +missing module named botocore - imported by pandas.io.common (delayed, conditional, optional), pandas.tests.io.parser.test_network (delayed) +missing module named py - imported by pandas.tests.io.excel.test_readers (delayed) +missing module named s3fs - imported by pandas.tests.io.excel.test_readers (delayed) +missing module named python_calamine - imported by pandas.io.excel._calamine (delayed, conditional), pandas.tests.io.excel.test_readers (delayed, conditional) +missing module named 'odf.table' - imported by pandas.io.excel._odfreader (delayed), pandas.io.excel._odswriter (delayed), pandas.tests.io.excel.test_odswriter (delayed) +missing module named 'odf.namespaces' - imported by pandas.io.excel._odfreader (delayed), pandas.tests.io.excel.test_odswriter (delayed) +missing module named boto3 - imported by pandas.tests.io.conftest (delayed) +missing module named 'pyarrow.compute' - imported by pandas.core.arrays.arrow.accessors (conditional), pandas.core.arrays._arrow_string_mixins (conditional), pandas.core.arrays.string_arrow (conditional), pandas.core.reshape.merge (delayed, conditional), pandas.core.arrays.arrow.array (conditional), pandas.tests.arrays.string_.test_string (delayed), pandas.tests.interchange.test_impl (delayed) +missing module named 'pyarrow.interchange' - imported by pandas.tests.interchange.test_impl (delayed) +missing module named 'scipy.sparse' - imported by pandas.core.arrays.sparse.array (conditional), pandas.core.arrays.sparse.scipy_sparse (delayed, conditional), pandas.core.arrays.sparse.accessor (delayed), pandas.tests.dtypes.test_common (delayed, conditional) +missing module named 'sqlalchemy.types' - imported by pandas.io.sql (delayed, conditional) +missing module named pandas.core.internals.Block - imported by pandas.core.internals (conditional), pandas.io.pytables (conditional) +missing module named tables - imported by pandas.io.pytables (delayed, conditional) +missing module named 'pyarrow.fs' - imported by pandas.io.orc (conditional) +missing module named 'google.auth' - imported by pandas.io.gbq (conditional) +missing module named markupsafe - imported by pandas.io.formats.style_render (top-level) +missing module named traitlets - imported by pandas.io.formats.printing (delayed, conditional) +missing module named IPython - imported by pandas.io.formats.printing (delayed) +missing module named pyxlsb - imported by pandas.io.excel._pyxlsb (delayed, conditional) +missing module named 'odf.config' - imported by pandas.io.excel._odswriter (delayed) +missing module named 'odf.style' - imported by pandas.io.excel._odswriter (delayed) +missing module named 'odf.text' - imported by pandas.io.excel._odfreader (delayed), pandas.io.excel._odswriter (delayed) +missing module named 'odf.opendocument' - imported by pandas.io.excel._odfreader (delayed), pandas.io.excel._odswriter (delayed) +missing module named 'odf.office' - imported by pandas.io.excel._odfreader (delayed) +missing module named 'odf.element' - imported by pandas.io.excel._odfreader (delayed) +missing module named odf - imported by pandas.io.excel._odfreader (conditional) +missing module named Foundation - imported by pandas.io.clipboard (delayed, conditional, optional) +missing module named AppKit - imported by pandas.io.clipboard (delayed, conditional, optional) +missing module named PyQt4 - imported by pandas.io.clipboard (delayed, conditional, optional) +missing module named qtpy - imported by pandas.io.clipboard (delayed, conditional, optional) +missing module named 'numba.extending' - imported by pandas.core._numba.kernels.sum_ (top-level) +missing module named scipy - imported by pandas.core.dtypes.common (delayed, conditional, optional), pandas.core.missing (delayed) +missing module named 'numba.typed' - imported by pandas.core._numba.extensions (delayed) +missing module named 'numba.core' - imported by pandas.core._numba.extensions (top-level) +missing module named 'traitlets.config' - imported by pandas.conftest (delayed) +missing module named 'hypothesis.extra' - imported by pandas._testing._hypothesis (top-level) diff --git a/build/ad_user_creator/xref-ad_user_creator.html b/build/ad_user_creator/xref-ad_user_creator.html new file mode 100644 index 0000000..650bf73 --- /dev/null +++ b/build/ad_user_creator/xref-ad_user_creator.html @@ -0,0 +1,93724 @@ + + + + + modulegraph cross reference for entry.py, pyi_rth_cryptography_openssl.py, pyi_rth_inspect.py, pyi_rth_multiprocessing.py, pyi_rth_pkgres.py, pyi_rth_pkgutil.py, pyi_rth_setuptools.py + + + +

modulegraph cross reference for entry.py, pyi_rth_cryptography_openssl.py, pyi_rth_inspect.py, pyi_rth_multiprocessing.py, pyi_rth_pkgres.py, pyi_rth_pkgutil.py, pyi_rth_setuptools.py

+ +
+ + entry.py +Script
+imports: + __future__ + • _collections_abc + • _weakrefset + • abc + • ad_user_creator.main + • codecs + • collections + • collections.abc + • copyreg + • encodings + • encodings.aliases + • encodings.ascii + • encodings.base64_codec + • encodings.big5 + • encodings.big5hkscs + • encodings.bz2_codec + • encodings.charmap + • encodings.cp037 + • encodings.cp1006 + • encodings.cp1026 + • encodings.cp1125 + • encodings.cp1140 + • encodings.cp1250 + • encodings.cp1251 + • encodings.cp1252 + • encodings.cp1253 + • encodings.cp1254 + • encodings.cp1255 + • encodings.cp1256 + • encodings.cp1257 + • encodings.cp1258 + • encodings.cp273 + • encodings.cp424 + • encodings.cp437 + • encodings.cp500 + • encodings.cp720 + • encodings.cp737 + • encodings.cp775 + • encodings.cp850 + • encodings.cp852 + • encodings.cp855 + • encodings.cp856 + • encodings.cp857 + • encodings.cp858 + • encodings.cp860 + • encodings.cp861 + • encodings.cp862 + • encodings.cp863 + • encodings.cp864 + • encodings.cp865 + • encodings.cp866 + • encodings.cp869 + • encodings.cp874 + • encodings.cp875 + • encodings.cp932 + • encodings.cp949 + • encodings.cp950 + • encodings.euc_jis_2004 + • encodings.euc_jisx0213 + • encodings.euc_jp + • encodings.euc_kr + • encodings.gb18030 + • encodings.gb2312 + • encodings.gbk + • encodings.hex_codec + • encodings.hp_roman8 + • encodings.hz + • encodings.idna + • encodings.iso2022_jp + • encodings.iso2022_jp_1 + • encodings.iso2022_jp_2 + • encodings.iso2022_jp_2004 + • encodings.iso2022_jp_3 + • encodings.iso2022_jp_ext + • encodings.iso2022_kr + • encodings.iso8859_1 + • encodings.iso8859_10 + • encodings.iso8859_11 + • encodings.iso8859_13 + • encodings.iso8859_14 + • encodings.iso8859_15 + • encodings.iso8859_16 + • encodings.iso8859_2 + • encodings.iso8859_3 + • encodings.iso8859_4 + • encodings.iso8859_5 + • encodings.iso8859_6 + • encodings.iso8859_7 + • encodings.iso8859_8 + • encodings.iso8859_9 + • encodings.johab + • encodings.koi8_r + • encodings.koi8_t + • encodings.koi8_u + • encodings.kz1048 + • encodings.latin_1 + • encodings.mac_arabic + • encodings.mac_croatian + • encodings.mac_cyrillic + • encodings.mac_farsi + • encodings.mac_greek + • encodings.mac_iceland + • encodings.mac_latin2 + • encodings.mac_roman + • encodings.mac_romanian + • encodings.mac_turkish + • encodings.mbcs + • encodings.oem + • encodings.palmos + • encodings.ptcp154 + • encodings.punycode + • encodings.quopri_codec + • encodings.raw_unicode_escape + • encodings.rot_13 + • encodings.shift_jis + • encodings.shift_jis_2004 + • encodings.shift_jisx0213 + • encodings.tis_620 + • encodings.undefined + • encodings.unicode_escape + • encodings.utf_16 + • encodings.utf_16_be + • encodings.utf_16_le + • encodings.utf_32 + • encodings.utf_32_be + • encodings.utf_32_le + • encodings.utf_7 + • encodings.utf_8 + • encodings.utf_8_sig + • encodings.uu_codec + • encodings.zlib_codec + • enum + • functools + • genericpath + • heapq + • io + • keyword + • ldap3 + • ldap3.abstract + • ldap3.abstract.attrDef + • ldap3.abstract.attribute + • ldap3.abstract.cursor + • ldap3.abstract.entry + • ldap3.abstract.objectDef + • ldap3.core + • ldap3.core.connection + • ldap3.core.exceptions + • ldap3.core.pooling + • ldap3.core.rdns + • ldap3.core.results + • ldap3.core.server + • ldap3.core.timezone + • ldap3.core.tls + • ldap3.core.usage + • ldap3.extend + • ldap3.extend.microsoft + • ldap3.extend.microsoft.addMembersToGroups + • ldap3.extend.microsoft.dirSync + • ldap3.extend.microsoft.modifyPassword + • ldap3.extend.microsoft.persistentSearch + • ldap3.extend.microsoft.removeMembersFromGroups + • ldap3.extend.microsoft.unlockAccount + • ldap3.extend.novell + • ldap3.extend.novell.addMembersToGroups + • ldap3.extend.novell.checkGroupsMemberships + • ldap3.extend.novell.endTransaction + • ldap3.extend.novell.getBindDn + • ldap3.extend.novell.listReplicas + • ldap3.extend.novell.nmasGetUniversalPassword + • ldap3.extend.novell.nmasSetUniversalPassword + • ldap3.extend.novell.partition_entry_count + • ldap3.extend.novell.removeMembersFromGroups + • ldap3.extend.novell.replicaInfo + • ldap3.extend.novell.startTransaction + • ldap3.extend.operation + • ldap3.extend.standard + • ldap3.extend.standard.PagedSearch + • ldap3.extend.standard.PersistentSearch + • ldap3.extend.standard.modifyPassword + • ldap3.extend.standard.whoAmI + • ldap3.operation + • ldap3.operation.abandon + • ldap3.operation.add + • ldap3.operation.bind + • ldap3.operation.compare + • ldap3.operation.delete + • ldap3.operation.extended + • ldap3.operation.modify + • ldap3.operation.modifyDn + • ldap3.operation.search + • ldap3.operation.unbind + • ldap3.protocol + • ldap3.protocol.controls + • ldap3.protocol.convert + • ldap3.protocol.formatters + • ldap3.protocol.formatters.formatters + • ldap3.protocol.formatters.standard + • ldap3.protocol.formatters.validators + • ldap3.protocol.microsoft + • ldap3.protocol.novell + • ldap3.protocol.oid + • ldap3.protocol.persistentSearch + • ldap3.protocol.rfc2696 + • ldap3.protocol.rfc2849 + • ldap3.protocol.rfc3062 + • ldap3.protocol.rfc4511 + • ldap3.protocol.rfc4512 + • ldap3.protocol.rfc4527 + • ldap3.protocol.sasl + • ldap3.protocol.sasl.digestMd5 + • ldap3.protocol.sasl.external + • ldap3.protocol.sasl.kerberos + • ldap3.protocol.sasl.plain + • ldap3.protocol.sasl.sasl + • ldap3.protocol.schemas + • ldap3.protocol.schemas.ad2012R2 + • ldap3.protocol.schemas.ds389 + • ldap3.protocol.schemas.edir888 + • ldap3.protocol.schemas.edir914 + • ldap3.protocol.schemas.slapd24 + • ldap3.strategy + • ldap3.strategy.asyncStream + • ldap3.strategy.asynchronous + • ldap3.strategy.base + • ldap3.strategy.ldifProducer + • ldap3.strategy.mockAsync + • ldap3.strategy.mockBase + • ldap3.strategy.mockSync + • ldap3.strategy.restartable + • ldap3.strategy.reusable + • ldap3.strategy.safeRestartable + • ldap3.strategy.safeSync + • ldap3.strategy.sync + • ldap3.utils + • ldap3.utils.asn1 + • ldap3.utils.ciDict + • ldap3.utils.config + • ldap3.utils.conv + • ldap3.utils.dn + • ldap3.utils.hashed + • ldap3.utils.log + • ldap3.utils.ntlm + • ldap3.utils.ordDict + • ldap3.utils.port_validators + • ldap3.utils.repr + • ldap3.utils.tls_backport + • ldap3.utils.uri + • ldap3.version + • linecache + • locale + • ntpath + • openpyxl + • openpyxl._constants + • openpyxl.cell + • openpyxl.cell._writer + • openpyxl.cell.cell + • openpyxl.cell.read_only + • openpyxl.cell.rich_text + • openpyxl.cell.text + • openpyxl.chart + • openpyxl.chart._3d + • openpyxl.chart._chart + • openpyxl.chart.area_chart + • openpyxl.chart.axis + • openpyxl.chart.bar_chart + • openpyxl.chart.bubble_chart + • openpyxl.chart.chartspace + • openpyxl.chart.data_source + • openpyxl.chart.descriptors + • openpyxl.chart.error_bar + • openpyxl.chart.label + • openpyxl.chart.layout + • openpyxl.chart.legend + • openpyxl.chart.line_chart + • openpyxl.chart.marker + • openpyxl.chart.picture + • openpyxl.chart.pie_chart + • openpyxl.chart.pivot + • openpyxl.chart.plotarea + • openpyxl.chart.print_settings + • openpyxl.chart.radar_chart + • openpyxl.chart.reader + • openpyxl.chart.reference + • openpyxl.chart.scatter_chart + • openpyxl.chart.series + • openpyxl.chart.series_factory + • openpyxl.chart.shapes + • openpyxl.chart.stock_chart + • openpyxl.chart.surface_chart + • openpyxl.chart.text + • openpyxl.chart.title + • openpyxl.chart.trendline + • openpyxl.chart.updown_bars + • openpyxl.chartsheet + • openpyxl.chartsheet.chartsheet + • openpyxl.chartsheet.custom + • openpyxl.chartsheet.properties + • openpyxl.chartsheet.protection + • openpyxl.chartsheet.publish + • openpyxl.chartsheet.relation + • openpyxl.chartsheet.views + • openpyxl.comments + • openpyxl.comments.author + • openpyxl.comments.comment_sheet + • openpyxl.comments.comments + • openpyxl.comments.shape_writer + • openpyxl.compat + • openpyxl.compat.abc + • openpyxl.compat.numbers + • openpyxl.compat.product + • openpyxl.compat.singleton + • openpyxl.compat.strings + • openpyxl.descriptors + • openpyxl.descriptors.base + • openpyxl.descriptors.container + • openpyxl.descriptors.excel + • openpyxl.descriptors.namespace + • openpyxl.descriptors.nested + • openpyxl.descriptors.sequence + • openpyxl.descriptors.serialisable + • openpyxl.descriptors.slots + • openpyxl.drawing + • openpyxl.drawing.colors + • openpyxl.drawing.connector + • openpyxl.drawing.drawing + • openpyxl.drawing.effect + • openpyxl.drawing.fill + • openpyxl.drawing.geometry + • openpyxl.drawing.graphic + • openpyxl.drawing.image + • openpyxl.drawing.line + • openpyxl.drawing.picture + • openpyxl.drawing.properties + • openpyxl.drawing.relation + • openpyxl.drawing.spreadsheet_drawing + • openpyxl.drawing.text + • openpyxl.drawing.xdr + • openpyxl.formatting + • openpyxl.formatting.formatting + • openpyxl.formatting.rule + • openpyxl.formula + • openpyxl.formula.tokenizer + • openpyxl.formula.translate + • openpyxl.packaging + • openpyxl.packaging.core + • openpyxl.packaging.custom + • openpyxl.packaging.extended + • openpyxl.packaging.interface + • openpyxl.packaging.manifest + • openpyxl.packaging.relationship + • openpyxl.packaging.workbook + • openpyxl.pivot + • openpyxl.pivot.cache + • openpyxl.pivot.fields + • openpyxl.pivot.record + • openpyxl.pivot.table + • openpyxl.reader + • openpyxl.reader.drawings + • openpyxl.reader.excel + • openpyxl.reader.strings + • openpyxl.reader.workbook + • openpyxl.styles + • openpyxl.styles.alignment + • openpyxl.styles.borders + • openpyxl.styles.builtins + • openpyxl.styles.cell_style + • openpyxl.styles.colors + • openpyxl.styles.differential + • openpyxl.styles.fills + • openpyxl.styles.fonts + • openpyxl.styles.named_styles + • openpyxl.styles.numbers + • openpyxl.styles.protection + • openpyxl.styles.proxy + • openpyxl.styles.styleable + • openpyxl.styles.stylesheet + • openpyxl.styles.table + • openpyxl.utils + • openpyxl.utils.bound_dictionary + • openpyxl.utils.cell + • openpyxl.utils.dataframe + • openpyxl.utils.datetime + • openpyxl.utils.escape + • openpyxl.utils.exceptions + • openpyxl.utils.formulas + • openpyxl.utils.indexed_list + • openpyxl.utils.inference + • openpyxl.utils.protection + • openpyxl.utils.units + • openpyxl.workbook + • openpyxl.workbook._writer + • openpyxl.workbook.child + • openpyxl.workbook.defined_name + • openpyxl.workbook.external_link + • openpyxl.workbook.external_link.external + • openpyxl.workbook.external_reference + • openpyxl.workbook.function_group + • openpyxl.workbook.properties + • openpyxl.workbook.protection + • openpyxl.workbook.smart_tags + • openpyxl.workbook.views + • openpyxl.workbook.web + • openpyxl.workbook.workbook + • openpyxl.worksheet + • openpyxl.worksheet._read_only + • openpyxl.worksheet._reader + • openpyxl.worksheet._write_only + • openpyxl.worksheet._writer + • openpyxl.worksheet.cell_range + • openpyxl.worksheet.cell_watch + • openpyxl.worksheet.controls + • openpyxl.worksheet.copier + • openpyxl.worksheet.custom + • openpyxl.worksheet.datavalidation + • openpyxl.worksheet.dimensions + • openpyxl.worksheet.drawing + • openpyxl.worksheet.errors + • openpyxl.worksheet.filters + • openpyxl.worksheet.formula + • openpyxl.worksheet.header_footer + • openpyxl.worksheet.hyperlink + • openpyxl.worksheet.merge + • openpyxl.worksheet.ole + • openpyxl.worksheet.page + • openpyxl.worksheet.pagebreak + • openpyxl.worksheet.picture + • openpyxl.worksheet.print_settings + • openpyxl.worksheet.properties + • openpyxl.worksheet.protection + • openpyxl.worksheet.related + • openpyxl.worksheet.scenario + • openpyxl.worksheet.smart_tag + • openpyxl.worksheet.table + • openpyxl.worksheet.views + • openpyxl.worksheet.worksheet + • openpyxl.writer + • openpyxl.writer.excel + • openpyxl.writer.theme + • openpyxl.xml + • openpyxl.xml.constants + • openpyxl.xml.functions + • operator + • os + • pandas + • pandas._config + • pandas._config.config + • pandas._config.dates + • pandas._config.display + • pandas._config.localization + • pandas._libs + • pandas._libs.algos + • pandas._libs.arrays + • pandas._libs.byteswap + • pandas._libs.groupby + • pandas._libs.hashing + • pandas._libs.hashtable + • pandas._libs.index + • pandas._libs.indexing + • pandas._libs.internals + • pandas._libs.interval + • pandas._libs.join + • pandas._libs.json + • pandas._libs.lib + • pandas._libs.missing + • pandas._libs.ops + • pandas._libs.ops_dispatch + • pandas._libs.pandas_datetime + • pandas._libs.pandas_parser + • pandas._libs.parsers + • pandas._libs.properties + • pandas._libs.reshape + • pandas._libs.sas + • pandas._libs.sparse + • pandas._libs.testing + • pandas._libs.tslib + • pandas._libs.tslibs + • pandas._libs.tslibs.base + • pandas._libs.tslibs.ccalendar + • pandas._libs.tslibs.conversion + • pandas._libs.tslibs.dtypes + • pandas._libs.tslibs.fields + • pandas._libs.tslibs.nattype + • pandas._libs.tslibs.np_datetime + • pandas._libs.tslibs.offsets + • pandas._libs.tslibs.parsing + • pandas._libs.tslibs.period + • pandas._libs.tslibs.strptime + • pandas._libs.tslibs.timedeltas + • pandas._libs.tslibs.timestamps + • pandas._libs.tslibs.timezones + • pandas._libs.tslibs.tzconversion + • pandas._libs.tslibs.vectorized + • pandas._libs.window + • pandas._libs.window.aggregations + • pandas._libs.window.indexers + • pandas._libs.writers + • pandas._testing + • pandas._testing._hypothesis + • pandas._testing._io + • pandas._testing._warnings + • pandas._testing.asserters + • pandas._testing.compat + • pandas._testing.contexts + • pandas._typing + • pandas._version + • pandas._version_meson + • pandas.api + • pandas.api.extensions + • pandas.api.indexers + • pandas.api.interchange + • pandas.api.types + • pandas.api.typing + • pandas.arrays + • pandas.compat + • pandas.compat._constants + • pandas.compat._optional + • pandas.compat.compressors + • pandas.compat.numpy + • pandas.compat.numpy.function + • pandas.compat.pickle_compat + • pandas.compat.pyarrow + • pandas.conftest + • pandas.core + • pandas.core._numba + • pandas.core._numba.executor + • pandas.core._numba.extensions + • pandas.core.accessor + • pandas.core.algorithms + • pandas.core.api + • pandas.core.apply + • pandas.core.array_algos + • pandas.core.array_algos.datetimelike_accumulations + • pandas.core.array_algos.masked_accumulations + • pandas.core.array_algos.masked_reductions + • pandas.core.array_algos.putmask + • pandas.core.array_algos.quantile + • pandas.core.array_algos.replace + • pandas.core.array_algos.take + • pandas.core.array_algos.transforms + • pandas.core.arraylike + • pandas.core.arrays + • pandas.core.arrays._arrow_string_mixins + • pandas.core.arrays._mixins + • pandas.core.arrays._ranges + • pandas.core.arrays._utils + • pandas.core.arrays.arrow + • pandas.core.arrays.arrow._arrow_utils + • pandas.core.arrays.arrow.accessors + • pandas.core.arrays.arrow.array + • pandas.core.arrays.arrow.extension_types + • pandas.core.arrays.base + • pandas.core.arrays.boolean + • pandas.core.arrays.categorical + • pandas.core.arrays.datetimelike + • pandas.core.arrays.datetimes + • pandas.core.arrays.floating + • pandas.core.arrays.integer + • pandas.core.arrays.interval + • pandas.core.arrays.masked + • pandas.core.arrays.numeric + • pandas.core.arrays.numpy_ + • pandas.core.arrays.period + • pandas.core.arrays.sparse + • pandas.core.arrays.sparse.accessor + • pandas.core.arrays.sparse.array + • pandas.core.arrays.sparse.scipy_sparse + • pandas.core.arrays.string_ + • pandas.core.arrays.string_arrow + • pandas.core.arrays.timedeltas + • pandas.core.base + • pandas.core.common + • pandas.core.computation + • pandas.core.computation.align + • pandas.core.computation.api + • pandas.core.computation.check + • pandas.core.computation.common + • pandas.core.computation.engines + • pandas.core.computation.eval + • pandas.core.computation.expr + • pandas.core.computation.expressions + • pandas.core.computation.ops + • pandas.core.computation.parsing + • pandas.core.computation.pytables + • pandas.core.computation.scope + • pandas.core.config_init + • pandas.core.construction + • pandas.core.dtypes + • pandas.core.dtypes.api + • pandas.core.dtypes.astype + • pandas.core.dtypes.base + • pandas.core.dtypes.cast + • pandas.core.dtypes.common + • pandas.core.dtypes.concat + • pandas.core.dtypes.dtypes + • pandas.core.dtypes.generic + • pandas.core.dtypes.inference + • pandas.core.dtypes.missing + • pandas.core.flags + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby + • pandas.core.groupby.base + • pandas.core.groupby.categorical + • pandas.core.groupby.generic + • pandas.core.groupby.groupby + • pandas.core.groupby.grouper + • pandas.core.groupby.indexing + • pandas.core.groupby.numba_ + • pandas.core.groupby.ops + • pandas.core.indexers + • pandas.core.indexers.objects + • pandas.core.indexers.utils + • pandas.core.indexes + • pandas.core.indexes.accessors + • pandas.core.indexes.api + • pandas.core.indexes.base + • pandas.core.indexes.category + • pandas.core.indexes.datetimelike + • pandas.core.indexes.datetimes + • pandas.core.indexes.extension + • pandas.core.indexes.frozen + • pandas.core.indexes.interval + • pandas.core.indexes.multi + • pandas.core.indexes.period + • pandas.core.indexes.range + • pandas.core.indexes.timedeltas + • pandas.core.indexing + • pandas.core.interchange + • pandas.core.interchange.buffer + • pandas.core.interchange.column + • pandas.core.interchange.dataframe + • pandas.core.interchange.dataframe_protocol + • pandas.core.interchange.from_dataframe + • pandas.core.interchange.utils + • pandas.core.internals + • pandas.core.internals.api + • pandas.core.internals.array_manager + • pandas.core.internals.base + • pandas.core.internals.blocks + • pandas.core.internals.concat + • pandas.core.internals.construction + • pandas.core.internals.managers + • pandas.core.internals.ops + • pandas.core.methods + • pandas.core.methods.describe + • pandas.core.methods.selectn + • pandas.core.methods.to_dict + • pandas.core.missing + • pandas.core.nanops + • pandas.core.ops + • pandas.core.ops.array_ops + • pandas.core.ops.common + • pandas.core.ops.dispatch + • pandas.core.ops.docstrings + • pandas.core.ops.invalid + • pandas.core.ops.mask_ops + • pandas.core.ops.missing + • pandas.core.resample + • pandas.core.reshape + • pandas.core.reshape.api + • pandas.core.reshape.concat + • pandas.core.reshape.encoding + • pandas.core.reshape.melt + • pandas.core.reshape.merge + • pandas.core.reshape.pivot + • pandas.core.reshape.reshape + • pandas.core.reshape.tile + • pandas.core.reshape.util + • pandas.core.roperator + • pandas.core.sample + • pandas.core.series + • pandas.core.shared_docs + • pandas.core.sorting + • pandas.core.sparse + • pandas.core.sparse.api + • pandas.core.strings + • pandas.core.strings.accessor + • pandas.core.strings.base + • pandas.core.strings.object_array + • pandas.core.tools + • pandas.core.tools.datetimes + • pandas.core.tools.numeric + • pandas.core.tools.timedeltas + • pandas.core.tools.times + • pandas.core.util + • pandas.core.util.hashing + • pandas.core.util.numba_ + • pandas.core.window + • pandas.core.window.common + • pandas.core.window.doc + • pandas.core.window.ewm + • pandas.core.window.expanding + • pandas.core.window.numba_ + • pandas.core.window.online + • pandas.core.window.rolling + • pandas.errors + • pandas.io + • pandas.io._util + • pandas.io.api + • pandas.io.clipboard + • pandas.io.clipboards + • pandas.io.common + • pandas.io.excel + • pandas.io.excel._base + • pandas.io.excel._calamine + • pandas.io.excel._odfreader + • pandas.io.excel._odswriter + • pandas.io.excel._openpyxl + • pandas.io.excel._pyxlsb + • pandas.io.excel._util + • pandas.io.excel._xlrd + • pandas.io.excel._xlsxwriter + • pandas.io.feather_format + • pandas.io.formats + • pandas.io.formats._color_data + • pandas.io.formats.console + • pandas.io.formats.css + • pandas.io.formats.csvs + • pandas.io.formats.excel + • pandas.io.formats.format + • pandas.io.formats.html + • pandas.io.formats.info + • pandas.io.formats.printing + • pandas.io.formats.string + • pandas.io.formats.style + • pandas.io.formats.style_render + • pandas.io.formats.xml + • pandas.io.gbq + • pandas.io.html + • pandas.io.json + • pandas.io.json._json + • pandas.io.json._normalize + • pandas.io.json._table_schema + • pandas.io.orc + • pandas.io.parquet + • pandas.io.parsers + • pandas.io.parsers.arrow_parser_wrapper + • pandas.io.parsers.base_parser + • pandas.io.parsers.c_parser_wrapper + • pandas.io.parsers.python_parser + • pandas.io.parsers.readers + • pandas.io.pickle + • pandas.io.pytables + • pandas.io.sas + • pandas.io.sas.sas7bdat + • pandas.io.sas.sas_constants + • pandas.io.sas.sas_xport + • pandas.io.sas.sasreader + • pandas.io.spss + • pandas.io.sql + • pandas.io.stata + • pandas.io.xml + • pandas.plotting + • pandas.plotting._core + • pandas.plotting._misc + • pandas.testing + • pandas.tests + • pandas.tests.api + • pandas.tests.api.test_api + • pandas.tests.api.test_types + • pandas.tests.apply + • pandas.tests.apply.common + • pandas.tests.apply.test_frame_apply + • pandas.tests.apply.test_frame_apply_relabeling + • pandas.tests.apply.test_frame_transform + • pandas.tests.apply.test_invalid_arg + • pandas.tests.apply.test_numba + • pandas.tests.apply.test_series_apply + • pandas.tests.apply.test_series_apply_relabeling + • pandas.tests.apply.test_series_transform + • pandas.tests.apply.test_str + • pandas.tests.arithmetic + • pandas.tests.arithmetic.common + • pandas.tests.arithmetic.conftest + • pandas.tests.arithmetic.test_array_ops + • pandas.tests.arithmetic.test_categorical + • pandas.tests.arithmetic.test_datetime64 + • pandas.tests.arithmetic.test_interval + • pandas.tests.arithmetic.test_numeric + • pandas.tests.arithmetic.test_object + • pandas.tests.arithmetic.test_period + • pandas.tests.arithmetic.test_timedelta64 + • pandas.tests.arrays + • pandas.tests.arrays.boolean + • pandas.tests.arrays.boolean.test_arithmetic + • pandas.tests.arrays.boolean.test_astype + • pandas.tests.arrays.boolean.test_comparison + • pandas.tests.arrays.boolean.test_construction + • pandas.tests.arrays.boolean.test_function + • pandas.tests.arrays.boolean.test_indexing + • pandas.tests.arrays.boolean.test_logical + • pandas.tests.arrays.boolean.test_ops + • pandas.tests.arrays.boolean.test_reduction + • pandas.tests.arrays.boolean.test_repr + • pandas.tests.arrays.categorical + • pandas.tests.arrays.categorical.test_algos + • pandas.tests.arrays.categorical.test_analytics + • pandas.tests.arrays.categorical.test_api + • pandas.tests.arrays.categorical.test_astype + • pandas.tests.arrays.categorical.test_constructors + • pandas.tests.arrays.categorical.test_dtypes + • pandas.tests.arrays.categorical.test_indexing + • pandas.tests.arrays.categorical.test_map + • pandas.tests.arrays.categorical.test_missing + • pandas.tests.arrays.categorical.test_operators + • pandas.tests.arrays.categorical.test_replace + • pandas.tests.arrays.categorical.test_repr + • pandas.tests.arrays.categorical.test_sorting + • pandas.tests.arrays.categorical.test_subclass + • pandas.tests.arrays.categorical.test_take + • pandas.tests.arrays.categorical.test_warnings + • pandas.tests.arrays.datetimes + • pandas.tests.arrays.datetimes.test_constructors + • pandas.tests.arrays.datetimes.test_cumulative + • pandas.tests.arrays.datetimes.test_reductions + • pandas.tests.arrays.floating + • pandas.tests.arrays.floating.conftest + • pandas.tests.arrays.floating.test_arithmetic + • pandas.tests.arrays.floating.test_astype + • pandas.tests.arrays.floating.test_comparison + • pandas.tests.arrays.floating.test_concat + • pandas.tests.arrays.floating.test_construction + • pandas.tests.arrays.floating.test_contains + • pandas.tests.arrays.floating.test_function + • pandas.tests.arrays.floating.test_repr + • pandas.tests.arrays.floating.test_to_numpy + • pandas.tests.arrays.integer + • pandas.tests.arrays.integer.conftest + • pandas.tests.arrays.integer.test_arithmetic + • pandas.tests.arrays.integer.test_comparison + • pandas.tests.arrays.integer.test_concat + • pandas.tests.arrays.integer.test_construction + • pandas.tests.arrays.integer.test_dtypes + • pandas.tests.arrays.integer.test_function + • pandas.tests.arrays.integer.test_indexing + • pandas.tests.arrays.integer.test_reduction + • pandas.tests.arrays.integer.test_repr + • pandas.tests.arrays.interval + • pandas.tests.arrays.interval.test_astype + • pandas.tests.arrays.interval.test_formats + • pandas.tests.arrays.interval.test_interval + • pandas.tests.arrays.interval.test_interval_pyarrow + • pandas.tests.arrays.interval.test_overlaps + • pandas.tests.arrays.masked + • pandas.tests.arrays.masked.test_arithmetic + • pandas.tests.arrays.masked.test_arrow_compat + • pandas.tests.arrays.masked.test_function + • pandas.tests.arrays.masked.test_indexing + • pandas.tests.arrays.masked_shared + • pandas.tests.arrays.numpy_ + • pandas.tests.arrays.numpy_.test_indexing + • pandas.tests.arrays.numpy_.test_numpy + • pandas.tests.arrays.period + • pandas.tests.arrays.period.test_arrow_compat + • pandas.tests.arrays.period.test_astype + • pandas.tests.arrays.period.test_constructors + • pandas.tests.arrays.period.test_reductions + • pandas.tests.arrays.sparse + • pandas.tests.arrays.sparse.test_accessor + • pandas.tests.arrays.sparse.test_arithmetics + • pandas.tests.arrays.sparse.test_array + • pandas.tests.arrays.sparse.test_astype + • pandas.tests.arrays.sparse.test_combine_concat + • pandas.tests.arrays.sparse.test_constructors + • pandas.tests.arrays.sparse.test_dtype + • pandas.tests.arrays.sparse.test_indexing + • pandas.tests.arrays.sparse.test_libsparse + • pandas.tests.arrays.sparse.test_reductions + • pandas.tests.arrays.sparse.test_unary + • pandas.tests.arrays.string_ + • pandas.tests.arrays.string_.test_string + • pandas.tests.arrays.string_.test_string_arrow + • pandas.tests.arrays.test_array + • pandas.tests.arrays.test_datetimelike + • pandas.tests.arrays.test_datetimes + • pandas.tests.arrays.test_ndarray_backed + • pandas.tests.arrays.test_period + • pandas.tests.arrays.test_timedeltas + • pandas.tests.arrays.timedeltas + • pandas.tests.arrays.timedeltas.test_constructors + • pandas.tests.arrays.timedeltas.test_cumulative + • pandas.tests.arrays.timedeltas.test_reductions + • pandas.tests.base + • pandas.tests.base.common + • pandas.tests.base.test_constructors + • pandas.tests.base.test_conversion + • pandas.tests.base.test_fillna + • pandas.tests.base.test_misc + • pandas.tests.base.test_transpose + • pandas.tests.base.test_unique + • pandas.tests.base.test_value_counts + • pandas.tests.computation + • pandas.tests.computation.test_compat + • pandas.tests.computation.test_eval + • pandas.tests.config + • pandas.tests.config.test_config + • pandas.tests.config.test_localization + • pandas.tests.construction + • pandas.tests.construction.test_extract_array + • pandas.tests.copy_view + • pandas.tests.copy_view.index + • pandas.tests.copy_view.index.test_datetimeindex + • pandas.tests.copy_view.index.test_index + • pandas.tests.copy_view.index.test_periodindex + • pandas.tests.copy_view.index.test_timedeltaindex + • pandas.tests.copy_view.test_array + • pandas.tests.copy_view.test_astype + • pandas.tests.copy_view.test_chained_assignment_deprecation + • pandas.tests.copy_view.test_clip + • pandas.tests.copy_view.test_constructors + • pandas.tests.copy_view.test_core_functionalities + • pandas.tests.copy_view.test_functions + • pandas.tests.copy_view.test_indexing + • pandas.tests.copy_view.test_internals + • pandas.tests.copy_view.test_interp_fillna + • pandas.tests.copy_view.test_methods + • pandas.tests.copy_view.test_replace + • pandas.tests.copy_view.test_setitem + • pandas.tests.copy_view.test_util + • pandas.tests.copy_view.util + • pandas.tests.dtypes + • pandas.tests.dtypes.cast + • pandas.tests.dtypes.cast.test_can_hold_element + • pandas.tests.dtypes.cast.test_construct_from_scalar + • pandas.tests.dtypes.cast.test_construct_ndarray + • pandas.tests.dtypes.cast.test_construct_object_arr + • pandas.tests.dtypes.cast.test_dict_compat + • pandas.tests.dtypes.cast.test_downcast + • pandas.tests.dtypes.cast.test_find_common_type + • pandas.tests.dtypes.cast.test_infer_datetimelike + • pandas.tests.dtypes.cast.test_infer_dtype + • pandas.tests.dtypes.cast.test_maybe_box_native + • pandas.tests.dtypes.cast.test_promote + • pandas.tests.dtypes.test_common + • pandas.tests.dtypes.test_concat + • pandas.tests.dtypes.test_dtypes + • pandas.tests.dtypes.test_generic + • pandas.tests.dtypes.test_inference + • pandas.tests.dtypes.test_missing + • pandas.tests.extension + • pandas.tests.extension.array_with_attr + • pandas.tests.extension.array_with_attr.array + • pandas.tests.extension.array_with_attr.test_array_with_attr + • pandas.tests.extension.conftest + • pandas.tests.extension.date + • pandas.tests.extension.date.array + • pandas.tests.extension.decimal + • pandas.tests.extension.decimal.array + • pandas.tests.extension.decimal.test_decimal + • pandas.tests.extension.json + • pandas.tests.extension.json.array + • pandas.tests.extension.json.test_json + • pandas.tests.extension.list + • pandas.tests.extension.list.array + • pandas.tests.extension.list.test_list + • pandas.tests.extension.test_arrow + • pandas.tests.extension.test_categorical + • pandas.tests.extension.test_common + • pandas.tests.extension.test_datetime + • pandas.tests.extension.test_extension + • pandas.tests.extension.test_interval + • pandas.tests.extension.test_masked + • pandas.tests.extension.test_numpy + • pandas.tests.extension.test_period + • pandas.tests.extension.test_sparse + • pandas.tests.extension.test_string + • pandas.tests.frame + • pandas.tests.frame.common + • pandas.tests.frame.conftest + • pandas.tests.frame.constructors + • pandas.tests.frame.constructors.test_from_dict + • pandas.tests.frame.constructors.test_from_records + • pandas.tests.frame.indexing + • pandas.tests.frame.indexing.test_coercion + • pandas.tests.frame.indexing.test_delitem + • pandas.tests.frame.indexing.test_get + • pandas.tests.frame.indexing.test_get_value + • pandas.tests.frame.indexing.test_getitem + • pandas.tests.frame.indexing.test_indexing + • pandas.tests.frame.indexing.test_insert + • pandas.tests.frame.indexing.test_mask + • pandas.tests.frame.indexing.test_set_value + • pandas.tests.frame.indexing.test_setitem + • pandas.tests.frame.indexing.test_take + • pandas.tests.frame.indexing.test_where + • pandas.tests.frame.indexing.test_xs + • pandas.tests.frame.methods + • pandas.tests.frame.methods.test_add_prefix_suffix + • pandas.tests.frame.methods.test_align + • pandas.tests.frame.methods.test_asfreq + • pandas.tests.frame.methods.test_asof + • pandas.tests.frame.methods.test_assign + • pandas.tests.frame.methods.test_astype + • pandas.tests.frame.methods.test_at_time + • pandas.tests.frame.methods.test_between_time + • pandas.tests.frame.methods.test_clip + • pandas.tests.frame.methods.test_combine + • pandas.tests.frame.methods.test_combine_first + • pandas.tests.frame.methods.test_compare + • pandas.tests.frame.methods.test_convert_dtypes + • pandas.tests.frame.methods.test_copy + • pandas.tests.frame.methods.test_count + • pandas.tests.frame.methods.test_cov_corr + • pandas.tests.frame.methods.test_describe + • pandas.tests.frame.methods.test_diff + • pandas.tests.frame.methods.test_dot + • pandas.tests.frame.methods.test_drop + • pandas.tests.frame.methods.test_drop_duplicates + • pandas.tests.frame.methods.test_droplevel + • pandas.tests.frame.methods.test_dropna + • pandas.tests.frame.methods.test_dtypes + • pandas.tests.frame.methods.test_duplicated + • pandas.tests.frame.methods.test_equals + • pandas.tests.frame.methods.test_explode + • pandas.tests.frame.methods.test_fillna + • pandas.tests.frame.methods.test_filter + • pandas.tests.frame.methods.test_first_and_last + • pandas.tests.frame.methods.test_first_valid_index + • pandas.tests.frame.methods.test_get_numeric_data + • pandas.tests.frame.methods.test_head_tail + • pandas.tests.frame.methods.test_infer_objects + • pandas.tests.frame.methods.test_info + • pandas.tests.frame.methods.test_interpolate + • pandas.tests.frame.methods.test_is_homogeneous_dtype + • pandas.tests.frame.methods.test_isetitem + • pandas.tests.frame.methods.test_isin + • pandas.tests.frame.methods.test_iterrows + • pandas.tests.frame.methods.test_join + • pandas.tests.frame.methods.test_map + • pandas.tests.frame.methods.test_matmul + • pandas.tests.frame.methods.test_nlargest + • pandas.tests.frame.methods.test_pct_change + • pandas.tests.frame.methods.test_pipe + • pandas.tests.frame.methods.test_pop + • pandas.tests.frame.methods.test_quantile + • pandas.tests.frame.methods.test_rank + • pandas.tests.frame.methods.test_reindex + • pandas.tests.frame.methods.test_reindex_like + • pandas.tests.frame.methods.test_rename + • pandas.tests.frame.methods.test_rename_axis + • pandas.tests.frame.methods.test_reorder_levels + • pandas.tests.frame.methods.test_replace + • pandas.tests.frame.methods.test_reset_index + • pandas.tests.frame.methods.test_round + • pandas.tests.frame.methods.test_sample + • pandas.tests.frame.methods.test_select_dtypes + • pandas.tests.frame.methods.test_set_axis + • pandas.tests.frame.methods.test_set_index + • pandas.tests.frame.methods.test_shift + • pandas.tests.frame.methods.test_size + • pandas.tests.frame.methods.test_sort_index + • pandas.tests.frame.methods.test_sort_values + • pandas.tests.frame.methods.test_swapaxes + • pandas.tests.frame.methods.test_swaplevel + • pandas.tests.frame.methods.test_to_csv + • pandas.tests.frame.methods.test_to_dict + • pandas.tests.frame.methods.test_to_dict_of_blocks + • pandas.tests.frame.methods.test_to_numpy + • pandas.tests.frame.methods.test_to_period + • pandas.tests.frame.methods.test_to_records + • pandas.tests.frame.methods.test_to_timestamp + • pandas.tests.frame.methods.test_transpose + • pandas.tests.frame.methods.test_truncate + • pandas.tests.frame.methods.test_tz_convert + • pandas.tests.frame.methods.test_tz_localize + • pandas.tests.frame.methods.test_update + • pandas.tests.frame.methods.test_value_counts + • pandas.tests.frame.methods.test_values + • pandas.tests.frame.test_alter_axes + • pandas.tests.frame.test_api + • pandas.tests.frame.test_arithmetic + • pandas.tests.frame.test_arrow_interface + • pandas.tests.frame.test_block_internals + • pandas.tests.frame.test_constructors + • pandas.tests.frame.test_cumulative + • pandas.tests.frame.test_iteration + • pandas.tests.frame.test_logical_ops + • pandas.tests.frame.test_nonunique_indexes + • pandas.tests.frame.test_npfuncs + • pandas.tests.frame.test_query_eval + • pandas.tests.frame.test_reductions + • pandas.tests.frame.test_repr + • pandas.tests.frame.test_stack_unstack + • pandas.tests.frame.test_subclass + • pandas.tests.frame.test_ufunc + • pandas.tests.frame.test_unary + • pandas.tests.frame.test_validate + • pandas.tests.generic + • pandas.tests.generic.test_duplicate_labels + • pandas.tests.generic.test_finalize + • pandas.tests.generic.test_frame + • pandas.tests.generic.test_generic + • pandas.tests.generic.test_label_or_level_utils + • pandas.tests.generic.test_series + • pandas.tests.generic.test_to_xarray + • pandas.tests.groupby + • pandas.tests.groupby.aggregate + • pandas.tests.groupby.aggregate.test_aggregate + • pandas.tests.groupby.aggregate.test_cython + • pandas.tests.groupby.aggregate.test_numba + • pandas.tests.groupby.aggregate.test_other + • pandas.tests.groupby.conftest + • pandas.tests.groupby.methods + • pandas.tests.groupby.methods.test_corrwith + • pandas.tests.groupby.methods.test_describe + • pandas.tests.groupby.methods.test_groupby_shift_diff + • pandas.tests.groupby.methods.test_is_monotonic + • pandas.tests.groupby.methods.test_nlargest_nsmallest + • pandas.tests.groupby.methods.test_nth + • pandas.tests.groupby.methods.test_quantile + • pandas.tests.groupby.methods.test_rank + • pandas.tests.groupby.methods.test_sample + • pandas.tests.groupby.methods.test_size + • pandas.tests.groupby.methods.test_skew + • pandas.tests.groupby.methods.test_value_counts + • pandas.tests.groupby.test_all_methods + • pandas.tests.groupby.test_api + • pandas.tests.groupby.test_apply + • pandas.tests.groupby.test_apply_mutate + • pandas.tests.groupby.test_bin_groupby + • pandas.tests.groupby.test_categorical + • pandas.tests.groupby.test_counting + • pandas.tests.groupby.test_cumulative + • pandas.tests.groupby.test_filters + • pandas.tests.groupby.test_groupby + • pandas.tests.groupby.test_groupby_dropna + • pandas.tests.groupby.test_groupby_subclass + • pandas.tests.groupby.test_grouping + • pandas.tests.groupby.test_index_as_string + • pandas.tests.groupby.test_indexing + • pandas.tests.groupby.test_libgroupby + • pandas.tests.groupby.test_missing + • pandas.tests.groupby.test_numba + • pandas.tests.groupby.test_numeric_only + • pandas.tests.groupby.test_pipe + • pandas.tests.groupby.test_raises + • pandas.tests.groupby.test_reductions + • pandas.tests.groupby.test_timegrouper + • pandas.tests.groupby.transform + • pandas.tests.groupby.transform.test_numba + • pandas.tests.groupby.transform.test_transform + • pandas.tests.indexes + • pandas.tests.indexes.base_class + • pandas.tests.indexes.base_class.test_constructors + • pandas.tests.indexes.base_class.test_formats + • pandas.tests.indexes.base_class.test_indexing + • pandas.tests.indexes.base_class.test_pickle + • pandas.tests.indexes.base_class.test_reshape + • pandas.tests.indexes.base_class.test_setops + • pandas.tests.indexes.base_class.test_where + • pandas.tests.indexes.categorical + • pandas.tests.indexes.categorical.test_append + • pandas.tests.indexes.categorical.test_astype + • pandas.tests.indexes.categorical.test_category + • pandas.tests.indexes.categorical.test_constructors + • pandas.tests.indexes.categorical.test_equals + • pandas.tests.indexes.categorical.test_fillna + • pandas.tests.indexes.categorical.test_formats + • pandas.tests.indexes.categorical.test_indexing + • pandas.tests.indexes.categorical.test_map + • pandas.tests.indexes.categorical.test_reindex + • pandas.tests.indexes.categorical.test_setops + • pandas.tests.indexes.conftest + • pandas.tests.indexes.datetimelike_ + • pandas.tests.indexes.datetimelike_.test_drop_duplicates + • pandas.tests.indexes.datetimelike_.test_equals + • pandas.tests.indexes.datetimelike_.test_indexing + • pandas.tests.indexes.datetimelike_.test_is_monotonic + • pandas.tests.indexes.datetimelike_.test_nat + • pandas.tests.indexes.datetimelike_.test_sort_values + • pandas.tests.indexes.datetimelike_.test_value_counts + • pandas.tests.indexes.datetimes + • pandas.tests.indexes.datetimes.methods + • pandas.tests.indexes.datetimes.methods.test_asof + • pandas.tests.indexes.datetimes.methods.test_astype + • pandas.tests.indexes.datetimes.methods.test_delete + • pandas.tests.indexes.datetimes.methods.test_factorize + • pandas.tests.indexes.datetimes.methods.test_fillna + • pandas.tests.indexes.datetimes.methods.test_insert + • pandas.tests.indexes.datetimes.methods.test_isocalendar + • pandas.tests.indexes.datetimes.methods.test_map + • pandas.tests.indexes.datetimes.methods.test_normalize + • pandas.tests.indexes.datetimes.methods.test_repeat + • pandas.tests.indexes.datetimes.methods.test_resolution + • pandas.tests.indexes.datetimes.methods.test_round + • pandas.tests.indexes.datetimes.methods.test_shift + • pandas.tests.indexes.datetimes.methods.test_snap + • pandas.tests.indexes.datetimes.methods.test_to_frame + • pandas.tests.indexes.datetimes.methods.test_to_julian_date + • pandas.tests.indexes.datetimes.methods.test_to_period + • pandas.tests.indexes.datetimes.methods.test_to_pydatetime + • pandas.tests.indexes.datetimes.methods.test_to_series + • pandas.tests.indexes.datetimes.methods.test_tz_convert + • pandas.tests.indexes.datetimes.methods.test_tz_localize + • pandas.tests.indexes.datetimes.methods.test_unique + • pandas.tests.indexes.datetimes.test_arithmetic + • pandas.tests.indexes.datetimes.test_constructors + • pandas.tests.indexes.datetimes.test_date_range + • pandas.tests.indexes.datetimes.test_datetime + • pandas.tests.indexes.datetimes.test_formats + • pandas.tests.indexes.datetimes.test_freq_attr + • pandas.tests.indexes.datetimes.test_indexing + • pandas.tests.indexes.datetimes.test_iter + • pandas.tests.indexes.datetimes.test_join + • pandas.tests.indexes.datetimes.test_npfuncs + • pandas.tests.indexes.datetimes.test_ops + • pandas.tests.indexes.datetimes.test_partial_slicing + • pandas.tests.indexes.datetimes.test_pickle + • pandas.tests.indexes.datetimes.test_reindex + • pandas.tests.indexes.datetimes.test_scalar_compat + • pandas.tests.indexes.datetimes.test_setops + • pandas.tests.indexes.datetimes.test_timezones + • pandas.tests.indexes.interval + • pandas.tests.indexes.interval.test_astype + • pandas.tests.indexes.interval.test_constructors + • pandas.tests.indexes.interval.test_equals + • pandas.tests.indexes.interval.test_formats + • pandas.tests.indexes.interval.test_indexing + • pandas.tests.indexes.interval.test_interval + • pandas.tests.indexes.interval.test_interval_range + • pandas.tests.indexes.interval.test_interval_tree + • pandas.tests.indexes.interval.test_join + • pandas.tests.indexes.interval.test_pickle + • pandas.tests.indexes.interval.test_setops + • pandas.tests.indexes.multi + • pandas.tests.indexes.multi.conftest + • pandas.tests.indexes.multi.test_analytics + • pandas.tests.indexes.multi.test_astype + • pandas.tests.indexes.multi.test_compat + • pandas.tests.indexes.multi.test_constructors + • pandas.tests.indexes.multi.test_conversion + • pandas.tests.indexes.multi.test_copy + • pandas.tests.indexes.multi.test_drop + • pandas.tests.indexes.multi.test_duplicates + • pandas.tests.indexes.multi.test_equivalence + • pandas.tests.indexes.multi.test_formats + • pandas.tests.indexes.multi.test_get_level_values + • pandas.tests.indexes.multi.test_get_set + • pandas.tests.indexes.multi.test_indexing + • pandas.tests.indexes.multi.test_integrity + • pandas.tests.indexes.multi.test_isin + • pandas.tests.indexes.multi.test_join + • pandas.tests.indexes.multi.test_lexsort + • pandas.tests.indexes.multi.test_missing + • pandas.tests.indexes.multi.test_monotonic + • pandas.tests.indexes.multi.test_names + • pandas.tests.indexes.multi.test_partial_indexing + • pandas.tests.indexes.multi.test_pickle + • pandas.tests.indexes.multi.test_reindex + • pandas.tests.indexes.multi.test_reshape + • pandas.tests.indexes.multi.test_setops + • pandas.tests.indexes.multi.test_sorting + • pandas.tests.indexes.multi.test_take + • pandas.tests.indexes.numeric + • pandas.tests.indexes.numeric.test_astype + • pandas.tests.indexes.numeric.test_indexing + • pandas.tests.indexes.numeric.test_join + • pandas.tests.indexes.numeric.test_numeric + • pandas.tests.indexes.numeric.test_setops + • pandas.tests.indexes.object + • pandas.tests.indexes.object.test_astype + • pandas.tests.indexes.object.test_indexing + • pandas.tests.indexes.period + • pandas.tests.indexes.period.methods + • pandas.tests.indexes.period.methods.test_asfreq + • pandas.tests.indexes.period.methods.test_astype + • pandas.tests.indexes.period.methods.test_factorize + • pandas.tests.indexes.period.methods.test_fillna + • pandas.tests.indexes.period.methods.test_insert + • pandas.tests.indexes.period.methods.test_is_full + • pandas.tests.indexes.period.methods.test_repeat + • pandas.tests.indexes.period.methods.test_shift + • pandas.tests.indexes.period.methods.test_to_timestamp + • pandas.tests.indexes.period.test_constructors + • pandas.tests.indexes.period.test_formats + • pandas.tests.indexes.period.test_freq_attr + • pandas.tests.indexes.period.test_indexing + • pandas.tests.indexes.period.test_join + • pandas.tests.indexes.period.test_monotonic + • pandas.tests.indexes.period.test_partial_slicing + • pandas.tests.indexes.period.test_period + • pandas.tests.indexes.period.test_period_range + • pandas.tests.indexes.period.test_pickle + • pandas.tests.indexes.period.test_resolution + • pandas.tests.indexes.period.test_scalar_compat + • pandas.tests.indexes.period.test_searchsorted + • pandas.tests.indexes.period.test_setops + • pandas.tests.indexes.period.test_tools + • pandas.tests.indexes.ranges + • pandas.tests.indexes.ranges.test_constructors + • pandas.tests.indexes.ranges.test_indexing + • pandas.tests.indexes.ranges.test_join + • pandas.tests.indexes.ranges.test_range + • pandas.tests.indexes.ranges.test_setops + • pandas.tests.indexes.test_any_index + • pandas.tests.indexes.test_base + • pandas.tests.indexes.test_common + • pandas.tests.indexes.test_datetimelike + • pandas.tests.indexes.test_engines + • pandas.tests.indexes.test_frozen + • pandas.tests.indexes.test_index_new + • pandas.tests.indexes.test_indexing + • pandas.tests.indexes.test_numpy_compat + • pandas.tests.indexes.test_old_base + • pandas.tests.indexes.test_setops + • pandas.tests.indexes.test_subclass + • pandas.tests.indexes.timedeltas + • pandas.tests.indexes.timedeltas.methods + • pandas.tests.indexes.timedeltas.methods.test_astype + • pandas.tests.indexes.timedeltas.methods.test_factorize + • pandas.tests.indexes.timedeltas.methods.test_fillna + • pandas.tests.indexes.timedeltas.methods.test_insert + • pandas.tests.indexes.timedeltas.methods.test_repeat + • pandas.tests.indexes.timedeltas.methods.test_shift + • pandas.tests.indexes.timedeltas.test_arithmetic + • pandas.tests.indexes.timedeltas.test_constructors + • pandas.tests.indexes.timedeltas.test_delete + • pandas.tests.indexes.timedeltas.test_formats + • pandas.tests.indexes.timedeltas.test_freq_attr + • pandas.tests.indexes.timedeltas.test_indexing + • pandas.tests.indexes.timedeltas.test_join + • pandas.tests.indexes.timedeltas.test_ops + • pandas.tests.indexes.timedeltas.test_pickle + • pandas.tests.indexes.timedeltas.test_scalar_compat + • pandas.tests.indexes.timedeltas.test_searchsorted + • pandas.tests.indexes.timedeltas.test_setops + • pandas.tests.indexes.timedeltas.test_timedelta + • pandas.tests.indexes.timedeltas.test_timedelta_range + • pandas.tests.indexing + • pandas.tests.indexing.common + • pandas.tests.indexing.conftest + • pandas.tests.indexing.interval + • pandas.tests.indexing.interval.test_interval + • pandas.tests.indexing.interval.test_interval_new + • pandas.tests.indexing.multiindex + • pandas.tests.indexing.multiindex.test_chaining_and_caching + • pandas.tests.indexing.multiindex.test_datetime + • pandas.tests.indexing.multiindex.test_getitem + • pandas.tests.indexing.multiindex.test_iloc + • pandas.tests.indexing.multiindex.test_indexing_slow + • pandas.tests.indexing.multiindex.test_loc + • pandas.tests.indexing.multiindex.test_multiindex + • pandas.tests.indexing.multiindex.test_partial + • pandas.tests.indexing.multiindex.test_setitem + • pandas.tests.indexing.multiindex.test_slice + • pandas.tests.indexing.multiindex.test_sorted + • pandas.tests.indexing.test_at + • pandas.tests.indexing.test_categorical + • pandas.tests.indexing.test_chaining_and_caching + • pandas.tests.indexing.test_check_indexer + • pandas.tests.indexing.test_coercion + • pandas.tests.indexing.test_datetime + • pandas.tests.indexing.test_floats + • pandas.tests.indexing.test_iat + • pandas.tests.indexing.test_iloc + • pandas.tests.indexing.test_indexers + • pandas.tests.indexing.test_indexing + • pandas.tests.indexing.test_loc + • pandas.tests.indexing.test_na_indexing + • pandas.tests.indexing.test_partial + • pandas.tests.indexing.test_scalar + • pandas.tests.interchange + • pandas.tests.interchange.test_impl + • pandas.tests.interchange.test_spec_conformance + • pandas.tests.interchange.test_utils + • pandas.tests.internals + • pandas.tests.internals.test_api + • pandas.tests.internals.test_internals + • pandas.tests.internals.test_managers + • pandas.tests.io + • pandas.tests.io.conftest + • pandas.tests.io.excel + • pandas.tests.io.excel.test_odf + • pandas.tests.io.excel.test_odswriter + • pandas.tests.io.excel.test_openpyxl + • pandas.tests.io.excel.test_readers + • pandas.tests.io.excel.test_style + • pandas.tests.io.excel.test_writers + • pandas.tests.io.excel.test_xlrd + • pandas.tests.io.excel.test_xlsxwriter + • pandas.tests.io.formats + • pandas.tests.io.formats.style + • pandas.tests.io.formats.style.test_bar + • pandas.tests.io.formats.style.test_exceptions + • pandas.tests.io.formats.style.test_format + • pandas.tests.io.formats.style.test_highlight + • pandas.tests.io.formats.style.test_html + • pandas.tests.io.formats.style.test_matplotlib + • pandas.tests.io.formats.style.test_non_unique + • pandas.tests.io.formats.style.test_style + • pandas.tests.io.formats.style.test_to_latex + • pandas.tests.io.formats.style.test_to_string + • pandas.tests.io.formats.style.test_tooltip + • pandas.tests.io.formats.test_console + • pandas.tests.io.formats.test_css + • pandas.tests.io.formats.test_eng_formatting + • pandas.tests.io.formats.test_format + • pandas.tests.io.formats.test_ipython_compat + • pandas.tests.io.formats.test_printing + • pandas.tests.io.formats.test_to_csv + • pandas.tests.io.formats.test_to_excel + • pandas.tests.io.formats.test_to_html + • pandas.tests.io.formats.test_to_latex + • pandas.tests.io.formats.test_to_markdown + • pandas.tests.io.formats.test_to_string + • pandas.tests.io.generate_legacy_storage_files + • pandas.tests.io.json + • pandas.tests.io.json.conftest + • pandas.tests.io.json.test_compression + • pandas.tests.io.json.test_deprecated_kwargs + • pandas.tests.io.json.test_json_table_schema + • pandas.tests.io.json.test_json_table_schema_ext_dtype + • pandas.tests.io.json.test_normalize + • pandas.tests.io.json.test_pandas + • pandas.tests.io.json.test_readlines + • pandas.tests.io.json.test_ujson + • pandas.tests.io.parser + • pandas.tests.io.parser.common + • pandas.tests.io.parser.common.test_chunksize + • pandas.tests.io.parser.common.test_common_basic + • pandas.tests.io.parser.common.test_data_list + • pandas.tests.io.parser.common.test_decimal + • pandas.tests.io.parser.common.test_file_buffer_url + • pandas.tests.io.parser.common.test_float + • pandas.tests.io.parser.common.test_index + • pandas.tests.io.parser.common.test_inf + • pandas.tests.io.parser.common.test_ints + • pandas.tests.io.parser.common.test_iterator + • pandas.tests.io.parser.common.test_read_errors + • pandas.tests.io.parser.common.test_verbose + • pandas.tests.io.parser.conftest + • pandas.tests.io.parser.dtypes + • pandas.tests.io.parser.dtypes.test_categorical + • pandas.tests.io.parser.dtypes.test_dtypes_basic + • pandas.tests.io.parser.dtypes.test_empty + • pandas.tests.io.parser.test_c_parser_only + • pandas.tests.io.parser.test_comment + • pandas.tests.io.parser.test_compression + • pandas.tests.io.parser.test_concatenate_chunks + • pandas.tests.io.parser.test_converters + • pandas.tests.io.parser.test_dialect + • pandas.tests.io.parser.test_encoding + • pandas.tests.io.parser.test_header + • pandas.tests.io.parser.test_index_col + • pandas.tests.io.parser.test_mangle_dupes + • pandas.tests.io.parser.test_multi_thread + • pandas.tests.io.parser.test_na_values + • pandas.tests.io.parser.test_network + • pandas.tests.io.parser.test_parse_dates + • pandas.tests.io.parser.test_python_parser_only + • pandas.tests.io.parser.test_quoting + • pandas.tests.io.parser.test_read_fwf + • pandas.tests.io.parser.test_skiprows + • pandas.tests.io.parser.test_textreader + • pandas.tests.io.parser.test_unsupported + • pandas.tests.io.parser.test_upcast + • pandas.tests.io.parser.usecols + • pandas.tests.io.parser.usecols.test_parse_dates + • pandas.tests.io.parser.usecols.test_strings + • pandas.tests.io.parser.usecols.test_usecols_basic + • pandas.tests.io.pytables + • pandas.tests.io.pytables.common + • pandas.tests.io.pytables.conftest + • pandas.tests.io.pytables.test_append + • pandas.tests.io.pytables.test_categorical + • pandas.tests.io.pytables.test_compat + • pandas.tests.io.pytables.test_complex + • pandas.tests.io.pytables.test_errors + • pandas.tests.io.pytables.test_file_handling + • pandas.tests.io.pytables.test_keys + • pandas.tests.io.pytables.test_put + • pandas.tests.io.pytables.test_pytables_missing + • pandas.tests.io.pytables.test_read + • pandas.tests.io.pytables.test_retain_attributes + • pandas.tests.io.pytables.test_round_trip + • pandas.tests.io.pytables.test_select + • pandas.tests.io.pytables.test_store + • pandas.tests.io.pytables.test_subclass + • pandas.tests.io.pytables.test_time_series + • pandas.tests.io.pytables.test_timezones + • pandas.tests.io.sas + • pandas.tests.io.sas.test_byteswap + • pandas.tests.io.sas.test_sas + • pandas.tests.io.sas.test_sas7bdat + • pandas.tests.io.sas.test_xport + • pandas.tests.io.test_clipboard + • pandas.tests.io.test_common + • pandas.tests.io.test_compression + • pandas.tests.io.test_feather + • pandas.tests.io.test_fsspec + • pandas.tests.io.test_gbq + • pandas.tests.io.test_gcs + • pandas.tests.io.test_html + • pandas.tests.io.test_http_headers + • pandas.tests.io.test_orc + • pandas.tests.io.test_parquet + • pandas.tests.io.test_pickle + • pandas.tests.io.test_s3 + • pandas.tests.io.test_spss + • pandas.tests.io.test_sql + • pandas.tests.io.test_stata + • pandas.tests.io.xml + • pandas.tests.io.xml.conftest + • pandas.tests.io.xml.test_to_xml + • pandas.tests.io.xml.test_xml + • pandas.tests.io.xml.test_xml_dtypes + • pandas.tests.libs + • pandas.tests.libs.test_hashtable + • pandas.tests.libs.test_join + • pandas.tests.libs.test_lib + • pandas.tests.libs.test_libalgos + • pandas.tests.plotting + • pandas.tests.plotting.common + • pandas.tests.plotting.conftest + • pandas.tests.plotting.frame + • pandas.tests.plotting.frame.test_frame + • pandas.tests.plotting.frame.test_frame_color + • pandas.tests.plotting.frame.test_frame_groupby + • pandas.tests.plotting.frame.test_frame_legend + • pandas.tests.plotting.frame.test_frame_subplots + • pandas.tests.plotting.frame.test_hist_box_by + • pandas.tests.plotting.test_backend + • pandas.tests.plotting.test_boxplot_method + • pandas.tests.plotting.test_common + • pandas.tests.plotting.test_converter + • pandas.tests.plotting.test_datetimelike + • pandas.tests.plotting.test_groupby + • pandas.tests.plotting.test_hist_method + • pandas.tests.plotting.test_misc + • pandas.tests.plotting.test_series + • pandas.tests.plotting.test_style + • pandas.tests.reductions + • pandas.tests.reductions.test_reductions + • pandas.tests.reductions.test_stat_reductions + • pandas.tests.resample + • pandas.tests.resample.conftest + • pandas.tests.resample.test_base + • pandas.tests.resample.test_datetime_index + • pandas.tests.resample.test_period_index + • pandas.tests.resample.test_resample_api + • pandas.tests.resample.test_resampler_grouper + • pandas.tests.resample.test_time_grouper + • pandas.tests.resample.test_timedelta + • pandas.tests.reshape + • pandas.tests.reshape.concat + • pandas.tests.reshape.concat.conftest + • pandas.tests.reshape.concat.test_append + • pandas.tests.reshape.concat.test_append_common + • pandas.tests.reshape.concat.test_categorical + • pandas.tests.reshape.concat.test_concat + • pandas.tests.reshape.concat.test_dataframe + • pandas.tests.reshape.concat.test_datetimes + • pandas.tests.reshape.concat.test_empty + • pandas.tests.reshape.concat.test_index + • pandas.tests.reshape.concat.test_invalid + • pandas.tests.reshape.concat.test_series + • pandas.tests.reshape.concat.test_sort + • pandas.tests.reshape.merge + • pandas.tests.reshape.merge.test_join + • pandas.tests.reshape.merge.test_merge + • pandas.tests.reshape.merge.test_merge_asof + • pandas.tests.reshape.merge.test_merge_cross + • pandas.tests.reshape.merge.test_merge_index_as_string + • pandas.tests.reshape.merge.test_merge_ordered + • pandas.tests.reshape.merge.test_multi + • pandas.tests.reshape.test_crosstab + • pandas.tests.reshape.test_cut + • pandas.tests.reshape.test_from_dummies + • pandas.tests.reshape.test_get_dummies + • pandas.tests.reshape.test_melt + • pandas.tests.reshape.test_pivot + • pandas.tests.reshape.test_pivot_multilevel + • pandas.tests.reshape.test_qcut + • pandas.tests.reshape.test_union_categoricals + • pandas.tests.reshape.test_util + • pandas.tests.scalar + • pandas.tests.scalar.interval + • pandas.tests.scalar.interval.test_arithmetic + • pandas.tests.scalar.interval.test_constructors + • pandas.tests.scalar.interval.test_contains + • pandas.tests.scalar.interval.test_formats + • pandas.tests.scalar.interval.test_interval + • pandas.tests.scalar.interval.test_overlaps + • pandas.tests.scalar.period + • pandas.tests.scalar.period.test_arithmetic + • pandas.tests.scalar.period.test_asfreq + • pandas.tests.scalar.period.test_period + • pandas.tests.scalar.test_na_scalar + • pandas.tests.scalar.test_nat + • pandas.tests.scalar.timedelta + • pandas.tests.scalar.timedelta.methods + • pandas.tests.scalar.timedelta.methods.test_as_unit + • pandas.tests.scalar.timedelta.methods.test_round + • pandas.tests.scalar.timedelta.test_arithmetic + • pandas.tests.scalar.timedelta.test_constructors + • pandas.tests.scalar.timedelta.test_formats + • pandas.tests.scalar.timedelta.test_timedelta + • pandas.tests.scalar.timestamp + • pandas.tests.scalar.timestamp.methods + • pandas.tests.scalar.timestamp.methods.test_as_unit + • pandas.tests.scalar.timestamp.methods.test_normalize + • pandas.tests.scalar.timestamp.methods.test_replace + • pandas.tests.scalar.timestamp.methods.test_round + • pandas.tests.scalar.timestamp.methods.test_timestamp_method + • pandas.tests.scalar.timestamp.methods.test_to_julian_date + • pandas.tests.scalar.timestamp.methods.test_to_pydatetime + • pandas.tests.scalar.timestamp.methods.test_tz_convert + • pandas.tests.scalar.timestamp.methods.test_tz_localize + • pandas.tests.scalar.timestamp.test_arithmetic + • pandas.tests.scalar.timestamp.test_comparisons + • pandas.tests.scalar.timestamp.test_constructors + • pandas.tests.scalar.timestamp.test_formats + • pandas.tests.scalar.timestamp.test_timestamp + • pandas.tests.scalar.timestamp.test_timezones + • pandas.tests.series + • pandas.tests.series.accessors + • pandas.tests.series.accessors.test_cat_accessor + • pandas.tests.series.accessors.test_dt_accessor + • pandas.tests.series.accessors.test_list_accessor + • pandas.tests.series.accessors.test_sparse_accessor + • pandas.tests.series.accessors.test_str_accessor + • pandas.tests.series.accessors.test_struct_accessor + • pandas.tests.series.indexing + • pandas.tests.series.indexing.test_datetime + • pandas.tests.series.indexing.test_delitem + • pandas.tests.series.indexing.test_get + • pandas.tests.series.indexing.test_getitem + • pandas.tests.series.indexing.test_indexing + • pandas.tests.series.indexing.test_mask + • pandas.tests.series.indexing.test_set_value + • pandas.tests.series.indexing.test_setitem + • pandas.tests.series.indexing.test_take + • pandas.tests.series.indexing.test_where + • pandas.tests.series.indexing.test_xs + • pandas.tests.series.methods + • pandas.tests.series.methods.test_add_prefix_suffix + • pandas.tests.series.methods.test_align + • pandas.tests.series.methods.test_argsort + • pandas.tests.series.methods.test_asof + • pandas.tests.series.methods.test_astype + • pandas.tests.series.methods.test_autocorr + • pandas.tests.series.methods.test_between + • pandas.tests.series.methods.test_case_when + • pandas.tests.series.methods.test_clip + • pandas.tests.series.methods.test_combine + • pandas.tests.series.methods.test_combine_first + • pandas.tests.series.methods.test_compare + • pandas.tests.series.methods.test_convert_dtypes + • pandas.tests.series.methods.test_copy + • pandas.tests.series.methods.test_count + • pandas.tests.series.methods.test_cov_corr + • pandas.tests.series.methods.test_describe + • pandas.tests.series.methods.test_diff + • pandas.tests.series.methods.test_drop + • pandas.tests.series.methods.test_drop_duplicates + • pandas.tests.series.methods.test_dropna + • pandas.tests.series.methods.test_dtypes + • pandas.tests.series.methods.test_duplicated + • pandas.tests.series.methods.test_equals + • pandas.tests.series.methods.test_explode + • pandas.tests.series.methods.test_fillna + • pandas.tests.series.methods.test_get_numeric_data + • pandas.tests.series.methods.test_head_tail + • pandas.tests.series.methods.test_infer_objects + • pandas.tests.series.methods.test_info + • pandas.tests.series.methods.test_interpolate + • pandas.tests.series.methods.test_is_monotonic + • pandas.tests.series.methods.test_is_unique + • pandas.tests.series.methods.test_isin + • pandas.tests.series.methods.test_isna + • pandas.tests.series.methods.test_item + • pandas.tests.series.methods.test_map + • pandas.tests.series.methods.test_matmul + • pandas.tests.series.methods.test_nlargest + • pandas.tests.series.methods.test_nunique + • pandas.tests.series.methods.test_pct_change + • pandas.tests.series.methods.test_pop + • pandas.tests.series.methods.test_quantile + • pandas.tests.series.methods.test_rank + • pandas.tests.series.methods.test_reindex + • pandas.tests.series.methods.test_reindex_like + • pandas.tests.series.methods.test_rename + • pandas.tests.series.methods.test_rename_axis + • pandas.tests.series.methods.test_repeat + • pandas.tests.series.methods.test_replace + • pandas.tests.series.methods.test_reset_index + • pandas.tests.series.methods.test_round + • pandas.tests.series.methods.test_searchsorted + • pandas.tests.series.methods.test_set_name + • pandas.tests.series.methods.test_size + • pandas.tests.series.methods.test_sort_index + • pandas.tests.series.methods.test_sort_values + • pandas.tests.series.methods.test_to_csv + • pandas.tests.series.methods.test_to_dict + • pandas.tests.series.methods.test_to_frame + • pandas.tests.series.methods.test_to_numpy + • pandas.tests.series.methods.test_tolist + • pandas.tests.series.methods.test_truncate + • pandas.tests.series.methods.test_tz_localize + • pandas.tests.series.methods.test_unique + • pandas.tests.series.methods.test_unstack + • pandas.tests.series.methods.test_update + • pandas.tests.series.methods.test_value_counts + • pandas.tests.series.methods.test_values + • pandas.tests.series.methods.test_view + • pandas.tests.series.test_api + • pandas.tests.series.test_arithmetic + • pandas.tests.series.test_constructors + • pandas.tests.series.test_cumulative + • pandas.tests.series.test_formats + • pandas.tests.series.test_iteration + • pandas.tests.series.test_logical_ops + • pandas.tests.series.test_missing + • pandas.tests.series.test_npfuncs + • pandas.tests.series.test_reductions + • pandas.tests.series.test_subclass + • pandas.tests.series.test_ufunc + • pandas.tests.series.test_unary + • pandas.tests.series.test_validate + • pandas.tests.strings + • pandas.tests.strings.conftest + • pandas.tests.strings.test_api + • pandas.tests.strings.test_case_justify + • pandas.tests.strings.test_cat + • pandas.tests.strings.test_extract + • pandas.tests.strings.test_find_replace + • pandas.tests.strings.test_get_dummies + • pandas.tests.strings.test_split_partition + • pandas.tests.strings.test_string_array + • pandas.tests.strings.test_strings + • pandas.tests.test_aggregation + • pandas.tests.test_algos + • pandas.tests.test_common + • pandas.tests.test_downstream + • pandas.tests.test_errors + • pandas.tests.test_expressions + • pandas.tests.test_flags + • pandas.tests.test_multilevel + • pandas.tests.test_nanops + • pandas.tests.test_optional_dependency + • pandas.tests.test_register_accessor + • pandas.tests.test_sorting + • pandas.tests.test_take + • pandas.tests.tools + • pandas.tests.tools.test_to_datetime + • pandas.tests.tools.test_to_numeric + • pandas.tests.tools.test_to_time + • pandas.tests.tools.test_to_timedelta + • pandas.tests.tseries + • pandas.tests.tseries.frequencies + • pandas.tests.tseries.frequencies.test_freq_code + • pandas.tests.tseries.frequencies.test_frequencies + • pandas.tests.tseries.frequencies.test_inference + • pandas.tests.tseries.holiday + • pandas.tests.tseries.holiday.test_calendar + • pandas.tests.tseries.holiday.test_federal + • pandas.tests.tseries.holiday.test_holiday + • pandas.tests.tseries.holiday.test_observance + • pandas.tests.tseries.offsets + • pandas.tests.tseries.offsets.common + • pandas.tests.tseries.offsets.test_business_day + • pandas.tests.tseries.offsets.test_business_hour + • pandas.tests.tseries.offsets.test_business_month + • pandas.tests.tseries.offsets.test_business_quarter + • pandas.tests.tseries.offsets.test_business_year + • pandas.tests.tseries.offsets.test_common + • pandas.tests.tseries.offsets.test_custom_business_day + • pandas.tests.tseries.offsets.test_custom_business_hour + • pandas.tests.tseries.offsets.test_custom_business_month + • pandas.tests.tseries.offsets.test_dst + • pandas.tests.tseries.offsets.test_easter + • pandas.tests.tseries.offsets.test_fiscal + • pandas.tests.tseries.offsets.test_index + • pandas.tests.tseries.offsets.test_month + • pandas.tests.tseries.offsets.test_offsets + • pandas.tests.tseries.offsets.test_offsets_properties + • pandas.tests.tseries.offsets.test_quarter + • pandas.tests.tseries.offsets.test_ticks + • pandas.tests.tseries.offsets.test_week + • pandas.tests.tseries.offsets.test_year + • pandas.tests.tslibs + • pandas.tests.tslibs.test_api + • pandas.tests.tslibs.test_array_to_datetime + • pandas.tests.tslibs.test_ccalendar + • pandas.tests.tslibs.test_conversion + • pandas.tests.tslibs.test_fields + • pandas.tests.tslibs.test_libfrequencies + • pandas.tests.tslibs.test_liboffsets + • pandas.tests.tslibs.test_np_datetime + • pandas.tests.tslibs.test_npy_units + • pandas.tests.tslibs.test_parse_iso8601 + • pandas.tests.tslibs.test_parsing + • pandas.tests.tslibs.test_period + • pandas.tests.tslibs.test_resolution + • pandas.tests.tslibs.test_strptime + • pandas.tests.tslibs.test_timedeltas + • pandas.tests.tslibs.test_timezones + • pandas.tests.tslibs.test_to_offset + • pandas.tests.tslibs.test_tzconversion + • pandas.tests.util + • pandas.tests.util.conftest + • pandas.tests.util.test_assert_almost_equal + • pandas.tests.util.test_assert_attr_equal + • pandas.tests.util.test_assert_categorical_equal + • pandas.tests.util.test_assert_extension_array_equal + • pandas.tests.util.test_assert_frame_equal + • pandas.tests.util.test_assert_index_equal + • pandas.tests.util.test_assert_interval_array_equal + • pandas.tests.util.test_assert_numpy_array_equal + • pandas.tests.util.test_assert_produces_warning + • pandas.tests.util.test_assert_series_equal + • pandas.tests.util.test_deprecate + • pandas.tests.util.test_deprecate_kwarg + • pandas.tests.util.test_deprecate_nonkeyword_arguments + • pandas.tests.util.test_doc + • pandas.tests.util.test_hashing + • pandas.tests.util.test_numba + • pandas.tests.util.test_rewrite_warning + • pandas.tests.util.test_shares_memory + • pandas.tests.util.test_show_versions + • pandas.tests.util.test_util + • pandas.tests.util.test_validate_args + • pandas.tests.util.test_validate_args_and_kwargs + • pandas.tests.util.test_validate_inclusive + • pandas.tests.util.test_validate_kwargs + • pandas.tests.window + • pandas.tests.window.conftest + • pandas.tests.window.moments + • pandas.tests.window.moments.conftest + • pandas.tests.window.moments.test_moments_consistency_ewm + • pandas.tests.window.moments.test_moments_consistency_expanding + • pandas.tests.window.moments.test_moments_consistency_rolling + • pandas.tests.window.test_api + • pandas.tests.window.test_apply + • pandas.tests.window.test_base_indexer + • pandas.tests.window.test_cython_aggregations + • pandas.tests.window.test_dtypes + • pandas.tests.window.test_ewm + • pandas.tests.window.test_expanding + • pandas.tests.window.test_groupby + • pandas.tests.window.test_numba + • pandas.tests.window.test_online + • pandas.tests.window.test_pairwise + • pandas.tests.window.test_rolling + • pandas.tests.window.test_rolling_functions + • pandas.tests.window.test_rolling_quantile + • pandas.tests.window.test_rolling_skew_kurt + • pandas.tests.window.test_timeseries_window + • pandas.tests.window.test_win_type + • pandas.tseries + • pandas.tseries.api + • pandas.tseries.frequencies + • pandas.tseries.holiday + • pandas.tseries.offsets + • pandas.util + • pandas.util._decorators + • pandas.util._doctools + • pandas.util._exceptions + • pandas.util._print_versions + • pandas.util._test_decorators + • pandas.util._tester + • pandas.util._validators + • pandas.util.version + • pathlib + • posixpath + • pyi_rth_cryptography_openssl.py + • pyi_rth_inspect.py + • pyi_rth_multiprocessing.py + • pyi_rth_pkgres.py + • pyi_rth_pkgutil.py + • pyi_rth_setuptools.py + • re + • re._casefix + • re._compiler + • re._constants + • re._parser + • reprlib + • sre_compile + • sre_constants + • sre_parse + • stat + • sys + • traceback + • types + • warnings + • weakref + +
+ +
+ +
+ + pyi_rth_cryptography_openssl.py +Script
+imports: + os + • sys + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pyi_rth_inspect.py +Script
+imports: + inspect + • os + • sys + • zipfile + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pyi_rth_multiprocessing.py +Script
+imports: + multiprocessing + • multiprocessing.spawn + • subprocess + • sys + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pyi_rth_pkgres.py +Script
+imports: + os + • pathlib + • pkg_resources + • pyimod02_importers + • sys + • warnings + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pyi_rth_pkgutil.py +Script
+imports: + pkgutil + • pyimod02_importers + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pyi_rth_setuptools.py +Script
+imports: + _distutils_hack + • os + • setuptools + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + '_typeshed.importlib' +MissingModule
+imported by: + pkg_resources + +
+ +
+ +
+ + 'botocore.response' +MissingModule
+imported by: + pandas.tests.io.test_s3 + +
+ +
+ +
+ + 'fsspec.implementations' +MissingModule
+imported by: + pandas.tests.io.test_fsspec + +
+ +
+ +
+ + 'fsspec.registry' +MissingModule
+imported by: + pandas.tests.io.test_fsspec + +
+ +
+ +
+ + 'google.auth' +MissingModule
+imported by: + pandas.io.gbq + +
+ +
+ +
+ + 'gssapi.raw' +MissingModule
+imported by: + ldap3.protocol.sasl.kerberos + +
+ +
+ +
+ + 'html5lib.constants' +MissingModule
+imported by: + bs4.builder._html5lib + +
+ +
+ +
+ + 'html5lib.treebuilders' +MissingModule + +
+ +
+ + 'hypothesis.extra' +MissingModule
+imported by: + pandas._testing._hypothesis + +
+ +
+ +
+ + 'java.lang' +MissingModule
+imported by: + platform + +
+ +
+ + + + + + + + + + + +
+ + 'matplotlib.dates' +MissingModule + +
+ + + + + + + + + +
+ + 'matplotlib.table' +MissingModule + +
+ +
+ + 'matplotlib.text' +MissingModule
+imported by: + pandas.tests.plotting.test_misc + +
+ +
+ + + +
+ + 'matplotlib.transforms' +MissingModule + +
+ +
+ + 'matplotlib.units' +MissingModule + +
+ +
+ + 'mpl_toolkits.axes_grid1' +MissingModule + +
+ +
+ + 'numba.core' +MissingModule
+imported by: + pandas.core._numba.extensions + +
+ +
+ +
+ + 'numba.extending' +MissingModule
+imported by: + pandas.core._numba.kernels.sum_ + +
+ +
+ +
+ + 'numba.typed' +MissingModule
+imported by: + pandas.core._numba.extensions + +
+ +
+ +
+ + 'numpy_distutils.command' +MissingModule
+imported by: + numpy.f2py.diagnose + +
+ +
+ +
+ + 'numpy_distutils.cpuinfo' +MissingModule
+imported by: + numpy.f2py.diagnose + +
+ +
+ +
+ + 'numpy_distutils.fcompiler' +MissingModule
+imported by: + numpy.f2py.diagnose + +
+ +
+ +
+ + 'odf.config' +MissingModule
+imported by: + pandas.io.excel._odswriter + +
+ +
+ +
+ + 'odf.element' +MissingModule
+imported by: + pandas.io.excel._odfreader + +
+ +
+ +
+ + 'odf.namespaces' +MissingModule + +
+ +
+ + 'odf.office' +MissingModule
+imported by: + pandas.io.excel._odfreader + +
+ +
+ +
+ + 'odf.opendocument' +MissingModule + +
+ +
+ + 'odf.style' +MissingModule
+imported by: + pandas.io.excel._odswriter + +
+ +
+ + + +
+ + 'odf.text' +MissingModule + +
+ + + + + +
+ + 'pyarrow.dataset' +MissingModule
+imported by: + pandas.tests.io.test_parquet + +
+ +
+ +
+ + 'pyarrow.fs' +MissingModule
+imported by: + pandas.io.orc + +
+ +
+ +
+ + 'pyarrow.interchange' +MissingModule + +
+ +
+ + 'pyarrow.parquet' +MissingModule + +
+ +
+ + 'pyasn1.compat.octets' +MissingModule
+imported by: + ldap3.utils.asn1 + +
+ +
+ + + + + +
+ + 'setuptools._distutils.msvc9compiler' +MissingModule
+imported by: + cffi._shimmed_dist_utils + +
+ +
+ + + +
+ + 'sqlalchemy.dialects' +MissingModule
+imported by: + pandas.tests.io.test_sql + +
+ +
+ +
+ + 'sqlalchemy.engine' +MissingModule
+imported by: + pandas.io.sql + • pandas.tests.io.test_sql + +
+ +
+ +
+ + 'sqlalchemy.orm' +MissingModule
+imported by: + pandas.tests.io.test_sql + +
+ +
+ +
+ + 'sqlalchemy.schema' +MissingModule
+imported by: + pandas.io.sql + • pandas.tests.io.test_sql + +
+ +
+ +
+ + 'sqlalchemy.sql' +MissingModule
+imported by: + pandas.io.sql + • pandas.tests.io.test_sql + +
+ +
+ +
+ + 'sqlalchemy.types' +MissingModule
+imported by: + pandas.io.sql + +
+ +
+ +
+ + 'traitlets.config' +MissingModule
+imported by: + pandas.conftest + +
+ +
+ +
+ + AppKit +MissingModule
+imported by: + pandas.io.clipboard + +
+ +
+ +
+ + BeautifulSoup +MissingModule
+imported by: + lxml.html.soupparser + +
+ +
+ +
+ + Crypto +Package
+imported by: + Crypto.Hash + • Crypto.Util + +
+ +
+ + + +
+ + Crypto.Hash.MD4 +SourceModule +
+imported by: + Crypto.Hash + • ldap3.utils.ntlm + +
+ +
+ +
+ + Crypto.Hash.SHA1 +SourceModule +
+imported by: + Crypto.Hash + +
+ +
+ +
+ + Crypto.Hash.SHA224 +SourceModule +
+imported by: + Crypto.Hash + +
+ +
+ +
+ + Crypto.Hash.SHA256 +SourceModule +
+imported by: + Crypto.Hash + +
+ +
+ +
+ + Crypto.Hash.SHA384 +SourceModule +
+imported by: + Crypto.Hash + +
+ +
+ +
+ + Crypto.Hash.SHA3_224 +SourceModule +
+imported by: + Crypto.Hash + +
+ +
+ +
+ + Crypto.Hash.SHA3_256 +SourceModule +
+imported by: + Crypto.Hash + +
+ +
+ +
+ + Crypto.Hash.SHA3_384 +SourceModule +
+imported by: + Crypto.Hash + +
+ +
+ +
+ + Crypto.Hash.SHA3_512 +SourceModule +
+imported by: + Crypto.Hash + +
+ +
+ +
+ + Crypto.Hash.SHA512 +SourceModule +
+imported by: + Crypto.Hash + +
+ +
+ + + +
+ + Crypto.Util +Package
+imports: + Crypto + +
+ + +
+ +
+ + Crypto.Util._file_system +SourceModule
+imports: + Crypto.Util + • os + +
+
+imported by: + Crypto.Util._raw_api + +
+ +
+ + + + + +
+ + Foundation +MissingModule
+imported by: + pandas.io.clipboard + +
+ +
+ +
+ + IPython +MissingModule
+imported by: + pandas.io.formats.printing + +
+ +
+ +
+ + PIL +Package +
+imported by: + PIL + • PIL.BlpImagePlugin + • PIL.BmpImagePlugin + • PIL.BufrStubImagePlugin + • PIL.CurImagePlugin + • PIL.DcxImagePlugin + • PIL.DdsImagePlugin + • PIL.EpsImagePlugin + • PIL.ExifTags + • PIL.FitsImagePlugin + • PIL.FliImagePlugin + • PIL.FpxImagePlugin + • PIL.FtexImagePlugin + • PIL.GbrImagePlugin + • PIL.GifImagePlugin + • PIL.GimpGradientFile + • PIL.GimpPaletteFile + • PIL.GribStubImagePlugin + • PIL.Hdf5StubImagePlugin + • PIL.IcnsImagePlugin + • PIL.IcoImagePlugin + • PIL.ImImagePlugin + • PIL.Image + • PIL.ImageChops + • PIL.ImageCms + • PIL.ImageColor + • PIL.ImageFile + • PIL.ImageFilter + • PIL.ImageMath + • PIL.ImageMode + • PIL.ImageOps + • PIL.ImagePalette + • PIL.ImageQt + • PIL.ImageSequence + • PIL.ImageShow + • PIL.ImageTk + • PIL.ImageWin + • PIL.ImtImagePlugin + • PIL.IptcImagePlugin + • PIL.Jpeg2KImagePlugin + • PIL.JpegImagePlugin + • PIL.JpegPresets + • PIL.McIdasImagePlugin + • PIL.MicImagePlugin + • PIL.MpegImagePlugin + • PIL.MpoImagePlugin + • PIL.MspImagePlugin + • PIL.PaletteFile + • PIL.PalmImagePlugin + • PIL.PcdImagePlugin + • PIL.PcxImagePlugin + • PIL.PdfImagePlugin + • PIL.PdfParser + • PIL.PixarImagePlugin + • PIL.PngImagePlugin + • PIL.PpmImagePlugin + • PIL.PsdImagePlugin + • PIL.QoiImagePlugin + • PIL.SgiImagePlugin + • PIL.SpiderImagePlugin + • PIL.SunImagePlugin + • PIL.TgaImagePlugin + • PIL.TiffImagePlugin + • PIL.TiffTags + • PIL.WebPImagePlugin + • PIL.WmfImagePlugin + • PIL.XVThumbImagePlugin + • PIL.XbmImagePlugin + • PIL.XpmImagePlugin + • PIL._binary + • PIL._deprecate + • PIL._imaging + • PIL._imagingcms + • PIL._imagingmath + • PIL._imagingtk + • PIL._typing + • PIL._util + • PIL._version + • PIL._webp + • PIL.features + • openpyxl.drawing.image + +
+ +
+ +
+ + PIL.BlpImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL.JpegImagePlugin + • __future__ + • abc + • enum + • io + • os + • struct + • typing + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.BmpImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL.ImagePalette + • PIL._binary + • __future__ + • os + • typing + +
+
+imported by: + PIL + • PIL.CurImagePlugin + • PIL.IcoImagePlugin + • PIL.Image + +
+ +
+ +
+ + PIL.BufrStubImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • __future__ + • typing + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.CurImagePlugin +SourceModule
+imports: + PIL + • PIL.BmpImagePlugin + • PIL.Image + • PIL.ImageFile + • PIL._binary + • __future__ + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.DcxImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.PcxImagePlugin + • PIL._binary + • __future__ + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.DdsImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL.ImagePalette + • PIL._binary + • __future__ + • enum + • io + • struct + • sys + • typing + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.EpsImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL._binary + • __future__ + • io + • os + • re + • shutil + • subprocess + • sys + • tempfile + • typing + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.ExifTags +SourceModule
+imports: + PIL + • __future__ + • enum + +
+
+imported by: + PIL + • PIL.Image + • PIL.ImageOps + • PIL.TiffImagePlugin + +
+ +
+ +
+ + PIL.FitsImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • __future__ + • gzip + • math + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.FliImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL.ImagePalette + • PIL._binary + • __future__ + • os + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.FpxImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL._binary + • __future__ + • olefile + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.FtexImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • __future__ + • enum + • io + • struct + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.GbrImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL._binary + • __future__ + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.GifImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageChops + • PIL.ImageFile + • PIL.ImageMath + • PIL.ImageOps + • PIL.ImagePalette + • PIL.ImageSequence + • PIL._binary + • PIL._imaging + • PIL._typing + • __future__ + • copy + • enum + • functools + • io + • itertools + • math + • os + • subprocess + • typing + +
+
+imported by: + PIL + • PIL.Image + +
+ +
+ +
+ + PIL.GimpGradientFile +SourceModule
+imports: + PIL + • PIL._binary + • __future__ + • math + • typing + +
+
+imported by: + PIL + • PIL.ImagePalette + +
+ +
+ +
+ + PIL.GimpPaletteFile +SourceModule
+imports: + PIL + • PIL._binary + • __future__ + • re + • typing + +
+
+imported by: + PIL + • PIL.ImagePalette + +
+ +
+ +
+ + PIL.GribStubImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • __future__ + • typing + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.Hdf5StubImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • __future__ + • typing + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.IcnsImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL.Jpeg2KImagePlugin + • PIL.PngImagePlugin + • PIL._deprecate + • PIL.features + • __future__ + • io + • os + • struct + • sys + • typing + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.IcoImagePlugin +SourceModule
+imports: + PIL + • PIL.BmpImagePlugin + • PIL.Image + • PIL.ImageFile + • PIL.PngImagePlugin + • PIL._binary + • __future__ + • io + • math + • typing + • warnings + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.ImImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL.ImagePalette + • __future__ + • os + • re + • typing + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.Image +SourceModule
+imports: + PIL + • PIL.BlpImagePlugin + • PIL.BmpImagePlugin + • PIL.BufrStubImagePlugin + • PIL.CurImagePlugin + • PIL.DcxImagePlugin + • PIL.DdsImagePlugin + • PIL.EpsImagePlugin + • PIL.ExifTags + • PIL.FitsImagePlugin + • PIL.FliImagePlugin + • PIL.FpxImagePlugin + • PIL.FtexImagePlugin + • PIL.GbrImagePlugin + • PIL.GifImagePlugin + • PIL.GribStubImagePlugin + • PIL.Hdf5StubImagePlugin + • PIL.IcnsImagePlugin + • PIL.IcoImagePlugin + • PIL.ImImagePlugin + • PIL.ImageCms + • PIL.ImageColor + • PIL.ImageFile + • PIL.ImageFilter + • PIL.ImageMode + • PIL.ImagePalette + • PIL.ImageQt + • PIL.ImageShow + • PIL.ImtImagePlugin + • PIL.IptcImagePlugin + • PIL.Jpeg2KImagePlugin + • PIL.JpegImagePlugin + • PIL.McIdasImagePlugin + • PIL.MicImagePlugin + • PIL.MpegImagePlugin + • PIL.MpoImagePlugin + • PIL.MspImagePlugin + • PIL.PalmImagePlugin + • PIL.PcdImagePlugin + • PIL.PcxImagePlugin + • PIL.PdfImagePlugin + • PIL.PixarImagePlugin + • PIL.PngImagePlugin + • PIL.PpmImagePlugin + • PIL.PsdImagePlugin + • PIL.QoiImagePlugin + • PIL.SgiImagePlugin + • PIL.SpiderImagePlugin + • PIL.SunImagePlugin + • PIL.TgaImagePlugin + • PIL.TiffImagePlugin + • PIL.TiffTags + • PIL.WebPImagePlugin + • PIL.WmfImagePlugin + • PIL.XVThumbImagePlugin + • PIL.XbmImagePlugin + • PIL.XpmImagePlugin + • PIL._binary + • PIL._deprecate + • PIL._imaging + • PIL._typing + • PIL._util + • __future__ + • abc + • atexit + • builtins + • collections.abc + • defusedxml + • defusedxml.ElementTree + • enum + • io + • logging + • math + • mmap + • os + • re + • struct + • sys + • tempfile + • types + • typing + • warnings + • xml.etree.ElementTree + +
+
+imported by: + PIL + • PIL.BlpImagePlugin + • PIL.BmpImagePlugin + • PIL.BufrStubImagePlugin + • PIL.CurImagePlugin + • PIL.DcxImagePlugin + • PIL.DdsImagePlugin + • PIL.EpsImagePlugin + • PIL.FitsImagePlugin + • PIL.FliImagePlugin + • PIL.FpxImagePlugin + • PIL.FtexImagePlugin + • PIL.GbrImagePlugin + • PIL.GifImagePlugin + • PIL.GribStubImagePlugin + • PIL.Hdf5StubImagePlugin + • PIL.IcnsImagePlugin + • PIL.IcoImagePlugin + • PIL.ImImagePlugin + • PIL.ImageChops + • PIL.ImageCms + • PIL.ImageColor + • PIL.ImageFile + • PIL.ImageFilter + • PIL.ImageMath + • PIL.ImageOps + • PIL.ImagePalette + • PIL.ImageQt + • PIL.ImageSequence + • PIL.ImageShow + • PIL.ImageTk + • PIL.ImageWin + • PIL.ImtImagePlugin + • PIL.IptcImagePlugin + • PIL.Jpeg2KImagePlugin + • PIL.JpegImagePlugin + • PIL.McIdasImagePlugin + • PIL.MicImagePlugin + • PIL.MpegImagePlugin + • PIL.MpoImagePlugin + • PIL.MspImagePlugin + • PIL.PalmImagePlugin + • PIL.PcdImagePlugin + • PIL.PcxImagePlugin + • PIL.PdfImagePlugin + • PIL.PixarImagePlugin + • PIL.PngImagePlugin + • PIL.PpmImagePlugin + • PIL.PsdImagePlugin + • PIL.QoiImagePlugin + • PIL.SgiImagePlugin + • PIL.SpiderImagePlugin + • PIL.SunImagePlugin + • PIL.TgaImagePlugin + • PIL.TiffImagePlugin + • PIL.WebPImagePlugin + • PIL.WmfImagePlugin + • PIL.XVThumbImagePlugin + • PIL.XbmImagePlugin + • PIL.XpmImagePlugin + • PIL.features + • openpyxl.drawing.image + +
+ +
+ +
+ + PIL.ImageChops +SourceModule
+imports: + PIL + • PIL.Image + • __future__ + +
+
+imported by: + PIL + • PIL.GifImagePlugin + • PIL.PngImagePlugin + +
+ +
+ +
+ + PIL.ImageCms +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageWin + • PIL._deprecate + • PIL._imagingcms + • PIL._typing + • PIL._util + • __future__ + • enum + • functools + • operator + • sys + • typing + +
+
+imported by: + PIL + • PIL.Image + +
+ +
+ +
+ + PIL.ImageColor +SourceModule
+imports: + PIL + • PIL.Image + • __future__ + • colorsys + • functools + • re + +
+
+imported by: + PIL + • PIL.Image + • PIL.ImageOps + • PIL.ImagePalette + +
+ +
+ + + +
+ + PIL.ImageFilter +SourceModule
+imports: + PIL + • PIL.Image + • PIL._imaging + • PIL._typing + • __future__ + • abc + • collections.abc + • functools + • types + • typing + +
+
+imported by: + PIL + • PIL.Image + +
+ +
+ +
+ + PIL.ImageMath +SourceModule
+imports: + PIL + • PIL.Image + • PIL._deprecate + • PIL._imagingmath + • __future__ + • builtins + • types + • typing + +
+
+imported by: + PIL + • PIL.GifImagePlugin + +
+ +
+ +
+ + PIL.ImageMode +SourceModule
+imports: + PIL + • PIL._deprecate + • __future__ + • functools + • sys + • typing + +
+
+imported by: + PIL + • PIL.Image + +
+ +
+ +
+ + PIL.ImageOps +SourceModule
+imports: + PIL + • PIL.ExifTags + • PIL.Image + • PIL.ImageColor + • PIL.ImagePalette + • __future__ + • collections.abc + • functools + • operator + • re + • typing + +
+
+imported by: + PIL + • PIL.GifImagePlugin + • PIL.TiffImagePlugin + +
+ +
+ + + +
+ + PIL.ImageQt +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL._util + • __future__ + • io + • sys + • typing + +
+
+imported by: + PIL + • PIL.Image + +
+ +
+ +
+ + PIL.ImageSequence +SourceModule
+imports: + PIL + • PIL.Image + • __future__ + • typing + +
+
+imported by: + PIL + • PIL.GifImagePlugin + • PIL.MpoImagePlugin + • PIL.PdfImagePlugin + • PIL.PngImagePlugin + +
+ +
+ +
+ + PIL.ImageShow +SourceModule
+imports: + PIL + • PIL.Image + • __future__ + • abc + • os + • shlex + • shutil + • subprocess + • sys + • typing + +
+
+imported by: + PIL + • PIL.Image + +
+ +
+ +
+ + PIL.ImageTk +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL._imagingtk + • PIL._typing + • __future__ + • io + • typing + +
+
+imported by: + PIL + • PIL.SpiderImagePlugin + +
+ +
+ +
+ + PIL.ImageWin +SourceModule
+imports: + PIL + • PIL.Image + • __future__ + +
+
+imported by: + PIL + • PIL.ImageCms + +
+ +
+ +
+ + PIL.ImtImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • __future__ + • re + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.IptcImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL.JpegImagePlugin + • PIL.TiffImagePlugin + • PIL._binary + • PIL._deprecate + • __future__ + • collections.abc + • io + • typing + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.Jpeg2KImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL.ImagePalette + • PIL._binary + • __future__ + • collections.abc + • io + • os + • struct + • typing + +
+
+imported by: + PIL + • PIL.IcnsImagePlugin + • PIL.Image + +
+ +
+ +
+ + PIL.JpegImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL.JpegPresets + • PIL.MpoImagePlugin + • PIL.TiffImagePlugin + • PIL._binary + • PIL._deprecate + • __future__ + • array + • io + • math + • os + • struct + • subprocess + • sys + • tempfile + • typing + • warnings + +
+
+imported by: + PIL + • PIL.BlpImagePlugin + • PIL.Image + • PIL.IptcImagePlugin + • PIL.MpoImagePlugin + +
+ +
+ +
+ + PIL.JpegPresets +SourceModule
+imports: + PIL + • __future__ + +
+
+imported by: + PIL.JpegImagePlugin + +
+ +
+ +
+ + PIL.McIdasImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • __future__ + • struct + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.MicImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.TiffImagePlugin + • __future__ + • olefile + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.MpegImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL._binary + • PIL._typing + • __future__ + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.MpoImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL.ImageSequence + • PIL.JpegImagePlugin + • PIL.TiffImagePlugin + • PIL._binary + • __future__ + • itertools + • os + • struct + • typing + +
+
+imported by: + PIL.Image + • PIL.JpegImagePlugin + +
+ +
+ +
+ + PIL.MspImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL._binary + • __future__ + • io + • struct + • typing + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.PaletteFile +SourceModule
+imports: + PIL + • PIL._binary + • __future__ + • typing + +
+
+imported by: + PIL + • PIL.ImagePalette + +
+ +
+ +
+ + PIL.PalmImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL._binary + • __future__ + • typing + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.PcdImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • __future__ + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.PcxImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL.ImagePalette + • PIL._binary + • __future__ + • io + • logging + • typing + +
+
+imported by: + PIL.DcxImagePlugin + • PIL.Image + +
+ +
+ +
+ + PIL.PdfImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL.ImageSequence + • PIL.PdfParser + • PIL.features + • __future__ + • io + • math + • os + • time + • typing + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.PdfParser +SourceModule
+imports: + PIL + • __future__ + • calendar + • codecs + • collections + • mmap + • os + • re + • time + • typing + • zlib + +
+
+imported by: + PIL + • PIL.PdfImagePlugin + +
+ +
+ +
+ + PIL.PixarImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL._binary + • __future__ + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.PngImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageChops + • PIL.ImageFile + • PIL.ImagePalette + • PIL.ImageSequence + • PIL._binary + • PIL._imaging + • __future__ + • collections.abc + • enum + • io + • itertools + • logging + • re + • struct + • typing + • warnings + • zlib + +
+
+imported by: + PIL + • PIL.IcnsImagePlugin + • PIL.IcoImagePlugin + • PIL.Image + +
+ +
+ +
+ + PIL.PpmImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL._binary + • __future__ + • math + • typing + +
+
+imported by: + PIL + • PIL.Image + +
+ +
+ +
+ + PIL.PsdImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL.ImagePalette + • PIL._binary + • __future__ + • functools + • io + • typing + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.QoiImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL._binary + • __future__ + • os + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.SgiImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL._binary + • __future__ + • os + • struct + • typing + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.SpiderImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL.ImageTk + • __future__ + • os + • struct + • sys + • typing + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.SunImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL.ImagePalette + • PIL._binary + • __future__ + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.TgaImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL.ImagePalette + • PIL._binary + • __future__ + • typing + • warnings + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.TiffImagePlugin +SourceModule
+imports: + PIL + • PIL.ExifTags + • PIL.Image + • PIL.ImageFile + • PIL.ImageOps + • PIL.ImagePalette + • PIL.TiffTags + • PIL._binary + • PIL._deprecate + • PIL._typing + • PIL._util + • __future__ + • collections.abc + • fractions + • io + • itertools + • logging + • math + • numbers + • os + • struct + • typing + • warnings + +
+ + +
+ +
+ + PIL.TiffTags +SourceModule
+imports: + PIL + • __future__ + • typing + +
+
+imported by: + PIL + • PIL.Image + • PIL.TiffImagePlugin + +
+ +
+ +
+ + PIL.WebPImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL._webp + • __future__ + • io + • typing + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.WmfImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL._binary + • __future__ + • typing + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.XVThumbImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL.ImagePalette + • PIL._binary + • __future__ + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.XbmImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • __future__ + • re + • typing + +
+
+imported by: + PIL.Image + +
+ +
+ +
+ + PIL.XpmImagePlugin +SourceModule
+imports: + PIL + • PIL.Image + • PIL.ImageFile + • PIL.ImagePalette + • PIL._binary + • __future__ + • re + +
+
+imported by: + PIL.Image + +
+ +
+ + + +
+ + PIL._deprecate +SourceModule
+imports: + PIL + • __future__ + • warnings + +
+ + +
+ +
+ + PIL._imaging /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_imaging.cpython-312-darwin.so
+imports: + PIL + • typing + +
+
+imported by: + PIL + • PIL.GifImagePlugin + • PIL.Image + • PIL.ImageFilter + • PIL.PngImagePlugin + +
+ +
+ +
+ + PIL._imagingcms /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_imagingcms.cpython-312-darwin.so
+imports: + PIL + • PIL._typing + • datetime + • sys + • typing + +
+
+imported by: + PIL + • PIL.ImageCms + +
+ +
+ +
+ + PIL._imagingmath /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_imagingmath.cpython-312-darwin.so
+imports: + PIL + • typing + +
+
+imported by: + PIL + • PIL.ImageMath + +
+ +
+ +
+ + PIL._imagingtk /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_imagingtk.cpython-312-darwin.so
+imports: + PIL + • typing + +
+
+imported by: + PIL + • PIL.ImageTk + +
+ +
+ +
+ + PIL._typing +SourceModule
+imports: + PIL + • __future__ + • collections.abc + • numbers + • numpy.typing + • os + • sys + • types + • typing + • typing_extensions + +
+ + +
+ +
+ + PIL._util +SourceModule
+imports: + PIL + • PIL._typing + • __future__ + • os + • typing + +
+
+imported by: + PIL.Image + • PIL.ImageCms + • PIL.ImageFile + • PIL.ImageQt + • PIL.TiffImagePlugin + +
+ +
+ +
+ + PIL._version +SourceModule
+imports: + PIL + • __future__ + +
+
+imported by: + PIL + +
+ +
+ +
+ + PIL._webp /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/PIL/_webp.cpython-312-darwin.so
+imports: + PIL + • typing + +
+
+imported by: + PIL + • PIL.WebPImagePlugin + +
+ +
+ +
+ + PIL.features +SourceModule
+imports: + PIL + • PIL.Image + • PIL._deprecate + • __future__ + • collections + • os + • sys + • typing + • warnings + +
+
+imported by: + PIL + • PIL.IcnsImagePlugin + • PIL.PdfImagePlugin + +
+ +
+ +
+ + PyQt4 +MissingModule
+imported by: + pandas.io.clipboard + +
+ +
+ + + +
+ + StringIO +MissingModule
+imported by: + Crypto.Util.py3compat + • six + +
+ +
+ +
+ + UserDict +MissingModule
+imported by: + ldap3.utils.ordDict + • pytz.lazy + +
+ +
+ +
+ + __future__ +SourceModule
+imported by: + PIL + • PIL.BlpImagePlugin + • PIL.BmpImagePlugin + • PIL.BufrStubImagePlugin + • PIL.CurImagePlugin + • PIL.DcxImagePlugin + • PIL.DdsImagePlugin + • PIL.EpsImagePlugin + • PIL.ExifTags + • PIL.FitsImagePlugin + • PIL.FliImagePlugin + • PIL.FpxImagePlugin + • PIL.FtexImagePlugin + • PIL.GbrImagePlugin + • PIL.GifImagePlugin + • PIL.GimpGradientFile + • PIL.GimpPaletteFile + • PIL.GribStubImagePlugin + • PIL.Hdf5StubImagePlugin + • PIL.IcnsImagePlugin + • PIL.IcoImagePlugin + • PIL.ImImagePlugin + • PIL.Image + • PIL.ImageChops + • PIL.ImageCms + • PIL.ImageColor + • PIL.ImageFile + • PIL.ImageFilter + • PIL.ImageMath + • PIL.ImageMode + • PIL.ImageOps + • PIL.ImagePalette + • PIL.ImageQt + • PIL.ImageSequence + • PIL.ImageShow + • PIL.ImageTk + • PIL.ImageWin + • PIL.ImtImagePlugin + • PIL.IptcImagePlugin + • PIL.Jpeg2KImagePlugin + • PIL.JpegImagePlugin + • PIL.JpegPresets + • PIL.McIdasImagePlugin + • PIL.MicImagePlugin + • PIL.MpegImagePlugin + • PIL.MpoImagePlugin + • PIL.MspImagePlugin + • PIL.PaletteFile + • PIL.PalmImagePlugin + • PIL.PcdImagePlugin + • PIL.PcxImagePlugin + • PIL.PdfImagePlugin + • PIL.PdfParser + • PIL.PixarImagePlugin + • PIL.PngImagePlugin + • PIL.PpmImagePlugin + • PIL.PsdImagePlugin + • PIL.QoiImagePlugin + • PIL.SgiImagePlugin + • PIL.SpiderImagePlugin + • PIL.SunImagePlugin + • PIL.TgaImagePlugin + • PIL.TiffImagePlugin + • PIL.TiffTags + • PIL.WebPImagePlugin + • PIL.WmfImagePlugin + • PIL.XVThumbImagePlugin + • PIL.XbmImagePlugin + • PIL.XpmImagePlugin + • PIL._binary + • PIL._deprecate + • PIL._typing + • PIL._util + • PIL._version + • PIL.features + • ad_user_creator.cli + • ad_user_creator.config + • ad_user_creator.input_parser + • ad_user_creator.interactive + • ad_user_creator.ldap_client + • ad_user_creator.logging_setup + • ad_user_creator.main + • ad_user_creator.models + • ad_user_creator.persistence + • ad_user_creator.user_service + • bs4.builder + • bs4.builder._htmlparser + • bs4.builder._lxml + • bs4.css + • bs4.element + • bs4.filter + • bs4.formatter + • codeop + • cryptography + • cryptography.__about__ + • cryptography.exceptions + • cryptography.hazmat + • cryptography.hazmat._oid + • cryptography.hazmat.backends + • cryptography.hazmat.backends.openssl + • cryptography.hazmat.backends.openssl.backend + • cryptography.hazmat.bindings.openssl._conditional + • cryptography.hazmat.bindings.openssl.binding + • cryptography.hazmat.decrepit + • cryptography.hazmat.decrepit.ciphers + • cryptography.hazmat.decrepit.ciphers.algorithms + • cryptography.hazmat.primitives._asymmetric + • cryptography.hazmat.primitives._cipheralgorithm + • cryptography.hazmat.primitives._serialization + • cryptography.hazmat.primitives.asymmetric.dh + • cryptography.hazmat.primitives.asymmetric.dsa + • cryptography.hazmat.primitives.asymmetric.ec + • cryptography.hazmat.primitives.asymmetric.ed25519 + • cryptography.hazmat.primitives.asymmetric.ed448 + • cryptography.hazmat.primitives.asymmetric.padding + • cryptography.hazmat.primitives.asymmetric.rsa + • cryptography.hazmat.primitives.asymmetric.types + • cryptography.hazmat.primitives.asymmetric.utils + • cryptography.hazmat.primitives.asymmetric.x25519 + • cryptography.hazmat.primitives.asymmetric.x448 + • cryptography.hazmat.primitives.ciphers + • cryptography.hazmat.primitives.ciphers.algorithms + • cryptography.hazmat.primitives.ciphers.base + • cryptography.hazmat.primitives.ciphers.modes + • cryptography.hazmat.primitives.constant_time + • cryptography.hazmat.primitives.hashes + • cryptography.hazmat.primitives.serialization + • cryptography.hazmat.primitives.serialization.ssh + • cryptography.utils + • cryptography.x509 + • cryptography.x509.base + • cryptography.x509.certificate_transparency + • cryptography.x509.extensions + • cryptography.x509.general_name + • cryptography.x509.name + • cryptography.x509.oid + • cryptography.x509.verification + • cssselect.parser + • cssselect.xpath + • dateutil.parser._parser + • defusedxml + • defusedxml.ElementTree + • defusedxml.cElementTree + • defusedxml.expatbuilder + • defusedxml.expatreader + • defusedxml.minidom + • defusedxml.pulldom + • defusedxml.sax + • defusedxml.xmlrpc + • doctest + • entry.py + • et_xmlfile + • et_xmlfile.xmlfile + • filelock + • filelock._api + • filelock._error + • filelock._soft + • filelock._unix + • filelock._util + • filelock._windows + • filelock.asyncio + • numexpr.necompiler + • numpy._typing + • numpy._typing._array_like + • numpy._typing._nested_sequence + • numpy.f2py._backends._backend + • numpy.f2py._backends._meson + • numpy.random._pickle + • olefile.olefile + • packaging._elffile + • packaging._manylinux + • packaging._musllinux + • packaging._parser + • packaging._tokenizer + • packaging.licenses + • packaging.licenses._spdx + • packaging.markers + • packaging.metadata + • packaging.requirements + • packaging.specifiers + • packaging.tags + • packaging.utils + • packaging.version + • pandas + • pandas._config.config + • pandas._config.dates + • pandas._config.display + • pandas._config.localization + • pandas._testing + • pandas._testing._io + • pandas._testing._warnings + • pandas._testing.asserters + • pandas._testing.compat + • pandas._testing.contexts + • pandas._typing + • pandas.compat + • pandas.compat._constants + • pandas.compat._optional + • pandas.compat.compressors + • pandas.compat.numpy.function + • pandas.compat.pickle_compat + • pandas.compat.pyarrow + • pandas.conftest + • pandas.core._numba.executor + • pandas.core._numba.extensions + • pandas.core._numba.kernels.mean_ + • pandas.core._numba.kernels.min_max_ + • pandas.core._numba.kernels.shared + • pandas.core._numba.kernels.sum_ + • pandas.core._numba.kernels.var_ + • pandas.core.accessor + • pandas.core.algorithms + • pandas.core.apply + • pandas.core.array_algos.datetimelike_accumulations + • pandas.core.array_algos.masked_accumulations + • pandas.core.array_algos.masked_reductions + • pandas.core.array_algos.putmask + • pandas.core.array_algos.quantile + • pandas.core.array_algos.replace + • pandas.core.array_algos.take + • pandas.core.array_algos.transforms + • pandas.core.arraylike + • pandas.core.arrays._arrow_string_mixins + • pandas.core.arrays._mixins + • pandas.core.arrays._ranges + • pandas.core.arrays._utils + • pandas.core.arrays.arrow._arrow_utils + • pandas.core.arrays.arrow.accessors + • pandas.core.arrays.arrow.array + • pandas.core.arrays.arrow.extension_types + • pandas.core.arrays.base + • pandas.core.arrays.boolean + • pandas.core.arrays.categorical + • pandas.core.arrays.datetimelike + • pandas.core.arrays.datetimes + • pandas.core.arrays.floating + • pandas.core.arrays.integer + • pandas.core.arrays.interval + • pandas.core.arrays.masked + • pandas.core.arrays.numeric + • pandas.core.arrays.numpy_ + • pandas.core.arrays.period + • pandas.core.arrays.sparse.accessor + • pandas.core.arrays.sparse.array + • pandas.core.arrays.sparse.scipy_sparse + • pandas.core.arrays.string_ + • pandas.core.arrays.string_arrow + • pandas.core.arrays.timedeltas + • pandas.core.base + • pandas.core.common + • pandas.core.computation.align + • pandas.core.computation.check + • pandas.core.computation.common + • pandas.core.computation.engines + • pandas.core.computation.eval + • pandas.core.computation.expr + • pandas.core.computation.expressions + • pandas.core.computation.ops + • pandas.core.computation.parsing + • pandas.core.computation.pytables + • pandas.core.computation.scope + • pandas.core.config_init + • pandas.core.construction + • pandas.core.dtypes.astype + • pandas.core.dtypes.base + • pandas.core.dtypes.cast + • pandas.core.dtypes.common + • pandas.core.dtypes.concat + • pandas.core.dtypes.dtypes + • pandas.core.dtypes.generic + • pandas.core.dtypes.inference + • pandas.core.dtypes.missing + • pandas.core.flags + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.base + • pandas.core.groupby.categorical + • pandas.core.groupby.generic + • pandas.core.groupby.groupby + • pandas.core.groupby.grouper + • pandas.core.groupby.indexing + • pandas.core.groupby.numba_ + • pandas.core.groupby.ops + • pandas.core.indexers.objects + • pandas.core.indexers.utils + • pandas.core.indexes.accessors + • pandas.core.indexes.api + • pandas.core.indexes.base + • pandas.core.indexes.category + • pandas.core.indexes.datetimelike + • pandas.core.indexes.datetimes + • pandas.core.indexes.extension + • pandas.core.indexes.frozen + • pandas.core.indexes.interval + • pandas.core.indexes.multi + • pandas.core.indexes.period + • pandas.core.indexes.range + • pandas.core.indexes.timedeltas + • pandas.core.indexing + • pandas.core.interchange.buffer + • pandas.core.interchange.column + • pandas.core.interchange.dataframe + • pandas.core.interchange.dataframe_protocol + • pandas.core.interchange.from_dataframe + • pandas.core.interchange.utils + • pandas.core.internals.api + • pandas.core.internals.array_manager + • pandas.core.internals.base + • pandas.core.internals.blocks + • pandas.core.internals.concat + • pandas.core.internals.construction + • pandas.core.internals.managers + • pandas.core.internals.ops + • pandas.core.methods.describe + • pandas.core.methods.selectn + • pandas.core.methods.to_dict + • pandas.core.missing + • pandas.core.nanops + • pandas.core.ops + • pandas.core.ops.array_ops + • pandas.core.ops.common + • pandas.core.ops.dispatch + • pandas.core.ops.docstrings + • pandas.core.ops.invalid + • pandas.core.ops.mask_ops + • pandas.core.ops.missing + • pandas.core.resample + • pandas.core.reshape.concat + • pandas.core.reshape.encoding + • pandas.core.reshape.melt + • pandas.core.reshape.merge + • pandas.core.reshape.pivot + • pandas.core.reshape.reshape + • pandas.core.reshape.tile + • pandas.core.reshape.util + • pandas.core.roperator + • pandas.core.sample + • pandas.core.series + • pandas.core.shared_docs + • pandas.core.sorting + • pandas.core.strings.accessor + • pandas.core.strings.base + • pandas.core.strings.object_array + • pandas.core.tools.datetimes + • pandas.core.tools.numeric + • pandas.core.tools.timedeltas + • pandas.core.tools.times + • pandas.core.util.hashing + • pandas.core.util.numba_ + • pandas.core.window.common + • pandas.core.window.doc + • pandas.core.window.ewm + • pandas.core.window.expanding + • pandas.core.window.numba_ + • pandas.core.window.online + • pandas.core.window.rolling + • pandas.errors + • pandas.io._util + • pandas.io.clipboards + • pandas.io.common + • pandas.io.excel._base + • pandas.io.excel._calamine + • pandas.io.excel._odfreader + • pandas.io.excel._odswriter + • pandas.io.excel._openpyxl + • pandas.io.excel._pyxlsb + • pandas.io.excel._util + • pandas.io.excel._xlrd + • pandas.io.excel._xlsxwriter + • pandas.io.feather_format + • pandas.io.formats._color_data + • pandas.io.formats.console + • pandas.io.formats.css + • pandas.io.formats.csvs + • pandas.io.formats.excel + • pandas.io.formats.format + • pandas.io.formats.html + • pandas.io.formats.info + • pandas.io.formats.printing + • pandas.io.formats.string + • pandas.io.formats.style + • pandas.io.formats.style_render + • pandas.io.formats.xml + • pandas.io.gbq + • pandas.io.html + • pandas.io.json._json + • pandas.io.json._normalize + • pandas.io.json._table_schema + • pandas.io.orc + • pandas.io.parquet + • pandas.io.parsers.arrow_parser_wrapper + • pandas.io.parsers.base_parser + • pandas.io.parsers.c_parser_wrapper + • pandas.io.parsers.python_parser + • pandas.io.parsers.readers + • pandas.io.pickle + • pandas.io.pytables + • pandas.io.sas.sas7bdat + • pandas.io.sas.sas_constants + • pandas.io.sas.sas_xport + • pandas.io.sas.sasreader + • pandas.io.spss + • pandas.io.sql + • pandas.io.stata + • pandas.io.xml + • pandas.plotting._core + • pandas.plotting._matplotlib + • pandas.plotting._matplotlib.boxplot + • pandas.plotting._matplotlib.converter + • pandas.plotting._matplotlib.core + • pandas.plotting._matplotlib.groupby + • pandas.plotting._matplotlib.hist + • pandas.plotting._matplotlib.misc + • pandas.plotting._matplotlib.style + • pandas.plotting._matplotlib.timeseries + • pandas.plotting._matplotlib.tools + • pandas.plotting._misc + • pandas.tests.api.test_api + • pandas.tests.api.test_types + • pandas.tests.arithmetic.test_numeric + • pandas.tests.arrays.masked.test_arithmetic + • pandas.tests.arrays.test_datetimelike + • pandas.tests.arrays.test_datetimes + • pandas.tests.computation.test_eval + • pandas.tests.dtypes.test_common + • pandas.tests.extension.array_with_attr.array + • pandas.tests.extension.base.ops + • pandas.tests.extension.date.array + • pandas.tests.extension.decimal.array + • pandas.tests.extension.decimal.test_decimal + • pandas.tests.extension.json.array + • pandas.tests.extension.list.array + • pandas.tests.extension.test_arrow + • pandas.tests.extension.test_interval + • pandas.tests.extension.test_period + • pandas.tests.extension.test_string + • pandas.tests.frame.common + • pandas.tests.frame.methods.test_replace + • pandas.tests.indexes.datetimes.test_constructors + • pandas.tests.indexes.test_old_base + • pandas.tests.indexing.common + • pandas.tests.indexing.test_coercion + • pandas.tests.io.excel.test_readers + • pandas.tests.io.parser.conftest + • pandas.tests.io.parser.test_python_parser_only + • pandas.tests.io.test_pickle + • pandas.tests.io.test_sql + • pandas.tests.io.xml.test_to_xml + • pandas.tests.io.xml.test_xml + • pandas.tests.io.xml.test_xml_dtypes + • pandas.tests.plotting.common + • pandas.tests.tseries.offsets.common + • pandas.tests.tseries.offsets.test_business_day + • pandas.tests.tseries.offsets.test_business_hour + • pandas.tests.tseries.offsets.test_business_month + • pandas.tests.tseries.offsets.test_business_quarter + • pandas.tests.tseries.offsets.test_business_year + • pandas.tests.tseries.offsets.test_custom_business_hour + • pandas.tests.tseries.offsets.test_custom_business_month + • pandas.tests.tseries.offsets.test_easter + • pandas.tests.tseries.offsets.test_month + • pandas.tests.tseries.offsets.test_offsets + • pandas.tests.tseries.offsets.test_quarter + • pandas.tests.tseries.offsets.test_week + • pandas.tests.tseries.offsets.test_year + • pandas.tseries.frequencies + • pandas.tseries.holiday + • pandas.tseries.offsets + • pandas.util._decorators + • pandas.util._doctools + • pandas.util._exceptions + • pandas.util._print_versions + • pandas.util._test_decorators + • pandas.util._tester + • pandas.util._validators + • pandas.util.version + • pkg_resources + • platformdirs + • platformdirs.android + • platformdirs.api + • platformdirs.macos + • platformdirs.unix + • platformdirs.windows + • pydoc + • setuptools + • setuptools._core_metadata + • setuptools._distutils.cmd + • setuptools._distutils.compat + • setuptools._distutils.core + • setuptools._distutils.dist + • setuptools._distutils.fancy_getopt + • setuptools._distutils.spawn + • setuptools._distutils.util + • setuptools._path + • setuptools._reqs + • setuptools._vendor.importlib_metadata + • setuptools._vendor.importlib_metadata._meta + • setuptools._vendor.jaraco.context + • setuptools._vendor.packaging._elffile + • setuptools._vendor.packaging._manylinux + • setuptools._vendor.packaging._musllinux + • setuptools._vendor.packaging._parser + • setuptools._vendor.packaging._tokenizer + • setuptools._vendor.packaging.markers + • setuptools._vendor.packaging.requirements + • setuptools._vendor.packaging.specifiers + • setuptools._vendor.packaging.tags + • setuptools._vendor.packaging.utils + • setuptools._vendor.packaging.version + • setuptools._vendor.tomli._parser + • setuptools._vendor.tomli._re + • setuptools.command._requirestxt + • setuptools.command.bdist_egg + • setuptools.command.bdist_wheel + • setuptools.command.build + • setuptools.command.sdist + • setuptools.compat.py311 + • setuptools.config._apply_pyprojecttoml + • setuptools.config.expand + • setuptools.config.pyprojecttoml + • setuptools.config.setupcfg + • setuptools.depends + • setuptools.discovery + • setuptools.dist + • setuptools.errors + • setuptools.extension + • setuptools.glob + • setuptools.installer + • setuptools.monkey + • setuptools.msvc + • setuptools.warnings + • six + • soupsieve + • soupsieve.__meta__ + • soupsieve.css_match + • soupsieve.css_parser + • soupsieve.css_types + • soupsieve.pretty + • soupsieve.util + • tomllib._parser + • tomllib._re + • wheel + • wheel.cli + • wheel.cli.convert + • wheel.cli.pack + • wheel.cli.tags + • wheel.cli.unpack + • wheel.macosx_libfile + • wheel.metadata + • wheel.util + • wheel.wheelfile + • xlrd.biffh + • xlrd.book + • xlrd.compdoc + • xlrd.formatting + • xlrd.formula + • xlrd.sheet + • xlrd.timemachine + +
+ +
+ +
+ + _abc (builtin module)
+imported by: + abc + +
+ +
+ +
+ + _aix_support +SourceModule
+imports: + contextlib + • os + • subprocess + • sys + • sysconfig + +
+
+imported by: + sysconfig + +
+ +
+ +
+ + _ast (builtin module)
+imported by: + ast + +
+ +
+ +
+ + _asyncio /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_asyncio.cpython-312-darwin.so
+imported by: + asyncio.events + • asyncio.futures + • asyncio.tasks + +
+ +
+ +
+ + _bisect /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_bisect.cpython-312-darwin.so
+imported by: + bisect + +
+ +
+ +
+ + _blake2 /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_blake2.cpython-312-darwin.so
+imported by: + hashlib + +
+ +
+ +
+ + _bz2 /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_bz2.cpython-312-darwin.so
+imported by: + bz2 + +
+ +
+ +
+ + _cffi_backend /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/_cffi_backend.cpython-312-darwin.so
+imported by: + bcrypt + • cffi.api + • cffi.commontypes + • cffi.verifier + • cryptography + +
+ +
+ +
+ + _codecs (builtin module)
+imported by: + codecs + +
+ +
+ +
+ + _codecs_cn /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_cn.cpython-312-darwin.so
+imported by: + encodings.gb18030 + • encodings.gb2312 + • encodings.gbk + • encodings.hz + +
+ +
+ +
+ + _codecs_hk /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_hk.cpython-312-darwin.so
+imported by: + encodings.big5hkscs + +
+ +
+ +
+ + _codecs_iso2022 /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_iso2022.cpython-312-darwin.so + +
+ +
+ + _codecs_jp /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_jp.cpython-312-darwin.so + +
+ +
+ + _codecs_kr /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_kr.cpython-312-darwin.so
+imported by: + encodings.cp949 + • encodings.euc_kr + • encodings.johab + +
+ +
+ +
+ + _codecs_tw /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_codecs_tw.cpython-312-darwin.so
+imported by: + encodings.big5 + • encodings.cp950 + +
+ +
+ +
+ + _collections (builtin module)
+imported by: + collections + • threading + +
+ +
+ +
+ + _collections_abc +SourceModule
+imports: + abc + • sys + • warnings + +
+
+imported by: + collections + • collections.abc + • contextlib + • entry.py + • locale + • os + • pathlib + • random + • types + • weakref + +
+ +
+ +
+ + _compat_pickle +SourceModule
+imported by: + _pickle + • pickle + +
+ +
+ +
+ + _compression +SourceModule
+imports: + io + • sys + +
+
+imported by: + bz2 + • gzip + • lzma + +
+ +
+ +
+ + _contextvars /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_contextvars.cpython-312-darwin.so
+imported by: + contextvars + +
+ +
+ +
+ + _csv /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_csv.cpython-312-darwin.so
+imported by: + csv + • pandas.tests.io.formats.test_to_csv + +
+ +
+ +
+ + _ctypes /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_ctypes.cpython-312-darwin.so
+imported by: + ctypes + • ctypes.macholib.dyld + • numpy._core._dtype_ctypes + +
+ +
+ +
+ + _datetime /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_datetime.cpython-312-darwin.so
+imports: + _strptime + • time + +
+
+imported by: + datetime + +
+ +
+ +
+ + _decimal /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_decimal.cpython-312-darwin.so
+imported by: + decimal + +
+ +
+ +
+ + _distutils_hack +Package
+imports: + importlib + • importlib.abc + • importlib.util + • os + • sys + • traceback + • warnings + +
+ + +
+ +
+ + _distutils_hack.override +SourceModule
+imports: + _distutils_hack + +
+
+imported by: + setuptools + • setuptools.discovery + +
+ +
+ +
+ + _dummy_thread +MissingModule
+imported by: + cffi.lock + • numpy._core.arrayprint + +
+ +
+ +
+ + _elementtree /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_elementtree.cpython-312-darwin.so +
+imported by: + xml.etree.ElementTree + +
+ +
+ +
+ + _frozen_importlib +ExcludedModule
+imported by: + importlib + • importlib.abc + • zipimport + +
+ +
+ +
+ + _frozen_importlib_external +MissingModule
+imported by: + importlib + • importlib._bootstrap + • importlib.abc + • zipimport + +
+ +
+ +
+ + _functools (builtin module)
+imported by: + functools + +
+ +
+ +
+ + _hashlib /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_hashlib.cpython-312-darwin.so
+imported by: + hashlib + • hmac + +
+ +
+ +
+ + _heapq /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_heapq.cpython-312-darwin.so
+imported by: + heapq + +
+ +
+ +
+ + _imp (builtin module) + +
+ +
+ + _io (builtin module)
+imported by: + importlib._bootstrap_external + • io + • unittest.mock + • zipimport + +
+ +
+ +
+ + _json /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_json.cpython-312-darwin.so
+imports: + json.decoder + +
+
+imported by: + json.decoder + • json.encoder + • json.scanner + +
+ +
+ +
+ + _locale (builtin module)
+imported by: + locale + +
+ +
+ +
+ + _lzma /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_lzma.cpython-312-darwin.so
+imported by: + lzma + +
+ +
+ + + +
+ + _markupbase +SourceModule
+imports: + re + +
+
+imported by: + html.parser + +
+ +
+ +
+ + _md5 /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_md5.cpython-312-darwin.so
+imported by: + hashlib + +
+ +
+ +
+ + _multibytecodec /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_multibytecodec.cpython-312-darwin.so + +
+ +
+ + _multiprocessing /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_multiprocessing.cpython-312-darwin.so + +
+ +
+ + _opcode /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_opcode.cpython-312-darwin.so
+imported by: + opcode + +
+ +
+ +
+ + _operator (builtin module)
+imported by: + hmac + • operator + +
+ +
+ +
+ + _osx_support +SourceModule
+imports: + contextlib + • os + • re + • sys + • tempfile + +
+
+imported by: + sysconfig + +
+ +
+ +
+ + _overlapped +MissingModule
+imported by: + asyncio.windows_events + +
+ +
+ +
+ + _pickle /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_pickle.cpython-312-darwin.so
+imports: + _compat_pickle + • codecs + • copyreg + +
+
+imported by: + pickle + +
+ +
+ +
+ + _posixshmem /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_posixshmem.cpython-312-darwin.so + +
+ +
+ + _posixsubprocess /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_posixsubprocess.cpython-312-darwin.so
+imports: + gc + +
+
+imported by: + multiprocessing.util + • subprocess + +
+ +
+ +
+ + _py_abc +SourceModule
+imports: + _weakrefset + +
+
+imported by: + abc + +
+ +
+ +
+ + _pydatetime +SourceModule
+imports: + _strptime + • math + • operator + • sys + • time + • warnings + +
+
+imported by: + datetime + +
+ +
+ +
+ + _pydecimal +SourceModule
+imports: + collections + • contextvars + • itertools + • locale + • math + • numbers + • re + • sys + +
+
+imported by: + decimal + +
+ +
+ +
+ + _queue /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_queue.cpython-312-darwin.so
+imported by: + queue + +
+ +
+ +
+ + _random /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_random.cpython-312-darwin.so
+imported by: + random + +
+ +
+ +
+ + _scproxy /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_scproxy.cpython-312-darwin.so
+imported by: + urllib.request + +
+ +
+ +
+ + _sha1 /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_sha1.cpython-312-darwin.so
+imported by: + hashlib + +
+ +
+ +
+ + _sha2 /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_sha2.cpython-312-darwin.so
+imported by: + hashlib + • random + +
+ +
+ +
+ + _sha3 /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_sha3.cpython-312-darwin.so
+imported by: + hashlib + +
+ +
+ +
+ + _signal (builtin module)
+imported by: + signal + +
+ +
+ +
+ + _sitebuiltins +SourceModule
+imports: + os + • pydoc + • sys + +
+
+imported by: + site + +
+ +
+ +
+ + _socket /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_socket.cpython-312-darwin.so
+imported by: + socket + • typing_extensions + +
+ +
+ +
+ + _sqlite3 /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_sqlite3.cpython-312-darwin.so
+imported by: + sqlite3.dbapi2 + +
+ +
+ +
+ + _sre (builtin module)
+imports: + copy + • re + +
+
+imported by: + re + • re._compiler + • re._constants + +
+ +
+ +
+ + _ssl /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_ssl.cpython-312-darwin.so
+imports: + socket + +
+
+imported by: + ssl + +
+ +
+ +
+ + _stat (builtin module)
+imported by: + stat + +
+ +
+ +
+ + _statistics /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_statistics.cpython-312-darwin.so
+imported by: + statistics + +
+ +
+ +
+ + _string (builtin module)
+imported by: + string + +
+ +
+ +
+ + _strptime +SourceModule
+imports: + _thread + • calendar + • datetime + • locale + • re + • time + +
+
+imported by: + _datetime + • _pydatetime + • time + +
+ +
+ +
+ + _struct /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_struct.cpython-312-darwin.so
+imported by: + struct + +
+ +
+ +
+ + _sysconfigdata__darwin_darwin +SourceModule
+imported by: + sysconfig + +
+ +
+ +
+ + _thread (builtin module)
+imported by: + _strptime + • cffi.cparser + • cffi.lock + • dataclasses + • functools + • numpy._core.arrayprint + • reprlib + • six.moves._thread + • tempfile + • threading + +
+ +
+ +
+ + _threading_local +SourceModule
+imports: + contextlib + • threading + • weakref + +
+
+imported by: + threading + +
+ +
+ +
+ + _tokenize (builtin module)
+imported by: + tokenize + +
+ +
+ +
+ + _tracemalloc (builtin module)
+imported by: + tracemalloc + +
+ +
+ +
+ + _typeshed +MissingModule
+imported by: + pkg_resources + • setuptools.compat.py311 + • setuptools.glob + +
+ +
+ +
+ + _typing (builtin module)
+imported by: + typing + +
+ +
+ +
+ + _uuid /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_uuid.cpython-312-darwin.so
+imported by: + uuid + +
+ +
+ +
+ + _warnings (builtin module)
+imported by: + importlib._bootstrap_external + • warnings + • zipimport + +
+ +
+ +
+ + _weakref (builtin module)
+imported by: + _weakrefset + • collections + • weakref + • xml.sax.expatreader + +
+ +
+ +
+ + _weakrefset +SourceModule
+imports: + _weakref + • types + +
+
+imported by: + _py_abc + • entry.py + • multiprocessing.process + • threading + • weakref + +
+ +
+ + + +
+ + _winreg +MissingModule
+imported by: + numexpr.cpuinfo + • platform + +
+ +
+ +
+ + _wmi +MissingModule
+imported by: + platform + +
+ +
+ +
+ + _zoneinfo /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/_zoneinfo.cpython-312-darwin.so
+imported by: + zoneinfo + +
+ +
+ +
+ + abc +SourceModule
+imports: + _abc + • _py_abc + +
+
+imported by: + Crypto.Util._raw_api + • Crypto.Util.py3compat + • PIL.BlpImagePlugin + • PIL.Image + • PIL.ImageFile + • PIL.ImageFilter + • PIL.ImageShow + • _collections_abc + • contextlib + • cryptography.hazmat.primitives._asymmetric + • cryptography.hazmat.primitives._cipheralgorithm + • cryptography.hazmat.primitives._serialization + • cryptography.hazmat.primitives.asymmetric.dh + • cryptography.hazmat.primitives.asymmetric.dsa + • cryptography.hazmat.primitives.asymmetric.ec + • cryptography.hazmat.primitives.asymmetric.ed25519 + • cryptography.hazmat.primitives.asymmetric.ed448 + • cryptography.hazmat.primitives.asymmetric.padding + • cryptography.hazmat.primitives.asymmetric.rsa + • cryptography.hazmat.primitives.asymmetric.x25519 + • cryptography.hazmat.primitives.asymmetric.x448 + • cryptography.hazmat.primitives.ciphers.base + • cryptography.hazmat.primitives.ciphers.modes + • cryptography.hazmat.primitives.hashes + • cryptography.x509.base + • cryptography.x509.certificate_transparency + • cryptography.x509.extensions + • cryptography.x509.general_name + • dataclasses + • email._policybase + • entry.py + • filelock._api + • functools + • importlib._abc + • importlib.abc + • importlib.metadata + • importlib.resources.abc + • inspect + • io + • multiprocessing.reduction + • numbers + • numpy.f2py._backends._backend + • numpy.polynomial._polybase + • numpy.random.bit_generator + • openpyxl.compat.abc + • openpyxl.packaging.interface + • os + • packaging.specifiers + • pandas.core.apply + • pandas.core.arrays.arrow.accessors + • pandas.core.computation.engines + • pandas.core.indexes.datetimelike + • pandas.core.interchange.dataframe_protocol + • pandas.core.methods.describe + • pandas.core.strings.base + • pandas.io.common + • pandas.io.formats.info + • pandas.io.json._json + • pandas.io.sas.sasreader + • pandas.io.sql + • pandas.plotting._matplotlib.core + • platformdirs.api + • selectors + • setuptools + • setuptools._vendor.importlib_metadata + • setuptools._vendor.packaging.specifiers + • typing + • typing_extensions + • wheel.cli.convert + • wheel.vendored.packaging.specifiers + +
+ +
+ + + +
+ + ad_user_creator.cli +SourceModule
+imports: + __future__ + • ad_user_creator + • argparse + • pathlib + +
+
+imported by: + ad_user_creator.main + +
+ +
+ +
+ + ad_user_creator.config +SourceModule
+imports: + __future__ + • ad_user_creator + • ad_user_creator.exceptions + • ad_user_creator.models + • os + • pathlib + • typing + • yaml + +
+
+imported by: + ad_user_creator.main + +
+ +
+ + + +
+ + ad_user_creator.input_parser +SourceModule
+imports: + __future__ + • ad_user_creator + • ad_user_creator.exceptions + • ad_user_creator.models + • pandas + • pathlib + • re + • typing + +
+
+imported by: + ad_user_creator.main + +
+ +
+ +
+ + ad_user_creator.interactive +SourceModule +
+imported by: + ad_user_creator.main + +
+ +
+ + + +
+ + ad_user_creator.logging_setup +SourceModule
+imports: + __future__ + • ad_user_creator + • logging + • pathlib + +
+
+imported by: + ad_user_creator.main + +
+ +
+ + + + + +
+ + ad_user_creator.persistence +SourceModule
+imports: + __future__ + • ad_user_creator + • ad_user_creator.exceptions + • datetime + • filelock + • json + • pathlib + • typing + • yaml + +
+ + +
+ + + +
+ + adbc_driver_manager +MissingModule
+imported by: + pandas.tests.io.test_sql + +
+ +
+ +
+ + adbc_driver_postgresql +MissingModule
+imported by: + pandas.tests.io.test_sql + +
+ +
+ +
+ + adbc_driver_sqlite +MissingModule
+imported by: + pandas.tests.io.test_sql + +
+ +
+ +
+ + argparse +SourceModule
+imports: + copy + • gettext + • os + • re + • shutil + • sys + • textwrap + • warnings + +
+
+imported by: + ad_user_creator.cli + • ast + • calendar + • code + • dis + • doctest + • gzip + • http.server + • inspect + • numpy.f2py.f2py2e + • pickletools + • py_compile + • setuptools._vendor.backports.tarfile + • sqlite3.__main__ + • tarfile + • tokenize + • unittest.main + • uuid + • wheel.cli + • zipfile + +
+ +
+ +
+ + array /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/array.cpython-312-darwin.so + +
+ + + +
+ + asyncio +Package + + +
+ +
+ + asyncio.DefaultEventLoopPolicy +MissingModule
+imported by: + asyncio + • asyncio.events + +
+ +
+ +
+ + asyncio.base_events +SourceModule
+imports: + asyncio + • asyncio.constants + • asyncio.coroutines + • asyncio.events + • asyncio.exceptions + • asyncio.futures + • asyncio.log + • asyncio.protocols + • asyncio.sslproto + • asyncio.staggered + • asyncio.tasks + • asyncio.timeouts + • asyncio.transports + • asyncio.trsock + • collections + • collections.abc + • concurrent.futures + • errno + • heapq + • itertools + • os + • socket + • ssl + • stat + • subprocess + • sys + • threading + • time + • traceback + • warnings + • weakref + +
+ + +
+ +
+ + asyncio.base_futures +SourceModule
+imports: + asyncio + • asyncio.format_helpers + • reprlib + +
+
+imported by: + asyncio + • asyncio.base_tasks + • asyncio.futures + +
+ +
+ +
+ + asyncio.base_subprocess +SourceModule
+imports: + asyncio + • asyncio.log + • asyncio.protocols + • asyncio.transports + • collections + • subprocess + • warnings + +
+
+imported by: + asyncio + • asyncio.unix_events + • asyncio.windows_events + +
+ +
+ +
+ + asyncio.base_tasks +SourceModule
+imports: + asyncio + • asyncio.base_futures + • asyncio.coroutines + • linecache + • reprlib + • traceback + +
+
+imported by: + asyncio + • asyncio.tasks + +
+ +
+ +
+ + asyncio.constants +SourceModule
+imports: + asyncio + • enum + +
+ + +
+ +
+ + asyncio.coroutines +SourceModule
+imports: + asyncio + • collections.abc + • inspect + • os + • sys + • types + +
+ + +
+ + + + + +
+ + asyncio.format_helpers +SourceModule
+imports: + asyncio + • asyncio.constants + • functools + • inspect + • reprlib + • sys + • traceback + +
+
+imported by: + asyncio + • asyncio.base_futures + • asyncio.events + • asyncio.futures + • asyncio.streams + +
+ +
+ + + +
+ + asyncio.locks +SourceModule
+imports: + asyncio + • asyncio.exceptions + • asyncio.mixins + • collections + • enum + +
+
+imported by: + asyncio + • asyncio.queues + • asyncio.staggered + +
+ +
+ + + +
+ + asyncio.mixins +SourceModule
+imports: + asyncio + • asyncio.events + • threading + +
+
+imported by: + asyncio + • asyncio.locks + • asyncio.queues + +
+ +
+ +
+ + asyncio.proactor_events +SourceModule +
+imported by: + asyncio + • asyncio.windows_events + +
+ +
+ +
+ + asyncio.protocols +SourceModule
+imports: + asyncio + +
+ + +
+ +
+ + asyncio.queues +SourceModule
+imports: + asyncio + • asyncio.locks + • asyncio.mixins + • collections + • heapq + • types + +
+
+imported by: + asyncio + • asyncio.tasks + +
+ +
+ +
+ + asyncio.runners +SourceModule
+imports: + asyncio + • asyncio.constants + • asyncio.coroutines + • asyncio.events + • asyncio.exceptions + • asyncio.tasks + • contextvars + • enum + • functools + • signal + • threading + +
+
+imported by: + asyncio + +
+ +
+ +
+ + asyncio.selector_events +SourceModule
+imports: + asyncio + • asyncio.base_events + • asyncio.constants + • asyncio.events + • asyncio.futures + • asyncio.log + • asyncio.protocols + • asyncio.sslproto + • asyncio.transports + • asyncio.trsock + • collections + • errno + • functools + • itertools + • os + • selectors + • socket + • ssl + • warnings + • weakref + +
+
+imported by: + asyncio + • asyncio.unix_events + • asyncio.windows_events + +
+ +
+ +
+ + asyncio.sslproto +SourceModule
+imports: + asyncio + • asyncio.constants + • asyncio.exceptions + • asyncio.log + • asyncio.protocols + • asyncio.transports + • collections + • enum + • ssl + • warnings + +
+ + +
+ +
+ + asyncio.staggered +SourceModule
+imports: + asyncio + • asyncio.events + • asyncio.exceptions + • asyncio.locks + • asyncio.tasks + • contextlib + +
+
+imported by: + asyncio + • asyncio.base_events + +
+ +
+ +
+ + asyncio.streams +SourceModule +
+imported by: + asyncio + • asyncio.subprocess + +
+ +
+ +
+ + asyncio.subprocess +SourceModule
+imports: + asyncio + • asyncio.events + • asyncio.log + • asyncio.protocols + • asyncio.streams + • asyncio.tasks + • subprocess + +
+
+imported by: + asyncio + +
+ +
+ +
+ + asyncio.taskgroups +SourceModule
+imports: + asyncio + • asyncio.events + • asyncio.exceptions + • asyncio.tasks + +
+
+imported by: + asyncio + +
+ +
+ + + +
+ + asyncio.threads +SourceModule
+imports: + asyncio + • asyncio.events + • contextvars + • functools + +
+
+imported by: + asyncio + +
+ +
+ +
+ + asyncio.timeouts +SourceModule
+imports: + asyncio + • asyncio.events + • asyncio.exceptions + • asyncio.tasks + • enum + • types + • typing + +
+
+imported by: + asyncio + • asyncio.base_events + • asyncio.tasks + +
+ +
+ +
+ + asyncio.transports +SourceModule
+imports: + asyncio + +
+ + +
+ +
+ + asyncio.trsock +SourceModule
+imports: + asyncio + • socket + +
+ + +
+ +
+ + asyncio.unix_events +SourceModule +
+imported by: + asyncio + +
+ +
+ +
+ + asyncio.windows_events +SourceModule
+imports: + _overlapped + • _winapi + • asyncio + • asyncio.base_subprocess + • asyncio.events + • asyncio.exceptions + • asyncio.futures + • asyncio.log + • asyncio.proactor_events + • asyncio.selector_events + • asyncio.tasks + • asyncio.windows_utils + • errno + • functools + • math + • msvcrt + • socket + • struct + • sys + • time + • weakref + +
+
+imported by: + asyncio + +
+ +
+ +
+ + asyncio.windows_utils +SourceModule
+imports: + _winapi + • asyncio + • itertools + • msvcrt + • os + • subprocess + • sys + • tempfile + • warnings + +
+
+imported by: + asyncio + • asyncio.windows_events + +
+ +
+ +
+ + atexit (builtin module)
+imported by: + PIL.Image + • logging + • multiprocessing.util + • openpyxl.worksheet._writer + • rlcompleter + • site + • weakref + +
+ +
+ +
+ + backports +AliasNode +
+imported by: + setuptools._vendor.jaraco.context + +
+ +
+ +
+ + backports.tarfile +AliasNode +
+imported by: + backports + • setuptools._vendor.jaraco.context + +
+ +
+ + + +
+ + bcrypt +Package
+imports: + _cffi_backend + • bcrypt._bcrypt + +
+ + +
+ +
+ + bcrypt._bcrypt /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/bcrypt/_bcrypt.abi3.so
+imports: + bcrypt + +
+
+imported by: + bcrypt + +
+ +
+ +
+ + bdb +SourceModule
+imports: + contextlib + • fnmatch + • inspect + • linecache + • os + • reprlib + • sys + +
+
+imported by: + pdb + +
+ +
+ +
+ + binascii /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/binascii.cpython-312-darwin.so + +
+ +
+ + bisect +SourceModule
+imports: + _bisect + +
+
+imported by: + dateutil.tz.tz + • multiprocessing.heap + • pytz.tzinfo + • random + • statistics + • urllib.request + • zoneinfo._zoneinfo + +
+ +
+ +
+ + boto3 +MissingModule
+imported by: + pandas.tests.io.conftest + +
+ +
+ +
+ + botocore +MissingModule + +
+ + + +
+ + bs4._deprecation +SourceModule
+imports: + bs4 + • functools + • typing + • warnings + +
+
+imported by: + bs4 + • bs4.element + • bs4.filter + +
+ +
+ +
+ + bs4._typing +SourceModule
+imports: + bs4 + • bs4.element + • typing + • typing_extensions + +
+
+imported by: + bs4 + • bs4.builder + • bs4.builder._html5lib + • bs4.builder._htmlparser + • bs4.builder._lxml + • bs4.css + • bs4.dammit + • bs4.element + • bs4.filter + • bs4.formatter + +
+ +
+ +
+ + bs4._warnings +SourceModule
+imports: + bs4 + +
+
+imported by: + bs4 + • bs4.builder + • bs4.element + +
+ +
+ +
+ + bs4.builder +Package
+imports: + __future__ + • bs4 + • bs4._typing + • bs4._warnings + • bs4.builder + • bs4.builder._html5lib + • bs4.builder._htmlparser + • bs4.builder._lxml + • bs4.element + • bs4.exceptions + • collections + • re + • sys + • types + • typing + • warnings + +
+ + +
+ +
+ + bs4.builder._html5lib +SourceModule
+imports: + 'html5lib.constants' + • 'html5lib.treebuilders' + • bs4 + • bs4._typing + • bs4.builder + • bs4.element + • html5lib + • typing + • typing_extensions + • warnings + +
+
+imported by: + bs4.builder + +
+ +
+ +
+ + bs4.builder._htmlparser +SourceModule
+imports: + __future__ + • bs4 + • bs4._typing + • bs4.builder + • bs4.dammit + • bs4.element + • bs4.exceptions + • html.parser + • typing + +
+
+imported by: + bs4 + • bs4.builder + +
+ +
+ +
+ + bs4.builder._lxml +SourceModule
+imports: + __future__ + • bs4 + • bs4._typing + • bs4.builder + • bs4.dammit + • bs4.element + • bs4.exceptions + • io + • lxml + • lxml.etree + • typing + • typing_extensions + +
+
+imported by: + bs4.builder + +
+ +
+ +
+ + bs4.css +SourceModule
+imports: + __future__ + • bs4 + • bs4._typing + • bs4.element + • soupsieve + • types + • typing + • warnings + +
+
+imported by: + bs4 + • bs4.element + +
+ +
+ +
+ + bs4.dammit +SourceModule
+imports: + bs4 + • bs4._typing + • cchardet + • chardet + • charset_normalizer + • codecs + • collections + • html.entities + • logging + • re + • types + • typing + • typing_extensions + • warnings + +
+
+imported by: + bs4 + • bs4.builder._htmlparser + • bs4.builder._lxml + • bs4.formatter + +
+ +
+ +
+ + bs4.element +SourceModule
+imports: + __future__ + • bs4 + • bs4._deprecation + • bs4._typing + • bs4._warnings + • bs4.builder + • bs4.css + • bs4.filter + • bs4.formatter + • re + • typing + • typing_extensions + • warnings + +
+
+imported by: + bs4 + • bs4._typing + • bs4.builder + • bs4.builder._html5lib + • bs4.builder._htmlparser + • bs4.builder._lxml + • bs4.css + • bs4.filter + • bs4.formatter + +
+ +
+ +
+ + bs4.exceptions +SourceModule
+imports: + bs4 + • typing + +
+
+imported by: + bs4 + • bs4.builder + • bs4.builder._htmlparser + • bs4.builder._lxml + +
+ +
+ +
+ + bs4.filter +SourceModule
+imports: + __future__ + • bs4 + • bs4._deprecation + • bs4._typing + • bs4.element + • collections + • re + • typing + • warnings + +
+
+imported by: + bs4 + • bs4.element + +
+ +
+ +
+ + bs4.formatter +SourceModule
+imports: + __future__ + • bs4 + • bs4._typing + • bs4.dammit + • bs4.element + • typing + • typing_extensions + +
+
+imported by: + bs4 + • bs4.element + +
+ +
+ + + +
+ + bz2 +SourceModule
+imports: + _bz2 + • _compression + • builtins + • io + • os + +
+ + +
+ +
+ + cPickle +MissingModule
+imported by: + pycparser.ply.yacc + +
+ +
+ +
+ + cStringIO +MissingModule
+imported by: + cffi.ffiplatform + • xlrd.timemachine + +
+ +
+ + + +
+ + cchardet +MissingModule
+imported by: + bs4.dammit + +
+ +
+ + + +
+ + cffi._imp_emulation +SourceModule
+imports: + _imp + • cffi + • imp + • importlib + • importlib._bootstrap + • importlib.machinery + • os + • sys + • tokenize + +
+
+imported by: + cffi + • cffi.vengine_cpy + +
+ +
+ +
+ + cffi._pycparser +MissingModule
+imported by: + cffi + • cffi.cparser + +
+ +
+ + + +
+ + cffi.api +SourceModule
+imports: + _cffi_backend + • cffi + • cffi._shimmed_dist_utils + • cffi.cparser + • cffi.error + • cffi.lock + • cffi.model + • cffi.pkgconfig + • cffi.recompiler + • cffi.verifier + • collections + • collections.Callable + • ctypes.util + • os + • re + • sys + • sysconfig + • types + +
+
+imported by: + cffi + +
+ +
+ +
+ + cffi.cffi_opcode +SourceModule
+imports: + cffi + • cffi.error + +
+
+imported by: + cffi.recompiler + +
+ +
+ +
+ + cffi.commontypes +SourceModule
+imports: + _cffi_backend + • cffi + • cffi.error + • cffi.model + • sys + +
+
+imported by: + cffi.cparser + +
+ +
+ +
+ + cffi.cparser +SourceModule
+imports: + _thread + • cffi + • cffi._pycparser + • cffi.commontypes + • cffi.error + • cffi.model + • pycparser + • pycparser.lextab + • pycparser.yacctab + • re + • sys + • thread + • warnings + • weakref + +
+
+imported by: + cffi + • cffi.api + +
+ +
+ +
+ + cffi.error +SourceModule
+imports: + cffi + +
+ + +
+ +
+ + cffi.ffiplatform +SourceModule
+imports: + cStringIO + • cffi + • cffi._shimmed_dist_utils + • cffi.error + • io + • os + • os.path + • sys + +
+
+imported by: + cffi + • cffi.recompiler + • cffi.verifier + +
+ +
+ +
+ + cffi.lock +SourceModule
+imports: + _dummy_thread + • _thread + • cffi + • dummy_thread + • sys + • thread + +
+
+imported by: + cffi.api + • cffi.model + +
+ +
+ +
+ + cffi.model +SourceModule
+imports: + cffi + • cffi.error + • cffi.lock + • types + • warnings + • weakref + +
+
+imported by: + cffi + • cffi.api + • cffi.commontypes + • cffi.cparser + • cffi.recompiler + • cffi.vengine_cpy + • cffi.vengine_gen + +
+ +
+ +
+ + cffi.pkgconfig +SourceModule
+imports: + cffi + • cffi.error + • os + • subprocess + • sys + +
+
+imported by: + cffi + • cffi.api + +
+ +
+ +
+ + cffi.recompiler +SourceModule
+imports: + cffi + • cffi._shimmed_dist_utils + • cffi.cffi_opcode + • cffi.error + • cffi.ffiplatform + • cffi.model + • io + • os + • sys + • sysconfig + +
+
+imported by: + cffi.api + +
+ +
+ +
+ + cffi.vengine_cpy +SourceModule
+imports: + cffi + • cffi._imp_emulation + • cffi.error + • cffi.model + • sys + • warnings + +
+
+imported by: + cffi + • cffi.verifier + +
+ +
+ +
+ + cffi.vengine_gen +SourceModule
+imports: + cffi + • cffi.error + • cffi.model + • os + • sys + • types + +
+
+imported by: + cffi + • cffi.verifier + +
+ +
+ +
+ + cffi.verifier +SourceModule
+imports: + _cffi_backend + • binascii + • cffi + • cffi.error + • cffi.ffiplatform + • cffi.vengine_cpy + • cffi.vengine_gen + • imp + • importlib.machinery + • io + • os + • shutil + • sys + +
+
+imported by: + cffi.api + +
+ +
+ +
+ + cgi +SourceModule
+imports: + collections.abc + • email.message + • email.parser + • html + • io + • locale + • os + • re + • sys + • tempfile + • traceback + • urllib.parse + • warnings + +
+
+imported by: + lxml.doctestcompare + • lxml.html.diff + +
+ +
+ +
+ + chardet +MissingModule
+imported by: + bs4.dammit + +
+ +
+ + + + + + + + + +
+ + charset_normalizer.legacy +SourceModule +
+imported by: + charset_normalizer + +
+ +
+ +
+ + charset_normalizer.md +SourceModule +
+imported by: + charset_normalizer.api + • charset_normalizer.cd + +
+ +
+ + + + + +
+ + charset_normalizer.version +SourceModule
+imports: + charset_normalizer + +
+
+imported by: + charset_normalizer + +
+ +
+ +
+ + cmath /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/cmath.cpython-312-darwin.so
+imported by: + pandas + +
+ +
+ +
+ + cmd +SourceModule
+imports: + readline + • string + • sys + +
+
+imported by: + pdb + +
+ +
+ +
+ + code +SourceModule
+imports: + argparse + • codeop + • readline + • sys + • traceback + +
+
+imported by: + pdb + • sqlite3.__main__ + +
+ +
+ +
+ + codecs +SourceModule
+imports: + _codecs + • builtins + • encodings + • sys + +
+
+imported by: + PIL.PdfParser + • _pickle + • bs4.dammit + • charset_normalizer.cd + • charset_normalizer.constant + • charset_normalizer.utils + • encodings + • encodings.ascii + • encodings.base64_codec + • encodings.big5 + • encodings.big5hkscs + • encodings.bz2_codec + • encodings.charmap + • encodings.cp037 + • encodings.cp1006 + • encodings.cp1026 + • encodings.cp1125 + • encodings.cp1140 + • encodings.cp1250 + • encodings.cp1251 + • encodings.cp1252 + • encodings.cp1253 + • encodings.cp1254 + • encodings.cp1255 + • encodings.cp1256 + • encodings.cp1257 + • encodings.cp1258 + • encodings.cp273 + • encodings.cp424 + • encodings.cp437 + • encodings.cp500 + • encodings.cp720 + • encodings.cp737 + • encodings.cp775 + • encodings.cp850 + • encodings.cp852 + • encodings.cp855 + • encodings.cp856 + • encodings.cp857 + • encodings.cp858 + • encodings.cp860 + • encodings.cp861 + • encodings.cp862 + • encodings.cp863 + • encodings.cp864 + • encodings.cp865 + • encodings.cp866 + • encodings.cp869 + • encodings.cp874 + • encodings.cp875 + • encodings.cp932 + • encodings.cp949 + • encodings.cp950 + • encodings.euc_jis_2004 + • encodings.euc_jisx0213 + • encodings.euc_jp + • encodings.euc_kr + • encodings.gb18030 + • encodings.gb2312 + • encodings.gbk + • encodings.hex_codec + • encodings.hp_roman8 + • encodings.hz + • encodings.idna + • encodings.iso2022_jp + • encodings.iso2022_jp_1 + • encodings.iso2022_jp_2 + • encodings.iso2022_jp_2004 + • encodings.iso2022_jp_3 + • encodings.iso2022_jp_ext + • encodings.iso2022_kr + • encodings.iso8859_1 + • encodings.iso8859_10 + • encodings.iso8859_11 + • encodings.iso8859_13 + • encodings.iso8859_14 + • encodings.iso8859_15 + • encodings.iso8859_16 + • encodings.iso8859_2 + • encodings.iso8859_3 + • encodings.iso8859_4 + • encodings.iso8859_5 + • encodings.iso8859_6 + • encodings.iso8859_7 + • encodings.iso8859_8 + • encodings.iso8859_9 + • encodings.johab + • encodings.koi8_r + • encodings.koi8_t + • encodings.koi8_u + • encodings.kz1048 + • encodings.latin_1 + • encodings.mac_arabic + • encodings.mac_croatian + • encodings.mac_cyrillic + • encodings.mac_farsi + • encodings.mac_greek + • encodings.mac_iceland + • encodings.mac_latin2 + • encodings.mac_roman + • encodings.mac_romanian + • encodings.mac_turkish + • encodings.mbcs + • encodings.oem + • encodings.palmos + • encodings.ptcp154 + • encodings.punycode + • encodings.quopri_codec + • encodings.raw_unicode_escape + • encodings.rot_13 + • encodings.shift_jis + • encodings.shift_jis_2004 + • encodings.shift_jisx0213 + • encodings.tis_620 + • encodings.undefined + • encodings.unicode_escape + • encodings.utf_16 + • encodings.utf_16_be + • encodings.utf_16_le + • encodings.utf_32 + • encodings.utf_32_be + • encodings.utf_32_le + • encodings.utf_7 + • encodings.utf_8 + • encodings.utf_8_sig + • encodings.uu_codec + • encodings.zlib_codec + • entry.py + • json + • numpy.f2py.crackfortran + • pandas.core.strings.accessor + • pandas.io.common + • pandas.io.formats.xml + • pandas.tests.config.test_localization + • pandas.tests.io.formats.test_to_latex + • pandas.tests.io.parser.common.test_read_errors + • pandas.tests.io.test_common + • pandas.util._print_versions + • pickle + • pickletools + • plistlib + • tokenize + • xml.sax.saxutils + • yaml.reader + +
+ +
+ +
+ + codeop +SourceModule
+imports: + __future__ + • warnings + +
+
+imported by: + code + +
+ +
+ +
+ + collections +Package
+imports: + _collections + • _collections_abc + • _weakref + • collections.Callable + • collections.Mapping + • collections.MutableMapping + • copy + • heapq + • itertools + • keyword + • operator + • reprlib + • sys + +
+
+imported by: + PIL.PdfParser + • PIL.features + • _pydecimal + • ast + • asyncio.base_events + • asyncio.base_subprocess + • asyncio.locks + • asyncio.proactor_events + • asyncio.queues + • asyncio.selector_events + • asyncio.sslproto + • asyncio.streams + • bs4 + • bs4.builder + • bs4.dammit + • bs4.filter + • cffi.api + • charset_normalizer.cd + • collections.abc + • concurrent.futures._base + • configparser + • contextlib + • dateutil.tz._factories + • dateutil.tz.tz + • difflib + • dis + • doctest + • email.feedparser + • entry.py + • functools + • importlib.metadata + • importlib.metadata._collections + • importlib.resources.readers + • inspect + • ldap3.abstract.cursor + • ldap3.abstract.entry + • ldap3.utils.ciDict + • multiprocessing.heap + • multiprocessing.pool + • multiprocessing.queues + • numpy._core.overrides + • numpy._core.records + • openpyxl.chart._chart + • openpyxl.formatting.formatting + • openpyxl.pivot.table + • openpyxl.utils.bound_dictionary + • openpyxl.workbook.defined_name + • openpyxl.worksheet._writer + • openpyxl.worksheet.datavalidation + • packaging._manylinux + • pandas.conftest + • pandas.core.apply + • pandas.core.arrays.sparse.array + • pandas.core.common + • pandas.core.computation.scope + • pandas.core.dtypes.inference + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.generic + • pandas.core.groupby.ops + • pandas.core.indexes.base + • pandas.core.interchange.dataframe + • pandas.core.internals.construction + • pandas.core.reshape.concat + • pandas.core.reshape.encoding + • pandas.core.sorting + • pandas.core.tools.datetimes + • pandas.core.window.common + • pandas.io.common + • pandas.io.excel._odswriter + • pandas.io.formats.style_render + • pandas.io.html + • pandas.io.json._json + • pandas.io.json._normalize + • pandas.io.parsers.base_parser + • pandas.io.parsers.c_parser_wrapper + • pandas.io.parsers.python_parser + • pandas.io.parsers.readers + • pandas.io.sas.sas7bdat + • pandas.io.sas.sas_xport + • pandas.io.stata + • pandas.tests.arithmetic.test_numeric + • pandas.tests.arrays.categorical.test_missing + • pandas.tests.base.test_value_counts + • pandas.tests.dtypes.test_inference + • pandas.tests.extension.json.array + • pandas.tests.extension.json.test_json + • pandas.tests.frame.constructors.test_from_dict + • pandas.tests.frame.indexing.test_indexing + • pandas.tests.frame.methods.test_rename + • pandas.tests.frame.methods.test_to_dict + • pandas.tests.frame.methods.test_to_records + • pandas.tests.frame.test_arithmetic + • pandas.tests.frame.test_constructors + • pandas.tests.indexes.test_base + • pandas.tests.indexing.test_loc + • pandas.tests.io.json.test_json_table_schema + • pandas.tests.io.json.test_json_table_schema_ext_dtype + • pandas.tests.io.parser.dtypes.test_dtypes_basic + • pandas.tests.io.parser.test_header + • pandas.tests.reshape.concat.test_concat + • pandas.tests.series.methods.test_map + • pandas.tests.series.methods.test_to_dict + • pandas.tests.series.test_constructors + • pandas.tests.series.test_ufunc + • pandas.tests.test_common + • pandas.tests.test_sorting + • pandas.tests.tools.test_to_datetime + • pandas.util.version + • pkg_resources + • pkgutil + • platform + • pprint + • pydoc + • pytz.lazy + • queue + • selectors + • setuptools._vendor.importlib_metadata + • setuptools._vendor.importlib_metadata._collections + • setuptools._vendor.more_itertools.more + • setuptools._vendor.more_itertools.recipes + • setuptools._vendor.packaging._manylinux + • setuptools.command._requirestxt + • setuptools.config.setupcfg + • shlex + • shutil + • soupsieve.__meta__ + • ssl + • statistics + • string + • threading + • tokenize + • typing + • typing_extensions + • unittest._log + • unittest.case + • unittest.util + • urllib.parse + • wheel.cli.convert + • wheel.vendored.packaging._manylinux + • xlsxwriter.worksheet + • xml.etree.ElementTree + • yaml.representer + • zoneinfo._zoneinfo + +
+ +
+ +
+ + collections.Callable +MissingModule
+imported by: + cffi.api + • collections + +
+ +
+ +
+ + collections.Mapping +MissingModule
+imported by: + collections + • ldap3.utils.ciDict + • pytz.lazy + +
+ +
+ +
+ + collections.MutableMapping +MissingModule
+imported by: + collections + • ldap3.utils.ciDict + +
+ +
+ +
+ + collections.abc +SourceModule
+imports: + _collections_abc + • collections + +
+
+imported by: + PIL.Image + • PIL.ImageFilter + • PIL.ImageOps + • PIL.ImagePalette + • PIL.IptcImagePlugin + • PIL.Jpeg2KImagePlugin + • PIL.PngImagePlugin + • PIL.TiffImagePlugin + • PIL._typing + • asyncio.base_events + • asyncio.coroutines + • cgi + • configparser + • cssselect.parser + • cssselect.xpath + • entry.py + • filelock.asyncio + • http.client + • inspect + • ldap3.utils.ciDict + • logging + • lxml.html + • lxml.html._setmixin + • numpy._core._ufunc_config + • numpy._typing._array_like + • numpy._typing._dtype_like + • numpy._typing._nested_sequence + • numpy._typing._shape + • numpy.lib._function_base_impl + • numpy.lib._npyio_impl + • numpy.random._generator + • numpy.random.bit_generator + • numpy.random.mtrand + • pandas._config.config + • pandas._config.localization + • pandas._testing._warnings + • pandas._testing.contexts + • pandas._typing + • pandas.compat.pickle_compat + • pandas.conftest + • pandas.core.apply + • pandas.core.arrays._mixins + • pandas.core.arrays.arrow.accessors + • pandas.core.arrays.arrow.array + • pandas.core.arrays.base + • pandas.core.arrays.categorical + • pandas.core.arrays.datetimelike + • pandas.core.arrays.datetimes + • pandas.core.arrays.interval + • pandas.core.arrays.masked + • pandas.core.arrays.numeric + • pandas.core.arrays.period + • pandas.core.arrays.sparse.array + • pandas.core.arrays.sparse.scipy_sparse + • pandas.core.arrays.string_arrow + • pandas.core.arrays.timedeltas + • pandas.core.base + • pandas.core.common + • pandas.core.computation.align + • pandas.core.computation.ops + • pandas.core.computation.parsing + • pandas.core.construction + • pandas.core.dtypes.cast + • pandas.core.dtypes.concat + • pandas.core.dtypes.dtypes + • pandas.core.dtypes.inference + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.base + • pandas.core.groupby.generic + • pandas.core.groupby.groupby + • pandas.core.groupby.grouper + • pandas.core.groupby.indexing + • pandas.core.groupby.ops + • pandas.core.indexes.base + • pandas.core.indexes.category + • pandas.core.indexes.datetimelike + • pandas.core.indexes.datetimes + • pandas.core.indexes.interval + • pandas.core.indexes.multi + • pandas.core.indexes.period + • pandas.core.indexes.range + • pandas.core.indexing + • pandas.core.interchange.dataframe + • pandas.core.interchange.dataframe_protocol + • pandas.core.internals.array_manager + • pandas.core.internals.blocks + • pandas.core.internals.concat + • pandas.core.internals.construction + • pandas.core.internals.managers + • pandas.core.internals.ops + • pandas.core.methods.describe + • pandas.core.methods.selectn + • pandas.core.resample + • pandas.core.reshape.concat + • pandas.core.reshape.encoding + • pandas.core.reshape.melt + • pandas.core.reshape.merge + • pandas.core.reshape.pivot + • pandas.core.series + • pandas.core.sorting + • pandas.core.strings.accessor + • pandas.core.strings.base + • pandas.core.strings.object_array + • pandas.core.tools.datetimes + • pandas.core.tools.timedeltas + • pandas.core.util.hashing + • pandas.core.window.rolling + • pandas.io.common + • pandas.io.excel._base + • pandas.io.excel._util + • pandas.io.feather_format + • pandas.io.formats.css + • pandas.io.formats.csvs + • pandas.io.formats.excel + • pandas.io.formats.format + • pandas.io.formats.html + • pandas.io.formats.info + • pandas.io.formats.printing + • pandas.io.formats.string + • pandas.io.formats.style + • pandas.io.formats.style_render + • pandas.io.html + • pandas.io.json._json + • pandas.io.json._normalize + • pandas.io.parsers.base_parser + • pandas.io.parsers.c_parser_wrapper + • pandas.io.parsers.python_parser + • pandas.io.parsers.readers + • pandas.io.pytables + • pandas.io.sas.sas7bdat + • pandas.io.sas.sas_xport + • pandas.io.sas.sasreader + • pandas.io.spss + • pandas.io.sql + • pandas.io.stata + • pandas.io.xml + • pandas.plotting._core + • pandas.plotting._matplotlib.boxplot + • pandas.plotting._matplotlib.converter + • pandas.plotting._matplotlib.core + • pandas.plotting._matplotlib.groupby + • pandas.plotting._matplotlib.misc + • pandas.plotting._matplotlib.style + • pandas.plotting._matplotlib.tools + • pandas.plotting._misc + • pandas.tests.arithmetic.test_numeric + • pandas.tests.dtypes.test_inference + • pandas.tests.extension.date.array + • pandas.tests.extension.json.array + • pandas.tests.frame.constructors.test_from_records + • pandas.tests.frame.methods.test_to_records + • pandas.tests.frame.test_constructors + • pandas.tests.io.json.test_readlines + • pandas.tests.io.parser.test_python_parser_only + • pandas.tests.io.pytables.common + • pandas.tests.io.test_html + • pandas.tests.libs.test_hashtable + • pandas.tests.plotting.common + • pandas.tests.reshape.concat.test_concat + • pandas.tests.series.test_constructors + • pandas.tests.test_register_accessor + • pandas.util._decorators + • pandas.util._doctools + • pandas.util._exceptions + • pandas.util._validators + • pandas.util.version + • pkg_resources + • platformdirs.windows + • pytz.lazy + • selectors + • setuptools + • setuptools._distutils.cmd + • setuptools._distutils.core + • setuptools._distutils.dist + • setuptools._distutils.fancy_getopt + • setuptools._distutils.spawn + • setuptools._reqs + • setuptools._vendor.jaraco.functools + • setuptools._vendor.more_itertools.more + • setuptools._vendor.more_itertools.recipes + • setuptools._vendor.tomli._parser + • setuptools.command._requirestxt + • setuptools.command.bdist_wheel + • setuptools.command.egg_info + • setuptools.config._apply_pyprojecttoml + • setuptools.config.expand + • setuptools.config.pyprojecttoml + • setuptools.config.setupcfg + • setuptools.discovery + • setuptools.dist + • setuptools.glob + • sqlite3.dbapi2 + • tomllib._parser + • traceback + • tracemalloc + • typing + • typing_extensions + • wheel.cli.convert + • wheel.cli.tags + • xml.etree.ElementTree + • yaml.constructor + +
+ +
+ +
+ + colorsys +SourceModule
+imported by: + PIL.ImageColor + +
+ +
+ +
+ + concurrent +Package
+imported by: + concurrent.futures + • filelock.asyncio + +
+ +
+ + + +
+ + concurrent.futures._base +SourceModule
+imports: + collections + • concurrent.futures + • logging + • threading + • time + • types + +
+ + +
+ +
+ + concurrent.futures.process +SourceModule +
+imported by: + concurrent.futures + +
+ +
+ +
+ + concurrent.futures.thread +SourceModule
+imports: + concurrent.futures + • concurrent.futures._base + • itertools + • os + • queue + • threading + • types + • weakref + +
+
+imported by: + concurrent.futures + +
+ +
+ +
+ + configparser +SourceModule
+imports: + collections + • collections.abc + • functools + • io + • itertools + • os + • re + • sys + • warnings + +
+ + +
+ +
+ + contextlib +SourceModule
+imports: + _collections_abc + • abc + • collections + • functools + • os + • sys + • types + +
+
+imported by: + _aix_support + • _osx_support + • _threading_local + • ast + • asyncio.staggered + • bdb + • dateutil.tz.tz + • et_xmlfile.xmlfile + • filelock._api + • filelock._soft + • filelock._unix + • filelock._windows + • filelock.asyncio + • getpass + • glob + • http.server + • importlib.metadata + • importlib.resources._adapters + • importlib.resources._common + • lxml.etree + • numexpr.tests.test_numexpr + • numpy._core._methods + • numpy._core._ufunc_config + • numpy._core.arrayprint + • numpy._core.memmap + • numpy._core.records + • numpy.lib._histograms_impl + • numpy.lib._npyio_impl + • numpy.testing._private.utils + • packaging._manylinux + • packaging._tokenizer + • pandas._config.config + • pandas._config.localization + • pandas._testing._warnings + • pandas._testing.contexts + • pandas.compat.pickle_compat + • pandas.core._numba.extensions + • pandas.core.common + • pandas.core.indexing + • pandas.io.clipboard + • pandas.io.formats.format + • pandas.io.formats.style + • pandas.io.pytables + • pandas.io.sql + • pandas.plotting._matplotlib.converter + • pandas.plotting._misc + • pandas.tests.dtypes.test_missing + • pandas.tests.indexes.period.test_formats + • pandas.tests.io.excel.test_openpyxl + • pandas.tests.io.excel.test_style + • pandas.tests.io.excel.test_xlsxwriter + • pandas.tests.io.formats.style.test_style + • pandas.tests.io.parser.test_multi_thread + • pandas.tests.io.pytables.common + • pandas.tests.io.pytables.test_read + • pandas.tests.io.pytables.test_store + • pandas.tests.io.sas.test_sas7bdat + • pandas.tests.io.test_sql + • pandas.tests.libs.test_hashtable + • pandas.tests.series.methods.test_equals + • pandas.tests.test_register_accessor + • pandas.util._exceptions + • setuptools._distutils._msvccompiler + • setuptools._distutils.command.build_ext + • setuptools._distutils.command.check + • setuptools._distutils.dist + • setuptools._distutils.version + • setuptools._path + • setuptools._vendor.importlib_metadata + • setuptools._vendor.jaraco.context + • setuptools._vendor.packaging._manylinux + • setuptools._vendor.packaging._tokenizer + • setuptools._vendor.zipp + • setuptools.archive_util + • setuptools.command.sdist + • setuptools.config._validate_pyproject.error_reporting + • setuptools.config.pyprojecttoml + • setuptools.config.setupcfg + • setuptools.depends + • setuptools.msvc + • setuptools.wheel + • subprocess + • traceback + • typing + • typing_extensions + • unittest.case + • unittest.mock + • urllib.request + • wheel.vendored.packaging._manylinux + • wheel.vendored.packaging._tokenizer + • xml.etree.ElementTree + • zipfile._path + +
+ +
+ +
+ + contextvars +SourceModule
+imports: + _contextvars + +
+ + +
+ +
+ + copy +SourceModule
+imports: + copyreg + • types + • weakref + +
+
+imported by: + PIL.GifImagePlugin + • _sre + • argparse + • collections + • dataclasses + • email.generator + • gettext + • http.cookiejar + • http.server + • ldap3.abstract.cursor + • ldap3.abstract.entry + • ldap3.core.connection + • ldap3.utils.asn1 + • ldap3.utils.log + • lxml.html + • lxml.html.formfill + • numpy.f2py.auxfuncs + • numpy.f2py.capi_maps + • numpy.f2py.cfuncs + • numpy.f2py.crackfortran + • numpy.f2py.f2py2e + • numpy.f2py.func2subr + • numpy.f2py.rules + • numpy.ma.core + • openpyxl.cell.cell + • openpyxl.cell.rich_text + • openpyxl.descriptors.serialisable + • openpyxl.styles.proxy + • openpyxl.styles.styleable + • openpyxl.workbook.workbook + • openpyxl.worksheet._reader + • openpyxl.worksheet.cell_range + • openpyxl.worksheet.copier + • openpyxl.worksheet.dimensions + • openpyxl.worksheet.merge + • pandas.compat.pickle_compat + • pandas.core.generic + • pandas.core.indexes.base + • pandas.core.indexes.multi + • pandas.core.resample + • pandas.core.window.rolling + • pandas.io.formats.style + • pandas.io.json._normalize + • pandas.io.parsers.base_parser + • pandas.io.pytables + • pandas.tests.frame.test_api + • pandas.tests.generic.test_frame + • pandas.tests.generic.test_generic + • pandas.tests.indexes.multi.test_copy + • pandas.tests.indexes.test_common + • pandas.tests.io.formats.style.test_style + • pandas.tests.reshape.concat.test_index + • pandas.tests.series.methods.test_equals + • pandas.tests.util.test_assert_numpy_array_equal + • pycparser.ply.lex + • setuptools._vendor.backports.tarfile + • tarfile + • weakref + • webbrowser + • xlrd.formula + • xlsxwriter.chart + • xlsxwriter.contenttypes + • xlsxwriter.shape + • xml.dom.xmlbuilder + • xml.etree.ElementInclude + +
+ +
+ +
+ + copyreg +SourceModule
+imports: + functools + • operator + +
+
+imported by: + _pickle + • copy + • entry.py + • multiprocessing.reduction + • numpy._core + • pickle + • re + • soupsieve.css_types + • typing + • yaml.representer + +
+ +
+ + + +
+ + cryptography.__about__ +SourceModule
+imports: + __future__ + • cryptography + +
+
+imported by: + cryptography + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + +
+ + cryptography.hazmat.decrepit +Package
+imports: + __future__ + • cryptography.hazmat + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + cssselect +Package
+imports: + cssselect.parser + • cssselect.xpath + +
+
+imported by: + cssselect.parser + • cssselect.xpath + • lxml.cssselect + +
+ +
+ +
+ + cssselect.parser +SourceModule
+imports: + __future__ + • collections.abc + • cssselect + • operator + • re + • sys + • typing + • typing_extensions + +
+
+imported by: + cssselect + • cssselect.xpath + +
+ +
+ +
+ + cssselect.xpath +SourceModule
+imports: + __future__ + • collections.abc + • cssselect + • cssselect.parser + • re + • typing + • typing_extensions + +
+
+imported by: + cssselect + +
+ +
+ + + + + +
+ + ctypes._aix +SourceModule
+imports: + ctypes + • os + • re + • subprocess + • sys + +
+
+imported by: + ctypes.util + +
+ +
+ +
+ + ctypes._endian +SourceModule
+imports: + ctypes + • sys + +
+
+imported by: + ctypes + +
+ +
+ +
+ + ctypes.macholib +Package
+imports: + ctypes + +
+ + +
+ +
+ + ctypes.macholib.dyld +SourceModule
+imports: + _ctypes + • ctypes.macholib + • ctypes.macholib.dylib + • ctypes.macholib.framework + • itertools + • os + • sys + +
+
+imported by: + ctypes.util + +
+ +
+ +
+ + ctypes.macholib.dylib +SourceModule
+imports: + ctypes.macholib + • re + +
+
+imported by: + ctypes.macholib.dyld + +
+ +
+ +
+ + ctypes.macholib.framework +SourceModule
+imports: + ctypes.macholib + • re + +
+
+imported by: + ctypes.macholib.dyld + +
+ +
+ +
+ + ctypes.util +SourceModule
+imports: + ctypes + • ctypes._aix + • ctypes.macholib.dyld + • importlib.machinery + • os + • re + • shutil + • struct + • subprocess + • sys + • tempfile + +
+
+imported by: + Crypto.Util._raw_api + • cffi.api + +
+ +
+ +
+ + ctypes.wintypes +SourceModule
+imports: + ctypes + +
+ + +
+ +
+ + cycler +MissingModule + +
+ +
+ + dask +MissingModule
+imported by: + pandas.tests.test_downstream + +
+ +
+ + + +
+ + datetime +SourceModule
+imports: + _datetime + • _pydatetime + • time + +
+
+imported by: + PIL._imagingcms + • _strptime + • ad_user_creator.persistence + • calendar + • cryptography.x509.base + • cryptography.x509.certificate_transparency + • cryptography.x509.extensions + • dateutil.easter + • dateutil.parser._parser + • dateutil.parser.isoparser + • dateutil.relativedelta + • dateutil.rrule + • dateutil.tz._common + • dateutil.tz._factories + • dateutil.tz.tz + • dateutil.tz.win + • email.utils + • http.cookiejar + • http.server + • ldap3.abstract.cursor + • ldap3.core.pooling + • ldap3.core.server + • ldap3.core.timezone + • ldap3.core.usage + • ldap3.extend.novell.replicaInfo + • ldap3.protocol.formatters.formatters + • ldap3.protocol.formatters.validators + • ldap3.protocol.rfc2849 + • ldap3.strategy.reusable + • ldap3.utils.conv + • olefile.olefile + • openpyxl.cell._writer + • openpyxl.cell.cell + • openpyxl.compat.strings + • openpyxl.descriptors.base + • openpyxl.packaging.core + • openpyxl.utils.datetime + • openpyxl.utils.inference + • openpyxl.writer.excel + • pandas._libs.tslib + • pandas._libs.tslibs.conversion + • pandas._libs.tslibs.nattype + • pandas._libs.tslibs.offsets + • pandas._libs.tslibs.parsing + • pandas._libs.tslibs.period + • pandas._libs.tslibs.timedeltas + • pandas._libs.tslibs.timestamps + • pandas._libs.tslibs.timezones + • pandas._libs.tslibs.tzconversion + • pandas._libs.tslibs.vectorized + • pandas._testing._hypothesis + • pandas._typing + • pandas.conftest + • pandas.core.arrays.datetimelike + • pandas.core.arrays.datetimes + • pandas.core.arrays.period + • pandas.core.arrays.timedeltas + • pandas.core.computation.ops + • pandas.core.computation.scope + • pandas.core.dtypes.cast + • pandas.core.dtypes.dtypes + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.groupby + • pandas.core.indexers.objects + • pandas.core.indexes.base + • pandas.core.indexes.datetimelike + • pandas.core.indexes.datetimes + • pandas.core.indexes.period + • pandas.core.indexes.range + • pandas.core.ops.array_ops + • pandas.core.reshape.merge + • pandas.core.tools.datetimes + • pandas.core.tools.timedeltas + • pandas.core.tools.times + • pandas.core.window.ewm + • pandas.core.window.rolling + • pandas.io.excel._base + • pandas.io.excel._calamine + • pandas.io.excel._odswriter + • pandas.io.excel._xlrd + • pandas.io.parsers.base_parser + • pandas.io.pytables + • pandas.io.sas.sas7bdat + • pandas.io.sas.sas_xport + • pandas.io.sql + • pandas.io.stata + • pandas.plotting._matplotlib.converter + • pandas.plotting._matplotlib.timeseries + • pandas.tests.apply.test_frame_apply + • pandas.tests.arithmetic.test_datetime64 + • pandas.tests.arithmetic.test_numeric + • pandas.tests.arithmetic.test_object + • pandas.tests.arithmetic.test_timedelta64 + • pandas.tests.arrays.categorical.test_constructors + • pandas.tests.arrays.test_array + • pandas.tests.arrays.test_datetimes + • pandas.tests.arrays.test_timedeltas + • pandas.tests.base.test_constructors + • pandas.tests.base.test_value_counts + • pandas.tests.dtypes.cast.test_infer_dtype + • pandas.tests.dtypes.cast.test_maybe_box_native + • pandas.tests.dtypes.cast.test_promote + • pandas.tests.dtypes.test_inference + • pandas.tests.dtypes.test_missing + • pandas.tests.extension.date.array + • pandas.tests.extension.test_arrow + • pandas.tests.frame.constructors.test_from_records + • pandas.tests.frame.indexing.test_indexing + • pandas.tests.frame.indexing.test_setitem + • pandas.tests.frame.indexing.test_where + • pandas.tests.frame.methods.test_align + • pandas.tests.frame.methods.test_asfreq + • pandas.tests.frame.methods.test_at_time + • pandas.tests.frame.methods.test_between_time + • pandas.tests.frame.methods.test_combine_first + • pandas.tests.frame.methods.test_convert_dtypes + • pandas.tests.frame.methods.test_drop_duplicates + • pandas.tests.frame.methods.test_dropna + • pandas.tests.frame.methods.test_dtypes + • pandas.tests.frame.methods.test_infer_objects + • pandas.tests.frame.methods.test_join + • pandas.tests.frame.methods.test_map + • pandas.tests.frame.methods.test_rank + • pandas.tests.frame.methods.test_reindex + • pandas.tests.frame.methods.test_replace + • pandas.tests.frame.methods.test_reset_index + • pandas.tests.frame.methods.test_set_index + • pandas.tests.frame.methods.test_to_dict + • pandas.tests.frame.methods.test_to_timestamp + • pandas.tests.frame.methods.test_tz_localize + • pandas.tests.frame.test_alter_axes + • pandas.tests.frame.test_arithmetic + • pandas.tests.frame.test_block_internals + • pandas.tests.frame.test_constructors + • pandas.tests.frame.test_iteration + • pandas.tests.frame.test_reductions + • pandas.tests.frame.test_repr + • pandas.tests.frame.test_stack_unstack + • pandas.tests.groupby.aggregate.test_aggregate + • pandas.tests.groupby.aggregate.test_other + • pandas.tests.groupby.methods.test_rank + • pandas.tests.groupby.test_apply + • pandas.tests.groupby.test_categorical + • pandas.tests.groupby.test_groupby + • pandas.tests.groupby.test_groupby_subclass + • pandas.tests.groupby.test_grouping + • pandas.tests.groupby.test_raises + • pandas.tests.groupby.test_reductions + • pandas.tests.groupby.test_timegrouper + • pandas.tests.indexes.base_class.test_setops + • pandas.tests.indexes.categorical.test_astype + • pandas.tests.indexes.datetimelike_.test_equals + • pandas.tests.indexes.datetimes.methods.test_asof + • pandas.tests.indexes.datetimes.methods.test_astype + • pandas.tests.indexes.datetimes.methods.test_insert + • pandas.tests.indexes.datetimes.methods.test_shift + • pandas.tests.indexes.datetimes.methods.test_to_pydatetime + • pandas.tests.indexes.datetimes.methods.test_tz_convert + • pandas.tests.indexes.datetimes.methods.test_tz_localize + • pandas.tests.indexes.datetimes.methods.test_unique + • pandas.tests.indexes.datetimes.test_constructors + • pandas.tests.indexes.datetimes.test_date_range + • pandas.tests.indexes.datetimes.test_datetime + • pandas.tests.indexes.datetimes.test_formats + • pandas.tests.indexes.datetimes.test_indexing + • pandas.tests.indexes.datetimes.test_join + • pandas.tests.indexes.datetimes.test_ops + • pandas.tests.indexes.datetimes.test_partial_slicing + • pandas.tests.indexes.datetimes.test_reindex + • pandas.tests.indexes.datetimes.test_scalar_compat + • pandas.tests.indexes.datetimes.test_setops + • pandas.tests.indexes.datetimes.test_timezones + • pandas.tests.indexes.interval.test_interval_range + • pandas.tests.indexes.multi.test_constructors + • pandas.tests.indexes.multi.test_indexing + • pandas.tests.indexes.multi.test_reshape + • pandas.tests.indexes.numeric.test_setops + • pandas.tests.indexes.period.methods.test_to_timestamp + • pandas.tests.indexes.period.test_formats + • pandas.tests.indexes.period.test_indexing + • pandas.tests.indexes.ranges.test_constructors + • pandas.tests.indexes.ranges.test_setops + • pandas.tests.indexes.test_base + • pandas.tests.indexes.test_index_new + • pandas.tests.indexes.test_old_base + • pandas.tests.indexes.test_setops + • pandas.tests.indexes.timedeltas.methods.test_astype + • pandas.tests.indexes.timedeltas.methods.test_insert + • pandas.tests.indexes.timedeltas.test_constructors + • pandas.tests.indexes.timedeltas.test_indexing + • pandas.tests.indexing.multiindex.test_datetime + • pandas.tests.indexing.multiindex.test_slice + • pandas.tests.indexing.test_at + • pandas.tests.indexing.test_coercion + • pandas.tests.indexing.test_iloc + • pandas.tests.indexing.test_indexing + • pandas.tests.indexing.test_loc + • pandas.tests.indexing.test_scalar + • pandas.tests.interchange.test_impl + • pandas.tests.internals.test_internals + • pandas.tests.io.excel.test_odswriter + • pandas.tests.io.excel.test_readers + • pandas.tests.io.excel.test_writers + • pandas.tests.io.formats.test_format + • pandas.tests.io.formats.test_to_html + • pandas.tests.io.formats.test_to_latex + • pandas.tests.io.formats.test_to_string + • pandas.tests.io.generate_legacy_storage_files + • pandas.tests.io.json.test_json_table_schema_ext_dtype + • pandas.tests.io.json.test_pandas + • pandas.tests.io.json.test_ujson + • pandas.tests.io.parser.common.test_common_basic + • pandas.tests.io.parser.common.test_index + • pandas.tests.io.parser.test_parse_dates + • pandas.tests.io.parser.test_read_fwf + • pandas.tests.io.parser.test_skiprows + • pandas.tests.io.pytables.test_append + • pandas.tests.io.pytables.test_errors + • pandas.tests.io.pytables.test_round_trip + • pandas.tests.io.pytables.test_store + • pandas.tests.io.pytables.test_time_series + • pandas.tests.io.pytables.test_timezones + • pandas.tests.io.sas.test_sas7bdat + • pandas.tests.io.test_orc + • pandas.tests.io.test_parquet + • pandas.tests.io.test_pickle + • pandas.tests.io.test_spss + • pandas.tests.io.test_sql + • pandas.tests.io.test_stata + • pandas.tests.libs.test_libalgos + • pandas.tests.plotting.frame.test_frame + • pandas.tests.plotting.test_converter + • pandas.tests.plotting.test_datetimelike + • pandas.tests.plotting.test_series + • pandas.tests.reductions.test_reductions + • pandas.tests.resample.conftest + • pandas.tests.resample.test_base + • pandas.tests.resample.test_datetime_index + • pandas.tests.resample.test_period_index + • pandas.tests.resample.test_resample_api + • pandas.tests.resample.test_time_grouper + • pandas.tests.resample.test_timedelta + • pandas.tests.reshape.concat.test_append + • pandas.tests.reshape.concat.test_categorical + • pandas.tests.reshape.concat.test_concat + • pandas.tests.reshape.concat.test_datetimes + • pandas.tests.reshape.merge.test_merge + • pandas.tests.reshape.merge.test_merge_asof + • pandas.tests.reshape.test_pivot + • pandas.tests.scalar.interval.test_arithmetic + • pandas.tests.scalar.period.test_arithmetic + • pandas.tests.scalar.period.test_period + • pandas.tests.scalar.test_na_scalar + • pandas.tests.scalar.test_nat + • pandas.tests.scalar.timedelta.test_arithmetic + • pandas.tests.scalar.timedelta.test_constructors + • pandas.tests.scalar.timedelta.test_timedelta + • pandas.tests.scalar.timestamp.methods.test_replace + • pandas.tests.scalar.timestamp.methods.test_to_pydatetime + • pandas.tests.scalar.timestamp.methods.test_tz_localize + • pandas.tests.scalar.timestamp.test_arithmetic + • pandas.tests.scalar.timestamp.test_comparisons + • pandas.tests.scalar.timestamp.test_constructors + • pandas.tests.scalar.timestamp.test_formats + • pandas.tests.scalar.timestamp.test_timestamp + • pandas.tests.scalar.timestamp.test_timezones + • pandas.tests.series.accessors.test_dt_accessor + • pandas.tests.series.indexing.test_datetime + • pandas.tests.series.indexing.test_getitem + • pandas.tests.series.indexing.test_indexing + • pandas.tests.series.indexing.test_set_value + • pandas.tests.series.indexing.test_setitem + • pandas.tests.series.methods.test_align + • pandas.tests.series.methods.test_astype + • pandas.tests.series.methods.test_clip + • pandas.tests.series.methods.test_combine_first + • pandas.tests.series.methods.test_fillna + • pandas.tests.series.methods.test_reindex_like + • pandas.tests.series.methods.test_rename + • pandas.tests.series.methods.test_reset_index + • pandas.tests.series.methods.test_set_name + • pandas.tests.series.methods.test_to_csv + • pandas.tests.series.methods.test_truncate + • pandas.tests.series.methods.test_tz_localize + • pandas.tests.series.test_arithmetic + • pandas.tests.series.test_constructors + • pandas.tests.series.test_formats + • pandas.tests.series.test_logical_ops + • pandas.tests.series.test_missing + • pandas.tests.strings.test_case_justify + • pandas.tests.strings.test_extract + • pandas.tests.strings.test_find_replace + • pandas.tests.strings.test_split_partition + • pandas.tests.strings.test_strings + • pandas.tests.test_algos + • pandas.tests.test_multilevel + • pandas.tests.test_sorting + • pandas.tests.test_take + • pandas.tests.tools.test_to_datetime + • pandas.tests.tools.test_to_time + • pandas.tests.tools.test_to_timedelta + • pandas.tests.tseries.frequencies.test_inference + • pandas.tests.tseries.holiday.test_calendar + • pandas.tests.tseries.holiday.test_federal + • pandas.tests.tseries.holiday.test_holiday + • pandas.tests.tseries.holiday.test_observance + • pandas.tests.tseries.offsets.test_business_day + • pandas.tests.tseries.offsets.test_business_hour + • pandas.tests.tseries.offsets.test_business_month + • pandas.tests.tseries.offsets.test_business_quarter + • pandas.tests.tseries.offsets.test_business_year + • pandas.tests.tseries.offsets.test_common + • pandas.tests.tseries.offsets.test_custom_business_day + • pandas.tests.tseries.offsets.test_custom_business_hour + • pandas.tests.tseries.offsets.test_custom_business_month + • pandas.tests.tseries.offsets.test_dst + • pandas.tests.tseries.offsets.test_easter + • pandas.tests.tseries.offsets.test_fiscal + • pandas.tests.tseries.offsets.test_month + • pandas.tests.tseries.offsets.test_offsets + • pandas.tests.tseries.offsets.test_quarter + • pandas.tests.tseries.offsets.test_ticks + • pandas.tests.tseries.offsets.test_week + • pandas.tests.tseries.offsets.test_year + • pandas.tests.tslibs.test_array_to_datetime + • pandas.tests.tslibs.test_ccalendar + • pandas.tests.tslibs.test_conversion + • pandas.tests.tslibs.test_liboffsets + • pandas.tests.tslibs.test_parse_iso8601 + • pandas.tests.tslibs.test_parsing + • pandas.tests.tslibs.test_strptime + • pandas.tests.tslibs.test_timezones + • pandas.tests.window.conftest + • pandas.tests.window.test_rolling + • pandas.tests.window.test_rolling_functions + • pandas.tseries.holiday + • plistlib + • pyasn1.type.useful + • pytz + • pytz.tzfile + • pytz.tzinfo + • setuptools._vendor.tomli._re + • setuptools.warnings + • soupsieve.css_match + • sqlite3.dbapi2 + • tomllib._re + • xlrd.xldate + • xlsxwriter.core + • xlsxwriter.utility + • xlsxwriter.workbook + • xlsxwriter.worksheet + • xmlrpc.client + • xmlrpc.server + • yaml.constructor + • yaml.representer + • zoneinfo._zoneinfo + +
+ +
+ + + +
+ + dateutil._common +SourceModule
+imports: + dateutil + +
+
+imported by: + dateutil.relativedelta + • dateutil.rrule + +
+ +
+ +
+ + dateutil._version +SourceModule
+imports: + dateutil + +
+
+imported by: + dateutil + +
+ +
+ +
+ + dateutil.easter +SourceModule
+imports: + datetime + • dateutil + +
+
+imported by: + dateutil + • dateutil.rrule + +
+ +
+ + + +
+ + dateutil.parser._parser +SourceModule
+imports: + __future__ + • calendar + • datetime + • dateutil + • dateutil.parser + • dateutil.relativedelta + • dateutil.tz + • decimal + • io + • re + • six + • string + • time + • warnings + +
+
+imported by: + dateutil.parser + • dateutil.tz.tz + +
+ +
+ +
+ + dateutil.parser.isoparser +SourceModule
+imports: + calendar + • datetime + • dateutil + • dateutil.parser + • dateutil.tz + • functools + • re + • six + +
+
+imported by: + dateutil.parser + +
+ +
+ +
+ + dateutil.relativedelta +SourceModule
+imports: + calendar + • datetime + • dateutil + • dateutil._common + • math + • operator + • six + • warnings + +
+ + +
+ +
+ + dateutil.rrule +SourceModule
+imports: + calendar + • datetime + • dateutil + • dateutil._common + • dateutil.easter + • dateutil.parser + • dateutil.tz + • fractions + • functools + • heapq + • itertools + • math + • re + • six + • six.moves + • six.moves._thread + • six.moves.range + • sys + • warnings + +
+
+imported by: + dateutil + • dateutil.tz.tz + +
+ +
+ +
+ + dateutil.tz +Package
+imports: + dateutil + • dateutil.tz.tz + • dateutil.tz.tzfile + +
+ + +
+ +
+ + dateutil.tz._common +SourceModule
+imports: + datetime + • dateutil.tz + • functools + • six + +
+
+imported by: + dateutil.tz.tz + • dateutil.tz.win + +
+ +
+ +
+ + dateutil.tz._factories +SourceModule
+imports: + collections + • datetime + • dateutil.tz + • six.moves + • six.moves._thread + • weakref + +
+
+imported by: + dateutil.tz.tz + +
+ +
+ + + +
+ + dateutil.tz.tzfile +MissingModule
+imported by: + dateutil.tz + • dateutil.zoneinfo + +
+ +
+ +
+ + dateutil.tz.win +SourceModule
+imports: + ctypes + • ctypes.wintypes + • datetime + • dateutil.tz + • dateutil.tz._common + • six + • six.moves + • six.moves.winreg + • struct + +
+
+imported by: + dateutil.tz.tz + +
+ +
+ +
+ + dateutil.zoneinfo +Package
+imports: + dateutil + • dateutil.tz + • dateutil.tz.tzfile + • io + • json + • pkgutil + • tarfile + • warnings + +
+
+imported by: + dateutil.tz.tz + +
+ +
+ +
+ + decimal +SourceModule
+imports: + _decimal + • _pydecimal + +
+
+imported by: + dateutil.parser._parser + • fractions + • ldap3.protocol.formatters.validators + • openpyxl.compat.numbers + • pandas._libs.lib + • pandas._testing + • pandas.conftest + • pandas.core.algorithms + • pandas.core.computation.pytables + • pandas.core.dtypes.dtypes + • pandas.core.dtypes.missing + • pandas.io.formats.format + • pandas.tests.arithmetic.test_numeric + • pandas.tests.arithmetic.test_object + • pandas.tests.arrays.test_array + • pandas.tests.dtypes.cast.test_downcast + • pandas.tests.dtypes.cast.test_promote + • pandas.tests.dtypes.test_inference + • pandas.tests.dtypes.test_missing + • pandas.tests.extension.decimal.array + • pandas.tests.extension.decimal.test_decimal + • pandas.tests.extension.test_arrow + • pandas.tests.frame.constructors.test_from_records + • pandas.tests.frame.indexing.test_indexing + • pandas.tests.frame.test_reductions + • pandas.tests.frame.test_unary + • pandas.tests.groupby.test_groupby + • pandas.tests.indexes.object.test_indexing + • pandas.tests.indexes.test_index_new + • pandas.tests.io.json.test_json_table_schema_ext_dtype + • pandas.tests.io.json.test_pandas + • pandas.tests.io.json.test_ujson + • pandas.tests.io.parser.test_c_parser_only + • pandas.tests.io.test_orc + • pandas.tests.io.test_parquet + • pandas.tests.reductions.test_reductions + • pandas.tests.reshape.concat.test_concat + • pandas.tests.series.indexing.test_setitem + • pandas.tests.series.methods.test_map + • pandas.tests.series.test_arithmetic + • pandas.tests.tools.test_to_datetime + • pandas.tests.tools.test_to_numeric + • setuptools.config._validate_pyproject.fastjsonschema_validations + • statistics + • xlsxwriter.workbook + • xlsxwriter.worksheet + • xmlrpc.client + +
+ +
+ + + +
+ + defusedxml.ElementTree +SourceModule
+imports: + __future__ + • defusedxml + • defusedxml.common + • importlib + • sys + • warnings + • xml.etree.ElementTree + +
+
+imported by: + PIL.Image + • defusedxml + • defusedxml.cElementTree + • openpyxl.xml.functions + +
+ +
+ +
+ + defusedxml.cElementTree +SourceModule +
+imported by: + defusedxml + +
+ +
+ +
+ + defusedxml.common +SourceModule
+imports: + defusedxml + • sys + • xml.parsers.expat + +
+ + +
+ +
+ + defusedxml.expatbuilder +SourceModule
+imports: + __future__ + • defusedxml + • defusedxml.common + • xml.dom.expatbuilder + +
+
+imported by: + defusedxml + • defusedxml.minidom + +
+ +
+ +
+ + defusedxml.expatreader +SourceModule
+imports: + __future__ + • defusedxml + • defusedxml.common + • xml.sax.expatreader + +
+
+imported by: + defusedxml + • defusedxml.sax + +
+ +
+ +
+ + defusedxml.minidom +SourceModule +
+imported by: + defusedxml + +
+ +
+ +
+ + defusedxml.pulldom +SourceModule
+imports: + __future__ + • defusedxml + • defusedxml.sax + • xml.dom.pulldom + +
+
+imported by: + defusedxml + • defusedxml.minidom + +
+ +
+ +
+ + defusedxml.sax +SourceModule
+imports: + __future__ + • defusedxml + • defusedxml.expatreader + • io + • xml.sax + +
+
+imported by: + defusedxml + • defusedxml.pulldom + +
+ +
+ +
+ + defusedxml.xmlrpc +SourceModule
+imports: + __future__ + • defusedxml + • defusedxml.common + • gzip + • io + • xmlrpc + • xmlrpc.client + • xmlrpc.server + • xmlrpclib + +
+
+imported by: + defusedxml + +
+ +
+ +
+ + difflib +SourceModule
+imports: + collections + • difflib + • heapq + • re + • types + +
+
+imported by: + difflib + • doctest + • lxml.html.diff + • numpy.testing._private.utils + • unittest.case + +
+ +
+ +
+ + dis +SourceModule
+imports: + argparse + • collections + • io + • opcode + • sys + • types + +
+
+imported by: + inspect + • pdb + • setuptools.depends + +
+ +
+ + + +
+ + doctest +SourceModule
+imports: + __future__ + • argparse + • builtins + • collections + • difflib + • inspect + • io + • linecache + • os + • pdb + • re + • sys + • traceback + • unittest + +
+
+imported by: + lxml.doctestcompare + • numpy.testing._private.utils + • pickletools + • pytz + +
+ +
+ +
+ + dummy_thread +MissingModule
+imported by: + cffi.lock + +
+ +
+ + + +
+ + email._encoded_words +SourceModule
+imports: + base64 + • binascii + • email + • email.errors + • functools + • re + • string + +
+
+imported by: + email._header_value_parser + • email.message + +
+ +
+ +
+ + email._header_value_parser +SourceModule
+imports: + email + • email._encoded_words + • email.errors + • email.utils + • operator + • re + • string + • sys + • urllib + +
+
+imported by: + email + • email.headerregistry + +
+ +
+ +
+ + email._parseaddr +SourceModule
+imports: + calendar + • email + • time + +
+
+imported by: + email.utils + +
+ +
+ +
+ + email._policybase +SourceModule
+imports: + abc + • email + • email.charset + • email.header + • email.utils + +
+
+imported by: + email.feedparser + • email.message + • email.parser + • email.policy + +
+ +
+ +
+ + email.base64mime +SourceModule
+imports: + base64 + • binascii + • email + +
+
+imported by: + email.charset + • email.header + +
+ +
+ +
+ + email.charset +SourceModule
+imports: + email + • email.base64mime + • email.encoders + • email.errors + • email.quoprimime + • functools + +
+
+imported by: + email + • email._policybase + • email.contentmanager + • email.header + • email.message + • email.utils + +
+ +
+ +
+ + email.contentmanager +SourceModule
+imports: + binascii + • email + • email.charset + • email.errors + • email.message + • email.quoprimime + +
+
+imported by: + email.policy + +
+ +
+ +
+ + email.encoders +SourceModule
+imports: + base64 + • email + • quopri + +
+
+imported by: + email.charset + +
+ +
+ +
+ + email.errors +SourceModule
+imports: + email + +
+ + +
+ +
+ + email.feedparser +SourceModule
+imports: + collections + • email + • email._policybase + • email.errors + • email.message + • io + • re + +
+
+imported by: + email.parser + • packaging.metadata + +
+ +
+ +
+ + email.generator +SourceModule
+imports: + copy + • email + • email.errors + • email.utils + • io + • random + • re + • sys + • time + +
+ + +
+ +
+ + email.header +SourceModule
+imports: + binascii + • email + • email.base64mime + • email.charset + • email.errors + • email.quoprimime + • re + +
+
+imported by: + email + • email._policybase + • packaging.metadata + +
+ +
+ +
+ + email.headerregistry +SourceModule
+imports: + email + • email._header_value_parser + • email.errors + • email.utils + • types + +
+ + +
+ +
+ + email.iterators +SourceModule
+imports: + email + • io + • sys + +
+
+imported by: + email.message + +
+ +
+ + + +
+ + email.parser +SourceModule
+imports: + email + • email._policybase + • email.feedparser + • io + +
+ + +
+ +
+ + email.policy +SourceModule
+imports: + email + • email._policybase + • email.contentmanager + • email.headerregistry + • email.message + • email.utils + • re + • sys + +
+ + +
+ +
+ + email.quoprimime +SourceModule
+imports: + email + • re + • string + +
+
+imported by: + email.charset + • email.contentmanager + • email.header + +
+ +
+ +
+ + email.utils +SourceModule
+imports: + datetime + • email + • email._parseaddr + • email.charset + • os + • random + • re + • socket + • time + • urllib.parse + • warnings + +
+ + +
+ +
+ + encodings +Package
+imports: + _winapi + • codecs + • encodings + • encodings.aliases + • encodings.ascii + • encodings.base64_codec + • encodings.big5 + • encodings.big5hkscs + • encodings.bz2_codec + • encodings.charmap + • encodings.cp037 + • encodings.cp1006 + • encodings.cp1026 + • encodings.cp1125 + • encodings.cp1140 + • encodings.cp1250 + • encodings.cp1251 + • encodings.cp1252 + • encodings.cp1253 + • encodings.cp1254 + • encodings.cp1255 + • encodings.cp1256 + • encodings.cp1257 + • encodings.cp1258 + • encodings.cp273 + • encodings.cp424 + • encodings.cp437 + • encodings.cp500 + • encodings.cp720 + • encodings.cp737 + • encodings.cp775 + • encodings.cp850 + • encodings.cp852 + • encodings.cp855 + • encodings.cp856 + • encodings.cp857 + • encodings.cp858 + • encodings.cp860 + • encodings.cp861 + • encodings.cp862 + • encodings.cp863 + • encodings.cp864 + • encodings.cp865 + • encodings.cp866 + • encodings.cp869 + • encodings.cp874 + • encodings.cp875 + • encodings.cp932 + • encodings.cp949 + • encodings.cp950 + • encodings.euc_jis_2004 + • encodings.euc_jisx0213 + • encodings.euc_jp + • encodings.euc_kr + • encodings.gb18030 + • encodings.gb2312 + • encodings.gbk + • encodings.hex_codec + • encodings.hp_roman8 + • encodings.hz + • encodings.idna + • encodings.iso2022_jp + • encodings.iso2022_jp_1 + • encodings.iso2022_jp_2 + • encodings.iso2022_jp_2004 + • encodings.iso2022_jp_3 + • encodings.iso2022_jp_ext + • encodings.iso2022_kr + • encodings.iso8859_1 + • encodings.iso8859_10 + • encodings.iso8859_11 + • encodings.iso8859_13 + • encodings.iso8859_14 + • encodings.iso8859_15 + • encodings.iso8859_16 + • encodings.iso8859_2 + • encodings.iso8859_3 + • encodings.iso8859_4 + • encodings.iso8859_5 + • encodings.iso8859_6 + • encodings.iso8859_7 + • encodings.iso8859_8 + • encodings.iso8859_9 + • encodings.johab + • encodings.koi8_r + • encodings.koi8_t + • encodings.koi8_u + • encodings.kz1048 + • encodings.latin_1 + • encodings.mac_arabic + • encodings.mac_croatian + • encodings.mac_cyrillic + • encodings.mac_farsi + • encodings.mac_greek + • encodings.mac_iceland + • encodings.mac_latin2 + • encodings.mac_roman + • encodings.mac_romanian + • encodings.mac_turkish + • encodings.mbcs + • encodings.oem + • encodings.palmos + • encodings.ptcp154 + • encodings.punycode + • encodings.quopri_codec + • encodings.raw_unicode_escape + • encodings.rot_13 + • encodings.shift_jis + • encodings.shift_jis_2004 + • encodings.shift_jisx0213 + • encodings.tis_620 + • encodings.undefined + • encodings.unicode_escape + • encodings.utf_16 + • encodings.utf_16_be + • encodings.utf_16_le + • encodings.utf_32 + • encodings.utf_32_be + • encodings.utf_32_le + • encodings.utf_7 + • encodings.utf_8 + • encodings.utf_8_sig + • encodings.uu_codec + • encodings.zlib_codec + • sys + +
+
+imported by: + codecs + • encodings + • encodings.aliases + • encodings.ascii + • encodings.base64_codec + • encodings.big5 + • encodings.big5hkscs + • encodings.bz2_codec + • encodings.charmap + • encodings.cp037 + • encodings.cp1006 + • encodings.cp1026 + • encodings.cp1125 + • encodings.cp1140 + • encodings.cp1250 + • encodings.cp1251 + • encodings.cp1252 + • encodings.cp1253 + • encodings.cp1254 + • encodings.cp1255 + • encodings.cp1256 + • encodings.cp1257 + • encodings.cp1258 + • encodings.cp273 + • encodings.cp424 + • encodings.cp437 + • encodings.cp500 + • encodings.cp720 + • encodings.cp737 + • encodings.cp775 + • encodings.cp850 + • encodings.cp852 + • encodings.cp855 + • encodings.cp856 + • encodings.cp857 + • encodings.cp858 + • encodings.cp860 + • encodings.cp861 + • encodings.cp862 + • encodings.cp863 + • encodings.cp864 + • encodings.cp865 + • encodings.cp866 + • encodings.cp869 + • encodings.cp874 + • encodings.cp875 + • encodings.cp932 + • encodings.cp949 + • encodings.cp950 + • encodings.euc_jis_2004 + • encodings.euc_jisx0213 + • encodings.euc_jp + • encodings.euc_kr + • encodings.gb18030 + • encodings.gb2312 + • encodings.gbk + • encodings.hex_codec + • encodings.hp_roman8 + • encodings.hz + • encodings.idna + • encodings.iso2022_jp + • encodings.iso2022_jp_1 + • encodings.iso2022_jp_2 + • encodings.iso2022_jp_2004 + • encodings.iso2022_jp_3 + • encodings.iso2022_jp_ext + • encodings.iso2022_kr + • encodings.iso8859_1 + • encodings.iso8859_10 + • encodings.iso8859_11 + • encodings.iso8859_13 + • encodings.iso8859_14 + • encodings.iso8859_15 + • encodings.iso8859_16 + • encodings.iso8859_2 + • encodings.iso8859_3 + • encodings.iso8859_4 + • encodings.iso8859_5 + • encodings.iso8859_6 + • encodings.iso8859_7 + • encodings.iso8859_8 + • encodings.iso8859_9 + • encodings.johab + • encodings.koi8_r + • encodings.koi8_t + • encodings.koi8_u + • encodings.kz1048 + • encodings.latin_1 + • encodings.mac_arabic + • encodings.mac_croatian + • encodings.mac_cyrillic + • encodings.mac_farsi + • encodings.mac_greek + • encodings.mac_iceland + • encodings.mac_latin2 + • encodings.mac_roman + • encodings.mac_romanian + • encodings.mac_turkish + • encodings.mbcs + • encodings.oem + • encodings.palmos + • encodings.ptcp154 + • encodings.punycode + • encodings.quopri_codec + • encodings.raw_unicode_escape + • encodings.rot_13 + • encodings.shift_jis + • encodings.shift_jis_2004 + • encodings.shift_jisx0213 + • encodings.tis_620 + • encodings.undefined + • encodings.unicode_escape + • encodings.utf_16 + • encodings.utf_16_be + • encodings.utf_16_le + • encodings.utf_32 + • encodings.utf_32_be + • encodings.utf_32_le + • encodings.utf_7 + • encodings.utf_8 + • encodings.utf_8_sig + • encodings.uu_codec + • encodings.zlib_codec + • entry.py + • locale + +
+ +
+ +
+ + encodings.aliases +SourceModule
+imports: + encodings + +
+ + +
+ +
+ + encodings.ascii +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.base64_codec +SourceModule
+imports: + base64 + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.big5 +SourceModule
+imports: + _codecs_tw + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.big5hkscs +SourceModule
+imports: + _codecs_hk + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.bz2_codec +SourceModule
+imports: + bz2 + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.charmap +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp037 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp1006 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp1026 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp1125 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp1140 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp1250 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp1251 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp1252 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp1253 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp1254 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp1255 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp1256 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp1257 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp1258 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp273 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp424 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp437 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp500 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp720 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp737 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp775 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp850 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp852 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp855 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp856 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp857 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp858 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp860 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp861 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp862 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp863 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp864 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp865 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp866 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp869 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp874 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp875 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp932 +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp949 +SourceModule
+imports: + _codecs_kr + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.cp950 +SourceModule
+imports: + _codecs_tw + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.euc_jis_2004 +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.euc_jisx0213 +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.euc_jp +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.euc_kr +SourceModule
+imports: + _codecs_kr + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.gb18030 +SourceModule
+imports: + _codecs_cn + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.gb2312 +SourceModule
+imports: + _codecs_cn + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.gbk +SourceModule
+imports: + _codecs_cn + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.hex_codec +SourceModule
+imports: + binascii + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.hp_roman8 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.hz +SourceModule
+imports: + _codecs_cn + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.idna +SourceModule
+imports: + codecs + • encodings + • re + • stringprep + • unicodedata + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.iso2022_jp +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.iso2022_jp_1 +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.iso2022_jp_2 +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.iso2022_jp_2004 +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.iso2022_jp_3 +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.iso2022_jp_ext +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.iso2022_kr +SourceModule
+imports: + _codecs_iso2022 + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.iso8859_1 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.iso8859_10 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.iso8859_11 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.iso8859_13 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.iso8859_14 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.iso8859_15 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.iso8859_16 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.iso8859_2 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.iso8859_3 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.iso8859_4 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.iso8859_5 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.iso8859_6 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.iso8859_7 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.iso8859_8 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.iso8859_9 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.johab +SourceModule
+imports: + _codecs_kr + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.koi8_r +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.koi8_t +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.koi8_u +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.kz1048 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.latin_1 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.mac_arabic +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.mac_croatian +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.mac_cyrillic +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.mac_farsi +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.mac_greek +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.mac_iceland +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.mac_latin2 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.mac_roman +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.mac_romanian +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.mac_turkish +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.mbcs +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.oem +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.palmos +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.ptcp154 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.punycode +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.quopri_codec +SourceModule
+imports: + codecs + • encodings + • io + • quopri + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.raw_unicode_escape +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.rot_13 +SourceModule
+imports: + codecs + • encodings + • sys + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.shift_jis +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.shift_jis_2004 +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.shift_jisx0213 +SourceModule
+imports: + _codecs_jp + • _multibytecodec + • codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.tis_620 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.undefined +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.unicode_escape +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.utf_16 +SourceModule
+imports: + codecs + • encodings + • sys + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.utf_16_be +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.utf_16_le +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.utf_32 +SourceModule
+imports: + codecs + • encodings + • sys + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.utf_32_be +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.utf_32_le +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.utf_7 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.utf_8 +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.utf_8_sig +SourceModule
+imports: + codecs + • encodings + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.uu_codec +SourceModule
+imports: + binascii + • codecs + • encodings + • io + +
+
+imported by: + encodings + • entry.py + +
+ +
+ +
+ + encodings.zlib_codec +SourceModule
+imports: + codecs + • encodings + • zlib + +
+
+imported by: + encodings + • entry.py + +
+ +
+ + + + + +
+ + et_xmlfile +Package
+imports: + __future__ + • et_xmlfile.xmlfile + +
+
+imported by: + et_xmlfile.xmlfile + • openpyxl.xml.functions + +
+ +
+ +
+ + et_xmlfile.xmlfile +SourceModule
+imports: + __future__ + • contextlib + • et_xmlfile + • xml.etree.ElementTree + +
+
+imported by: + et_xmlfile + • openpyxl.xml.functions + +
+ +
+ +
+ + fastparquet +MissingModule
+imported by: + pandas.tests.io.test_parquet + +
+ +
+ +
+ + fcntl /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/fcntl.cpython-312-darwin.so
+imported by: + filelock._unix + • subprocess + • xmlrpc.server + +
+ +
+ +
+ + fileinput +SourceModule
+imports: + bz2 + • getopt + • gzip + • io + • os + • sys + • types + • warnings + +
+
+imported by: + numpy.f2py.crackfortran + +
+ +
+ + + +
+ + filelock._api +SourceModule
+imports: + __future__ + • abc + • contextlib + • dataclasses + • filelock + • filelock._error + • inspect + • logging + • os + • sys + • threading + • time + • types + • typing + • typing_extensions + • warnings + • weakref + +
+
+imported by: + filelock + • filelock._soft + • filelock._unix + • filelock._windows + • filelock.asyncio + +
+ +
+ +
+ + filelock._error +SourceModule
+imports: + __future__ + • filelock + • typing + +
+
+imported by: + filelock + • filelock._api + • filelock.asyncio + +
+ +
+ +
+ + filelock._soft +SourceModule
+imports: + __future__ + • contextlib + • errno + • filelock + • filelock._api + • filelock._util + • os + • pathlib + • sys + +
+
+imported by: + filelock + • filelock.asyncio + +
+ +
+ +
+ + filelock._unix +SourceModule
+imports: + __future__ + • contextlib + • errno + • fcntl + • filelock + • filelock._api + • filelock._util + • os + • pathlib + • sys + • typing + +
+
+imported by: + filelock + • filelock.asyncio + +
+ +
+ +
+ + filelock._util +SourceModule
+imports: + __future__ + • errno + • filelock + • os + • pathlib + • stat + • sys + +
+
+imported by: + filelock._soft + • filelock._unix + • filelock._windows + +
+ +
+ +
+ + filelock._windows +SourceModule
+imports: + __future__ + • contextlib + • ctypes + • ctypes.wintypes + • errno + • filelock + • filelock._api + • filelock._util + • msvcrt + • os + • pathlib + • sys + • typing + +
+
+imported by: + filelock + • filelock.asyncio + +
+ +
+ +
+ + filelock.asyncio +SourceModule
+imports: + __future__ + • asyncio + • collections.abc + • concurrent + • concurrent.futures + • contextlib + • dataclasses + • filelock + • filelock._api + • filelock._error + • filelock._soft + • filelock._unix + • filelock._windows + • inspect + • logging + • os + • sys + • threading + • time + • types + • typing + • typing_extensions + +
+
+imported by: + filelock + +
+ +
+ +
+ + filelock.version +SourceModule
+imports: + filelock + • typing + +
+
+imported by: + filelock + +
+ +
+ +
+ + fnmatch +SourceModule
+imports: + functools + • os + • posixpath + • re + +
+
+imported by: + bdb + • glob + • pathlib + • setuptools._distutils.filelist + • setuptools.discovery + • setuptools.glob + • shutil + • tracemalloc + • unittest.loader + • urllib.request + +
+ +
+ +
+ + fractions +SourceModule
+imports: + decimal + • functools + • math + • numbers + • operator + • re + • sys + +
+ + +
+ + + +
+ + ftplib +SourceModule
+imports: + netrc + • re + • socket + • ssl + • sys + +
+
+imported by: + urllib.request + +
+ +
+ +
+ + functools +SourceModule
+imports: + _functools + • _thread + • abc + • collections + • reprlib + • types + • typing + • weakref + +
+
+imported by: + PIL.GifImagePlugin + • PIL.ImageCms + • PIL.ImageColor + • PIL.ImageFilter + • PIL.ImageMode + • PIL.ImageOps + • PIL.PsdImagePlugin + • asyncio.format_helpers + • asyncio.runners + • asyncio.selector_events + • asyncio.tasks + • asyncio.threads + • asyncio.windows_events + • bs4._deprecation + • charset_normalizer.cd + • charset_normalizer.md + • charset_normalizer.utils + • concurrent.futures.process + • configparser + • contextlib + • copyreg + • dataclasses + • dateutil.parser + • dateutil.parser.isoparser + • dateutil.rrule + • dateutil.tz._common + • email._encoded_words + • email.charset + • entry.py + • enum + • fnmatch + • fractions + • importlib.metadata + • importlib.metadata._adapters + • importlib.metadata._functools + • importlib.resources._common + • importlib.resources._legacy + • inspect + • ipaddress + • ldap3.core.connection + • linecache + • locale + • lxml.builder + • lxml.html + • multiprocessing.reduction + • multiprocessing.shared_memory + • numpy._core._ufunc_config + • numpy._core.arrayprint + • numpy._core.defchararray + • numpy._core.fromnumeric + • numpy._core.function_base + • numpy._core.multiarray + • numpy._core.numeric + • numpy._core.overrides + • numpy._core.shape_base + • numpy._utils + • numpy.f2py.auxfuncs + • numpy.fft._pocketfft + • numpy.lib._arraysetops_impl + • numpy.lib._arrayterator_impl + • numpy.lib._function_base_impl + • numpy.lib._histograms_impl + • numpy.lib._index_tricks_impl + • numpy.lib._nanfunctions_impl + • numpy.lib._npyio_impl + • numpy.lib._polynomial_impl + • numpy.lib._shape_base_impl + • numpy.lib._twodim_base_impl + • numpy.lib._type_check_impl + • numpy.lib._ufunclike_impl + • numpy.lib._utils_impl + • numpy.linalg._linalg + • numpy.ma.core + • numpy.polynomial.polyutils + • numpy.testing._private.utils + • openpyxl.compat + • openpyxl.compat.product + • openpyxl.utils.cell + • openpyxl.xml.functions + • operator + • packaging._manylinux + • packaging._musllinux + • packaging.utils + • pandas._version + • pandas.core._numba.executor + • pandas.core.apply + • pandas.core.array_algos.take + • pandas.core.arrays._mixins + • pandas.core.arrays.arrow.array + • pandas.core.arrays.categorical + • pandas.core.arrays.datetimelike + • pandas.core.arrays.string_arrow + • pandas.core.common + • pandas.core.computation.align + • pandas.core.computation.common + • pandas.core.computation.expr + • pandas.core.computation.ops + • pandas.core.computation.pytables + • pandas.core.dtypes.cast + • pandas.core.dtypes.missing + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.generic + • pandas.core.groupby.groupby + • pandas.core.groupby.numba_ + • pandas.core.groupby.ops + • pandas.core.indexes.base + • pandas.core.indexes.multi + • pandas.core.internals.blocks + • pandas.core.missing + • pandas.core.nanops + • pandas.core.ops.array_ops + • pandas.core.ops.common + • pandas.core.reshape.merge + • pandas.core.strings.accessor + • pandas.core.strings.object_array + • pandas.core.tools.datetimes + • pandas.core.window.ewm + • pandas.core.window.numba_ + • pandas.core.window.rolling + • pandas.io.common + • pandas.io.excel._base + • pandas.io.formats.excel + • pandas.io.formats.format + • pandas.io.formats.style + • pandas.io.formats.style_render + • pandas.io.sql + • pandas.plotting._matplotlib.converter + • pandas.plotting._matplotlib.timeseries + • pandas.tests.computation.test_eval + • pandas.tests.frame.test_arithmetic + • pandas.tests.frame.test_constructors + • pandas.tests.frame.test_ufunc + • pandas.tests.groupby.aggregate.test_aggregate + • pandas.tests.groupby.aggregate.test_other + • pandas.tests.indexes.datetimes.test_constructors + • pandas.tests.indexes.interval.test_constructors + • pandas.tests.indexes.test_base + • pandas.tests.io.excel.test_odf + • pandas.tests.io.excel.test_readers + • pandas.tests.io.excel.test_writers + • pandas.tests.io.test_common + • pandas.tests.io.test_html + • pandas.tests.io.test_http_headers + • pandas.tests.io.test_pickle + • pandas.tests.resample.test_datetime_index + • pandas.tests.test_common + • pandas.tests.test_nanops + • pandas.tests.window.test_cython_aggregations + • pandas.tests.window.test_rolling_quantile + • pandas.tests.window.test_rolling_skew_kurt + • pandas.util._decorators + • pathlib + • pdb + • pickle + • pkg_resources + • pkgutil + • platform + • platformdirs.android + • platformdirs.windows + • re + • setuptools + • setuptools._distutils._modified + • setuptools._distutils.compat.py39 + • setuptools._distutils.dir_util + • setuptools._distutils.filelist + • setuptools._distutils.sysconfig + • setuptools._distutils.util + • setuptools._entry_points + • setuptools._reqs + • setuptools._static + • setuptools._vendor.importlib_metadata + • setuptools._vendor.importlib_metadata._functools + • setuptools._vendor.jaraco.context + • setuptools._vendor.jaraco.functools + • setuptools._vendor.jaraco.text + • setuptools._vendor.more_itertools.more + • setuptools._vendor.more_itertools.recipes + • setuptools._vendor.packaging._manylinux + • setuptools._vendor.packaging._musllinux + • setuptools._vendor.packaging.utils + • setuptools._vendor.tomli._re + • setuptools.command.egg_info + • setuptools.config + • setuptools.config._apply_pyprojecttoml + • setuptools.config._validate_pyproject + • setuptools.config.pyprojecttoml + • setuptools.config.setupcfg + • setuptools.extension + • setuptools.installer + • setuptools.wheel + • six + • soupsieve.css_parser + • soupsieve.util + • statistics + • tempfile + • threading + • tokenize + • tomllib._re + • tracemalloc + • types + • typing + • typing_extensions + • unittest.case + • unittest.loader + • unittest.mock + • unittest.result + • unittest.signals + • urllib.parse + • wheel.metadata + • wheel.vendored.packaging._manylinux + • wheel.vendored.packaging._musllinux + • xlsxwriter.worksheet + • xmlrpc.server + • zoneinfo._zoneinfo + +
+ +
+ +
+ + future +MissingModule
+imported by: + ldap3 + +
+ +
+ + + +
+ + genericpath +SourceModule
+imports: + os + • stat + +
+
+imported by: + entry.py + • ntpath + • posixpath + +
+ +
+ +
+ + getopt +SourceModule
+imports: + gettext + • os + • sys + +
+
+imported by: + base64 + • fileinput + • mimetypes + • pdb + • pydoc + • quopri + • setuptools._distutils.fancy_getopt + • webbrowser + +
+ +
+ +
+ + getpass +SourceModule
+imports: + contextlib + • io + • msvcrt + • os + • pwd + • sys + • termios + • warnings + +
+
+imported by: + urllib.request + +
+ +
+ +
+ + gettext +SourceModule
+imports: + builtins + • copy + • errno + • locale + • operator + • os + • re + • struct + • sys + • warnings + +
+
+imported by: + argparse + • getopt + • optparse + +
+ +
+ +
+ + glob +SourceModule
+imports: + contextlib + • fnmatch + • itertools + • os + • re + • stat + • sys + +
+ + +
+ +
+ + grp /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/grp.cpython-312-darwin.so + +
+ +
+ + gssapi +MissingModule
+imported by: + ldap3.protocol.sasl.kerberos + +
+ +
+ + + + + +
+ + heapq +SourceModule
+imports: + _heapq + +
+ + +
+ +
+ + hmac +SourceModule
+imports: + _hashlib + • _operator + • hashlib + • warnings + +
+ + +
+ +
+ + html +Package
+imports: + html.entities + • re + +
+
+imported by: + cgi + • html.entities + • html.parser + • http.server + • lxml.doctestcompare + • lxml.html.diff + • xmlrpc.server + +
+ +
+ +
+ + html.entities +SourceModule
+imports: + html + +
+
+imported by: + bs4.dammit + • html + • lxml.html.soupparser + +
+ +
+ +
+ + html.parser +SourceModule
+imports: + _markupbase + • html + • re + +
+
+imported by: + bs4.builder._htmlparser + +
+ +
+ +
+ + html5lib +MissingModule
+imported by: + bs4.builder._html5lib + • lxml.html.html5parser + +
+ +
+ +
+ + htmlentitydefs +MissingModule
+imported by: + lxml.html.soupparser + +
+ +
+ +
+ + http +Package
+imports: + enum + +
+
+imported by: + http.client + • http.cookiejar + • http.server + +
+ +
+ +
+ + http.client +SourceModule
+imports: + collections.abc + • email.message + • email.parser + • errno + • http + • io + • re + • socket + • ssl + • sys + • urllib.parse + +
+
+imported by: + http.cookiejar + • http.server + • urllib.request + • xmlrpc.client + +
+ +
+ +
+ + http.cookiejar +SourceModule
+imports: + calendar + • copy + • datetime + • http + • http.client + • io + • logging + • os + • re + • threading + • time + • traceback + • urllib.parse + • urllib.request + • warnings + +
+
+imported by: + urllib.request + +
+ +
+ +
+ + http.server +SourceModule
+imports: + argparse + • base64 + • binascii + • contextlib + • copy + • datetime + • email.utils + • html + • http + • http.client + • io + • itertools + • mimetypes + • os + • posixpath + • pwd + • select + • shutil + • socket + • socketserver + • subprocess + • sys + • time + • urllib.parse + +
+
+imported by: + pydoc + • xmlrpc.server + +
+ +
+ + + +
+ + imp +MissingModule
+imported by: + Crypto.Util._raw_api + • cffi._imp_emulation + • cffi.verifier + +
+ +
+ + + +
+ + importlib._abc +SourceModule
+imports: + abc + • importlib + • importlib._bootstrap + +
+
+imported by: + importlib.abc + • importlib.util + +
+ +
+ +
+ + importlib._bootstrap +SourceModule
+imports: + _frozen_importlib_external + • importlib + +
+
+imported by: + cffi._imp_emulation + • importlib + • importlib._abc + • importlib.machinery + • importlib.util + • pydoc + +
+ +
+ +
+ + importlib._bootstrap_external +SourceModule
+imports: + _imp + • _io + • _warnings + • importlib + • importlib.metadata + • importlib.readers + • marshal + • nt + • posix + • sys + • tokenize + • winreg + +
+
+imported by: + importlib + • importlib.abc + • importlib.machinery + • importlib.util + • py_compile + • pydoc + +
+ +
+ + + + + + + +
+ + importlib.metadata._adapters +SourceModule
+imports: + email.message + • functools + • importlib.metadata + • importlib.metadata._text + • re + • textwrap + • warnings + +
+
+imported by: + importlib.metadata + +
+ +
+ +
+ + importlib.metadata._collections +SourceModule
+imports: + collections + • importlib.metadata + +
+
+imported by: + importlib.metadata + +
+ +
+ +
+ + importlib.metadata._functools +SourceModule
+imports: + functools + • importlib.metadata + • types + +
+
+imported by: + importlib.metadata + • importlib.metadata._text + +
+ +
+ +
+ + importlib.metadata._itertools +SourceModule
+imports: + importlib.metadata + • itertools + +
+
+imported by: + importlib.metadata + +
+ +
+ +
+ + importlib.metadata._meta +SourceModule
+imports: + importlib.metadata + • typing + +
+
+imported by: + importlib.metadata + +
+ +
+ +
+ + importlib.metadata._text +SourceModule +
+imported by: + importlib.metadata._adapters + +
+ +
+ +
+ + importlib.readers +SourceModule
+imports: + importlib + • importlib.resources.readers + +
+
+imported by: + importlib._bootstrap_external + • zipimport + +
+ +
+ + + +
+ + importlib.resources._adapters +SourceModule
+imports: + contextlib + • importlib.resources + • importlib.resources.abc + • io + +
+
+imported by: + importlib.resources._common + +
+ +
+ +
+ + importlib.resources._common +SourceModule
+imports: + contextlib + • functools + • importlib + • importlib.resources + • importlib.resources._adapters + • importlib.resources.abc + • inspect + • itertools + • os + • pathlib + • tempfile + • types + • typing + • warnings + +
+ + +
+ +
+ + importlib.resources._itertools +SourceModule
+imports: + importlib.resources + +
+
+imported by: + importlib.resources.readers + +
+ +
+ +
+ + importlib.resources._legacy +SourceModule
+imports: + functools + • importlib.resources + • importlib.resources._common + • os + • pathlib + • types + • typing + • warnings + +
+
+imported by: + importlib.resources + +
+ +
+ +
+ + importlib.resources.abc +SourceModule
+imports: + abc + • importlib.resources + • io + • itertools + • os + • pathlib + • typing + +
+ + +
+ +
+ + importlib.resources.readers +SourceModule +
+imported by: + importlib.readers + +
+ +
+ +
+ + importlib.util +SourceModule
+imports: + _imp + • importlib + • importlib._abc + • importlib._bootstrap + • importlib._bootstrap_external + • sys + • threading + • types + +
+
+imported by: + _distutils_hack + • numpy.testing._private.extbuild + • pkgutil + • py_compile + • pydoc + • runpy + • setuptools._distutils.util + • setuptools._imp + • six + • zipfile + +
+ +
+ +
+ + importlib_metadata +AliasNode +
+imported by: + setuptools._importlib + +
+ +
+ +
+ + importlib_resources +MissingModule
+imported by: + setuptools._vendor.jaraco.text + +
+ +
+ +
+ + inspect +SourceModule
+imports: + abc + • argparse + • ast + • builtins + • collections + • collections.abc + • dis + • enum + • functools + • importlib + • importlib.machinery + • itertools + • keyword + • linecache + • operator + • os + • re + • sys + • token + • tokenize + • types + • weakref + +
+
+imported by: + ast + • asyncio.coroutines + • asyncio.format_helpers + • asyncio.tasks + • bdb + • dataclasses + • doctest + • filelock._api + • filelock.asyncio + • importlib.metadata + • importlib.resources._common + • numexpr.cpuinfo + • numpy.lib._utils_impl + • numpy.ma.core + • numpy.testing._private.utils + • openpyxl.compat + • openpyxl.worksheet._write_only + • openpyxl.worksheet.worksheet + • pandas._testing._warnings + • pandas.core.apply + • pandas.core.common + • pandas.core.computation.scope + • pandas.core.dtypes.astype + • pandas.core.frame + • pandas.core.groupby.groupby + • pandas.core.groupby.numba_ + • pandas.core.internals.blocks + • pandas.core.window.rolling + • pandas.tests.extension.base.methods + • pandas.tests.frame.methods.test_reindex + • pandas.tests.frame.methods.test_rename + • pandas.tests.frame.test_api + • pandas.tests.groupby.test_api + • pandas.tests.io.parser.common.test_common_basic + • pandas.tests.reductions.test_stat_reductions + • pandas.tests.series.test_api + • pandas.tests.util.test_deprecate_nonkeyword_arguments + • pandas.util._decorators + • pandas.util._exceptions + • pdb + • pkg_resources + • pkgutil + • pycparser.ply.lex + • pycparser.ply.yacc + • pydoc + • pyi_rth_inspect.py + • rlcompleter + • setuptools._vendor.importlib_metadata + • setuptools._vendor.jaraco.functools + • setuptools.config._apply_pyprojecttoml + • setuptools.config._validate_pyproject.extra_validations + • setuptools.discovery + • setuptools.logging + • setuptools.monkey + • setuptools.warnings + • typing + • typing_extensions + • unittest.async_case + • unittest.mock + • xmlrpc.server + +
+ +
+ +
+ + io +SourceModule
+imports: + _io + • abc + +
+
+imported by: + Crypto.Util.py3compat + • PIL.BlpImagePlugin + • PIL.DdsImagePlugin + • PIL.EpsImagePlugin + • PIL.FtexImagePlugin + • PIL.GifImagePlugin + • PIL.IcnsImagePlugin + • PIL.IcoImagePlugin + • PIL.Image + • PIL.ImageFile + • PIL.ImageQt + • PIL.ImageTk + • PIL.IptcImagePlugin + • PIL.Jpeg2KImagePlugin + • PIL.JpegImagePlugin + • PIL.MspImagePlugin + • PIL.PcxImagePlugin + • PIL.PdfImagePlugin + • PIL.PngImagePlugin + • PIL.PsdImagePlugin + • PIL.TiffImagePlugin + • PIL.WebPImagePlugin + • _compression + • asyncio.proactor_events + • asyncio.unix_events + • bs4.builder._lxml + • bz2 + • cffi.ffiplatform + • cffi.recompiler + • cffi.verifier + • cgi + • configparser + • csv + • dateutil.parser._parser + • dateutil.zoneinfo + • defusedxml.sax + • defusedxml.xmlrpc + • dis + • doctest + • email.feedparser + • email.generator + • email.iterators + • email.message + • email.parser + • encodings.quopri_codec + • encodings.uu_codec + • entry.py + • fileinput + • getpass + • gzip + • http.client + • http.cookiejar + • http.server + • importlib.resources._adapters + • importlib.resources.abc + • ldap3.strategy.asyncStream + • ldap3.strategy.ldifProducer + • logging + • lzma + • multiprocessing.connection + • multiprocessing.popen_forkserver + • multiprocessing.popen_spawn_posix + • multiprocessing.reduction + • numpy.lib.format + • numpy.testing._private.utils + • olefile.olefile + • openpyxl.drawing.image + • openpyxl.reader.drawings + • openpyxl.reader.excel + • openpyxl.worksheet._writer + • os + • pandas._testing._io + • pandas.compat.pickle_compat + • pandas.core.arrays.arrow.extension_types + • pandas.core.computation.parsing + • pandas.core.computation.scope + • pandas.core.frame + • pandas.io.clipboards + • pandas.io.common + • pandas.io.excel._base + • pandas.io.formats.format + • pandas.io.formats.xml + • pandas.io.json._json + • pandas.io.orc + • pandas.io.parquet + • pandas.io.parsers.python_parser + • pandas.io.stata + • pandas.io.xml + • pandas.tests.dtypes.test_inference + • pandas.tests.extension.base.io + • pandas.tests.extension.base.printing + • pandas.tests.extension.test_arrow + • pandas.tests.frame.methods.test_info + • pandas.tests.frame.methods.test_to_csv + • pandas.tests.frame.test_repr + • pandas.tests.io.excel.test_readers + • pandas.tests.io.excel.test_writers + • pandas.tests.io.excel.test_xlrd + • pandas.tests.io.formats.style.test_bar + • pandas.tests.io.formats.test_format + • pandas.tests.io.formats.test_to_csv + • pandas.tests.io.formats.test_to_html + • pandas.tests.io.formats.test_to_markdown + • pandas.tests.io.formats.test_to_string + • pandas.tests.io.json.test_compression + • pandas.tests.io.json.test_deprecated_kwargs + • pandas.tests.io.json.test_json_table_schema + • pandas.tests.io.json.test_json_table_schema_ext_dtype + • pandas.tests.io.json.test_pandas + • pandas.tests.io.json.test_readlines + • pandas.tests.io.parser.common.test_chunksize + • pandas.tests.io.parser.common.test_common_basic + • pandas.tests.io.parser.common.test_data_list + • pandas.tests.io.parser.common.test_decimal + • pandas.tests.io.parser.common.test_file_buffer_url + • pandas.tests.io.parser.common.test_float + • pandas.tests.io.parser.common.test_index + • pandas.tests.io.parser.common.test_inf + • pandas.tests.io.parser.common.test_ints + • pandas.tests.io.parser.common.test_iterator + • pandas.tests.io.parser.common.test_read_errors + • pandas.tests.io.parser.common.test_verbose + • pandas.tests.io.parser.dtypes.test_categorical + • pandas.tests.io.parser.dtypes.test_dtypes_basic + • pandas.tests.io.parser.dtypes.test_empty + • pandas.tests.io.parser.test_c_parser_only + • pandas.tests.io.parser.test_comment + • pandas.tests.io.parser.test_converters + • pandas.tests.io.parser.test_dialect + • pandas.tests.io.parser.test_encoding + • pandas.tests.io.parser.test_header + • pandas.tests.io.parser.test_index_col + • pandas.tests.io.parser.test_mangle_dupes + • pandas.tests.io.parser.test_multi_thread + • pandas.tests.io.parser.test_na_values + • pandas.tests.io.parser.test_network + • pandas.tests.io.parser.test_parse_dates + • pandas.tests.io.parser.test_python_parser_only + • pandas.tests.io.parser.test_quoting + • pandas.tests.io.parser.test_read_fwf + • pandas.tests.io.parser.test_skiprows + • pandas.tests.io.parser.test_textreader + • pandas.tests.io.parser.test_unsupported + • pandas.tests.io.parser.usecols.test_parse_dates + • pandas.tests.io.parser.usecols.test_strings + • pandas.tests.io.parser.usecols.test_usecols_basic + • pandas.tests.io.pytables.test_errors + • pandas.tests.io.sas.test_sas + • pandas.tests.io.sas.test_sas7bdat + • pandas.tests.io.test_common + • pandas.tests.io.test_compression + • pandas.tests.io.test_fsspec + • pandas.tests.io.test_gcs + • pandas.tests.io.test_html + • pandas.tests.io.test_http_headers + • pandas.tests.io.test_orc + • pandas.tests.io.test_parquet + • pandas.tests.io.test_pickle + • pandas.tests.io.test_s3 + • pandas.tests.io.test_sql + • pandas.tests.io.test_stata + • pandas.tests.io.xml.test_to_xml + • pandas.tests.io.xml.test_xml + • pandas.tests.io.xml.test_xml_dtypes + • pandas.tests.reshape.concat.test_invalid + • pandas.tests.series.methods.test_info + • pandas.tests.series.methods.test_to_csv + • pathlib + • pdb + • pickle + • pickletools + • pkg_resources + • plistlib + • pprint + • pyasn1.codec.ber.decoder + • pyasn1.codec.streaming + • pycparser + • pydoc + • quopri + • runpy + • setuptools._vendor.backports.tarfile + • setuptools._vendor.zipp + • setuptools._vendor.zipp.compat.py310 + • setuptools.command._requirestxt + • setuptools.config._validate_pyproject.error_reporting + • setuptools.dist + • shlex + • site + • six + • socket + • socketserver + • subprocess + • tarfile + • tempfile + • tokenize + • unittest.mock + • unittest.result + • urllib.error + • urllib.request + • uuid + • wheel.macosx_libfile + • wheel.wheelfile + • xlrd.timemachine + • xlsxwriter.packager + • xlsxwriter.theme + • xlsxwriter.worksheet + • xlsxwriter.xmlwriter + • xml.dom.minidom + • xml.dom.pulldom + • xml.etree.ElementTree + • xml.sax + • xml.sax.saxutils + • xmlrpc.client + • yaml + • zipfile + • zipfile._path + +
+ +
+ +
+ + ipaddress +SourceModule
+imports: + functools + • re + +
+ + +
+ +
+ + itertools (builtin module)
+imported by: + PIL.GifImagePlugin + • PIL.ImageFile + • PIL.MpoImagePlugin + • PIL.PngImagePlugin + • PIL.TiffImagePlugin + • _pydecimal + • asyncio.base_events + • asyncio.selector_events + • asyncio.tasks + • asyncio.unix_events + • asyncio.windows_utils + • calendar + • collections + • concurrent.futures.process + • concurrent.futures.thread + • configparser + • ctypes.macholib.dyld + • dataclasses + • dateutil.rrule + • glob + • http.server + • importlib.metadata + • importlib.metadata._itertools + • importlib.resources._common + • importlib.resources.abc + • importlib.resources.readers + • inspect + • multiprocessing.connection + • multiprocessing.pool + • multiprocessing.process + • multiprocessing.util + • numexpr.tests.test_numexpr + • numpy._core.einsumfunc + • numpy._core.numeric + • numpy._core.shape_base + • numpy.f2py._backends._meson + • numpy.f2py.f2py2e + • numpy.lib._npyio_impl + • numpy.lib.recfunctions + • numpy.ma.extras + • openpyxl.chart.reference + • openpyxl.utils.cell + • openpyxl.utils.dataframe + • openpyxl.worksheet.cell_range + • openpyxl.worksheet.datavalidation + • openpyxl.worksheet.worksheet + • packaging.specifiers + • packaging.version + • pandas._config.config + • pandas.core.computation.scope + • pandas.core.frame + • pandas.core.indexes.base + • pandas.core.internals.array_manager + • pandas.core.internals.managers + • pandas.core.nanops + • pandas.core.reshape.encoding + • pandas.core.reshape.reshape + • pandas.core.tools.datetimes + • pandas.core.util.hashing + • pandas.io.formats.excel + • pandas.io.json._json + • pandas.io.parsers.base_parser + • pandas.io.pytables + • pandas.plotting._matplotlib.style + • pandas.tests.apply.test_invalid_arg + • pandas.tests.apply.test_str + • pandas.tests.arithmetic.test_datetime64 + • pandas.tests.computation.test_eval + • pandas.tests.dtypes.test_inference + • pandas.tests.extension.base.reshaping + • pandas.tests.extension.json.array + • pandas.tests.frame.methods.test_reset_index + • pandas.tests.frame.test_block_internals + • pandas.tests.frame.test_stack_unstack + • pandas.tests.groupby.test_counting + • pandas.tests.indexes.interval.test_interval + • pandas.tests.indexes.interval.test_interval_tree + • pandas.tests.indexes.multi.test_constructors + • pandas.tests.indexes.multi.test_duplicates + • pandas.tests.indexing.test_coercion + • pandas.tests.indexing.test_scalar + • pandas.tests.internals.test_internals + • pandas.tests.io.formats.test_to_html + • pandas.tests.libs.test_libalgos + • pandas.tests.plotting.frame.test_frame + • pandas.tests.plotting.test_boxplot_method + • pandas.tests.plotting.test_series + • pandas.tests.reshape.concat.test_append + • pandas.tests.reshape.test_pivot + • pandas.tests.scalar.timedelta.test_constructors + • pandas.tests.series.methods.test_convert_dtypes + • pandas.tests.series.methods.test_nlargest + • pandas.tests.series.methods.test_rank + • pandas.tests.test_sorting + • pandas.tests.window.moments.conftest + • pandas.util.version + • pickle + • platform + • plistlib + • random + • reprlib + • setuptools._distutils._msvccompiler + • setuptools._distutils.command.sdist + • setuptools._distutils.compat.py39 + • setuptools._distutils.dir_util + • setuptools._entry_points + • setuptools._vendor.importlib_metadata + • setuptools._vendor.importlib_metadata._itertools + • setuptools._vendor.jaraco.functools + • setuptools._vendor.jaraco.text + • setuptools._vendor.more_itertools.more + • setuptools._vendor.more_itertools.recipes + • setuptools._vendor.packaging.specifiers + • setuptools._vendor.packaging.version + • setuptools._vendor.zipp + • setuptools.command._requirestxt + • setuptools.command.sdist + • setuptools.config._apply_pyprojecttoml + • setuptools.config._validate_pyproject.formats + • setuptools.config.expand + • setuptools.discovery + • setuptools.dist + • setuptools.msvc + • setuptools.wheel + • six + • statistics + • threading + • tokenize + • traceback + • weakref + • wheel.cli.tags + • wheel.metadata + • wheel.vendored.packaging.specifiers + • wheel.vendored.packaging.version + • zipfile._path + +
+ +
+ + + +
+ + java +MissingModule
+imported by: + platform + +
+ +
+ +
+ + jnius +MissingModule
+imported by: + platformdirs.android + +
+ +
+ + + +
+ + json.decoder +SourceModule
+imports: + _json + • json + • json.scanner + • re + +
+
+imported by: + _json + • json + +
+ +
+ +
+ + json.encoder +SourceModule
+imports: + _json + • json + • re + +
+
+imported by: + json + +
+ +
+ +
+ + json.scanner +SourceModule
+imports: + _json + • json + • re + +
+
+imported by: + json + • json.decoder + +
+ +
+ + + +
+ + ldap3 +Package +
+imported by: + ad_user_creator.ldap_client + • entry.py + • ldap3 + • ldap3.abstract + • ldap3.abstract.attrDef + • ldap3.abstract.attribute + • ldap3.abstract.cursor + • ldap3.abstract.entry + • ldap3.abstract.objectDef + • ldap3.core + • ldap3.core.connection + • ldap3.core.pooling + • ldap3.core.server + • ldap3.core.tls + • ldap3.extend + • ldap3.extend.microsoft.addMembersToGroups + • ldap3.extend.microsoft.dirSync + • ldap3.extend.microsoft.modifyPassword + • ldap3.extend.microsoft.removeMembersFromGroups + • ldap3.extend.microsoft.unlockAccount + • ldap3.extend.novell.addMembersToGroups + • ldap3.extend.novell.checkGroupsMemberships + • ldap3.extend.novell.removeMembersFromGroups + • ldap3.extend.standard.PagedSearch + • ldap3.extend.standard.PersistentSearch + • ldap3.extend.standard.modifyPassword + • ldap3.operation + • ldap3.operation.add + • ldap3.operation.bind + • ldap3.operation.modify + • ldap3.operation.search + • ldap3.protocol + • ldap3.protocol.convert + • ldap3.protocol.formatters.standard + • ldap3.protocol.formatters.validators + • ldap3.protocol.oid + • ldap3.protocol.rfc2849 + • ldap3.protocol.rfc4512 + • ldap3.protocol.rfc4527 + • ldap3.protocol.sasl.digestMd5 + • ldap3.protocol.sasl.sasl + • ldap3.strategy + • ldap3.strategy.asynchronous + • ldap3.strategy.base + • ldap3.strategy.mockAsync + • ldap3.strategy.mockBase + • ldap3.strategy.mockSync + • ldap3.strategy.restartable + • ldap3.strategy.reusable + • ldap3.strategy.sync + • ldap3.utils + • ldap3.utils.ciDict + • ldap3.utils.config + • ldap3.utils.conv + • ldap3.utils.dn + • ldap3.utils.hashed + • ldap3.utils.repr + • ldap3.utils.uri + • ldap3.version + +
+ +
+ + + +
+ + ldap3.abstract.attrDef +SourceModule
+imports: + ldap3 + • ldap3.abstract + • ldap3.core.exceptions + • ldap3.utils.log + • os + +
+ + +
+ +
+ + ldap3.abstract.attribute +SourceModule
+imports: + ldap3 + • ldap3.abstract + • ldap3.core.exceptions + • ldap3.utils.log + • ldap3.utils.repr + • os + +
+
+imported by: + entry.py + • ldap3 + • ldap3.abstract.cursor + • ldap3.abstract.entry + +
+ +
+ + + + + + + + + + + +
+ + ldap3.core.exceptions +SourceModule
+imports: + ldap3.core + • ldap3.core.results + • os + • socket + +
+
+imported by: + ad_user_creator.ldap_client + • entry.py + • ldap3.abstract.attrDef + • ldap3.abstract.attribute + • ldap3.abstract.cursor + • ldap3.abstract.entry + • ldap3.abstract.objectDef + • ldap3.core.connection + • ldap3.core.pooling + • ldap3.core.server + • ldap3.core.tls + • ldap3.core.usage + • ldap3.extend.microsoft.addMembersToGroups + • ldap3.extend.microsoft.dirSync + • ldap3.extend.microsoft.modifyPassword + • ldap3.extend.microsoft.persistentSearch + • ldap3.extend.microsoft.removeMembersFromGroups + • ldap3.extend.microsoft.unlockAccount + • ldap3.extend.novell.addMembersToGroups + • ldap3.extend.novell.checkGroupsMemberships + • ldap3.extend.novell.partition_entry_count + • ldap3.extend.novell.removeMembersFromGroups + • ldap3.extend.novell.replicaInfo + • ldap3.extend.operation + • ldap3.extend.standard.PagedSearch + • ldap3.extend.standard.PersistentSearch + • ldap3.extend.standard.modifyPassword + • ldap3.operation.bind + • ldap3.operation.search + • ldap3.protocol.convert + • ldap3.protocol.rfc2849 + • ldap3.protocol.rfc4512 + • ldap3.protocol.sasl.kerberos + • ldap3.protocol.sasl.sasl + • ldap3.strategy.asyncStream + • ldap3.strategy.asynchronous + • ldap3.strategy.base + • ldap3.strategy.ldifProducer + • ldap3.strategy.mockAsync + • ldap3.strategy.mockBase + • ldap3.strategy.mockSync + • ldap3.strategy.restartable + • ldap3.strategy.reusable + • ldap3.strategy.sync + • ldap3.utils.config + • ldap3.utils.conv + • ldap3.utils.dn + • ldap3.utils.hashed + +
+ +
+ +
+ + ldap3.core.pooling +SourceModule
+imports: + datetime + • ldap3 + • ldap3.core + • ldap3.core.exceptions + • ldap3.core.server + • ldap3.utils.log + • os + • random + • time + +
+
+imported by: + entry.py + • ldap3 + • ldap3.core.connection + +
+ +
+ +
+ + ldap3.core.rdns +SourceModule
+imports: + ldap3.core + • socket + +
+
+imported by: + entry.py + • ldap3 + • ldap3.protocol.sasl.kerberos + +
+ +
+ + + + + +
+ + ldap3.core.timezone +SourceModule
+imports: + datetime + • ldap3.core + +
+ + +
+ +
+ + ldap3.core.tls +SourceModule
+imports: + ldap3 + • ldap3.core + • ldap3.core.exceptions + • ldap3.utils.log + • ldap3.utils.tls_backport + • os + • ssl + +
+
+imported by: + entry.py + • ldap3 + • ldap3.core.connection + • ldap3.core.server + • ldap3.strategy.base + +
+ +
+ +
+ + ldap3.core.usage +SourceModule
+imports: + datetime + • ldap3.core + • ldap3.core.exceptions + • ldap3.utils.log + • os + +
+
+imported by: + entry.py + • ldap3.core.connection + • ldap3.strategy.reusable + +
+ +
+ + + + + +
+ + ldap3.extend.microsoft.addMembersToGroups +SourceModule +
+imported by: + entry.py + • ldap3.extend + +
+ +
+ +
+ + ldap3.extend.microsoft.dirSync +SourceModule +
+imported by: + entry.py + • ldap3.extend + +
+ +
+ +
+ + ldap3.extend.microsoft.modifyPassword +SourceModule +
+imported by: + entry.py + • ldap3.extend + +
+ +
+ +
+ + ldap3.extend.microsoft.persistentSearch +SourceModule +
+imported by: + entry.py + • ldap3.extend + +
+ +
+ +
+ + ldap3.extend.microsoft.removeMembersFromGroups +SourceModule +
+imported by: + entry.py + • ldap3.extend + +
+ +
+ +
+ + ldap3.extend.microsoft.unlockAccount +SourceModule +
+imported by: + entry.py + • ldap3.extend + +
+ +
+ + + + + + + +
+ + ldap3.extend.novell.endTransaction +SourceModule +
+imported by: + entry.py + • ldap3.extend + +
+ +
+ +
+ + ldap3.extend.novell.getBindDn +SourceModule +
+imported by: + entry.py + • ldap3.extend + +
+ +
+ + + + + + + + + +
+ + ldap3.extend.novell.removeMembersFromGroups +SourceModule +
+imported by: + entry.py + • ldap3.extend + +
+ +
+ + + + + + + + + +
+ + ldap3.extend.standard.PagedSearch +SourceModule +
+imported by: + entry.py + • ldap3.extend + +
+ +
+ +
+ + ldap3.extend.standard.PersistentSearch +SourceModule +
+imported by: + entry.py + • ldap3.extend + +
+ +
+ + + +
+ + ldap3.extend.standard.whoAmI +SourceModule +
+imported by: + entry.py + • ldap3.extend + +
+ +
+ + + +
+ + ldap3.operation.abandon +SourceModule
+imports: + ldap3.operation + • ldap3.protocol.rfc4511 + +
+
+imported by: + entry.py + • ldap3.core.connection + • ldap3.strategy.base + +
+ +
+ + + + + + + + + + + + + + + + + +
+ + ldap3.operation.unbind +SourceModule
+imports: + ldap3.operation + • ldap3.protocol.rfc4511 + +
+
+imported by: + entry.py + • ldap3.core.connection + +
+ +
+ + + + + + + + + + + + + + + + + + + +
+ + ldap3.protocol.oid +SourceModule
+imports: + ldap3 + • ldap3.protocol + +
+ + +
+ + + + + + + +
+ + ldap3.protocol.rfc3062 +SourceModule + + +
+ + + +
+ + ldap3.protocol.rfc4512 +SourceModule +
+imported by: + entry.py + • ldap3 + • ldap3.abstract.objectDef + • ldap3.core.server + +
+ +
+ +
+ + ldap3.protocol.rfc4527 +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + +
+ + ldap3.protocol.sasl.external +SourceModule +
+imported by: + entry.py + • ldap3.core.connection + +
+ +
+ + + +
+ + ldap3.protocol.sasl.plain +SourceModule +
+imported by: + entry.py + • ldap3.core.connection + +
+ +
+ + + + + +
+ + ldap3.protocol.schemas.ad2012R2 +SourceModule
+imports: + ldap3.protocol.schemas + +
+
+imported by: + entry.py + • ldap3.core.server + +
+ +
+ +
+ + ldap3.protocol.schemas.ds389 +SourceModule
+imports: + ldap3.protocol.schemas + +
+
+imported by: + entry.py + • ldap3.core.server + +
+ +
+ +
+ + ldap3.protocol.schemas.edir888 +SourceModule
+imports: + ldap3.protocol.schemas + +
+
+imported by: + entry.py + • ldap3.core.server + +
+ +
+ +
+ + ldap3.protocol.schemas.edir914 +SourceModule
+imports: + ldap3.protocol.schemas + +
+
+imported by: + entry.py + • ldap3.core.server + +
+ +
+ +
+ + ldap3.protocol.schemas.slapd24 +SourceModule
+imports: + ldap3.protocol.schemas + +
+
+imported by: + entry.py + • ldap3.core.server + +
+ +
+ + + +
+ + ldap3.strategy.asyncStream +SourceModule +
+imported by: + entry.py + • ldap3.core.connection + +
+ +
+ + + + + + + + + + + + + +
+ + ldap3.strategy.restartable +SourceModule
+imports: + ldap3 + • ldap3.core.exceptions + • ldap3.strategy + • ldap3.strategy.sync + • ldap3.utils.log + • socket + • time + +
+ + +
+ +
+ + ldap3.strategy.reusable +SourceModule +
+imported by: + entry.py + • ldap3.core.connection + +
+ +
+ +
+ + ldap3.strategy.safeRestartable +SourceModule +
+imported by: + entry.py + • ldap3.core.connection + +
+ +
+ +
+ + ldap3.strategy.safeSync +SourceModule
+imports: + ldap3.strategy + • ldap3.strategy.sync + +
+
+imported by: + entry.py + • ldap3.core.connection + +
+ +
+ + + + + + + + + +
+ + ldap3.utils.config +SourceModule
+imports: + ldap3 + • ldap3.core.exceptions + • ldap3.utils + • sys + +
+ + +
+ + + + + +
+ + ldap3.utils.hashed +SourceModule
+imports: + base64 + • hashlib + • ldap3 + • ldap3.core.exceptions + • ldap3.utils + • os + +
+ + +
+ + + +
+ + ldap3.utils.ntlm +SourceModule
+imports: + Crypto.Hash + • Crypto.Hash.MD4 + • binascii + • hashlib + • hmac + • ldap3.protocol.formatters.formatters + • ldap3.utils + • locale + • os + • platform + • socket + • struct + • time + +
+
+imported by: + entry.py + • ldap3.core.connection + +
+ +
+ +
+ + ldap3.utils.ordDict +SourceModule
+imports: + UserDict + • ldap3.utils + +
+
+imported by: + entry.py + • ldap3.abstract.entry + +
+ +
+ +
+ + ldap3.utils.port_validators +SourceModule
+imports: + ldap3.utils + +
+
+imported by: + entry.py + • ldap3.core.connection + • ldap3.core.server + +
+ +
+ +
+ + ldap3.utils.repr +SourceModule
+imports: + binascii + • ldap3 + • ldap3.utils + • sys + +
+
+imported by: + entry.py + • ldap3.abstract.attribute + • ldap3.abstract.entry + +
+ +
+ +
+ + ldap3.utils.tls_backport +SourceModule +
+imported by: + entry.py + • ldap3.core.tls + +
+ +
+ +
+ + ldap3.utils.uri +SourceModule
+imports: + ldap3 + • ldap3.utils + • urllib + • urllib.parse + • urllib.unquote + +
+
+imported by: + entry.py + • ldap3.strategy.base + +
+ +
+ +
+ + ldap3.version +SourceModule
+imports: + ldap3 + +
+
+imported by: + entry.py + • ldap3 + +
+ +
+ +
+ + linecache +SourceModule
+imports: + functools + • os + • sys + • tokenize + +
+
+imported by: + asyncio.base_tasks + • bdb + • doctest + • entry.py + • inspect + • pdb + • pkg_resources + • traceback + • tracemalloc + • warnings + +
+ +
+ + + + + + + +
+ + lxml.ElementInclude +SourceModule
+imports: + lxml + • lxml.etree + • urllib.parse + • urllib.request + • urllib2 + • urlparse + +
+
+imported by: + lxml + +
+ +
+ +
+ + lxml._elementpath /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/_elementpath.cpython-312-darwin.so
+imports: + lxml + • re + +
+
+imported by: + lxml + • lxml.etree + +
+ +
+ +
+ + lxml.builder /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/builder.cpython-312-darwin.so
+imports: + functools + • lxml + • lxml.etree + +
+
+imported by: + lxml + • lxml.html.builder + +
+ +
+ +
+ + lxml.cssselect +SourceModule
+imports: + cssselect + • lxml + • lxml.etree + +
+
+imported by: + lxml + • lxml.html + +
+ +
+ +
+ + lxml.doctestcompare +SourceModule
+imports: + cgi + • doctest + • html + • lxml + • lxml.etree + • re + • sys + +
+
+imported by: + lxml + • lxml.html.usedoctest + • lxml.usedoctest + +
+ +
+ +
+ + lxml.etree /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/etree.cpython-312-darwin.so
+imports: + contextlib + • gzip + • lxml + • lxml._elementpath + +
+ + +
+ + + +
+ + lxml.html.ElementSoup +SourceModule
+imports: + lxml.html + • lxml.html.soupparser + +
+
+imported by: + lxml + +
+ +
+ +
+ + lxml.html._diffcommand +SourceModule
+imports: + lxml.html + • lxml.html.diff + • optparse + • os + • re + • sys + +
+
+imported by: + lxml + • lxml.html + • lxml.html.diff + +
+ +
+ +
+ + lxml.html._html5builder +SourceModule
+imports: + 'html5lib.treebuilders' + • lxml + • lxml.etree + • lxml.html + +
+
+imported by: + lxml + +
+ +
+ +
+ + lxml.html._setmixin +SourceModule
+imports: + collections.abc + • lxml.html + +
+
+imported by: + lxml + • lxml.html + +
+ +
+ +
+ + lxml.html.builder +SourceModule
+imports: + lxml.builder + • lxml.html + +
+
+imported by: + lxml + +
+ +
+ +
+ + lxml.html.clean +SourceModule
+imports: + lxml.html + • lxml_html_clean + +
+
+imported by: + lxml + +
+ +
+ +
+ + lxml.html.defs +SourceModule
+imports: + lxml.html + +
+
+imported by: + lxml + • lxml.html + • lxml.html.formfill + +
+ +
+ +
+ + lxml.html.diff /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/html/diff.cpython-312-darwin.so
+imports: + cgi + • difflib + • html + • lxml + • lxml.etree + • lxml.html + • lxml.html._diffcommand + • re + +
+
+imported by: + lxml + • lxml.html._diffcommand + +
+ +
+ +
+ + lxml.html.formfill +SourceModule
+imports: + copy + • lxml.etree + • lxml.html + • lxml.html.defs + +
+
+imported by: + lxml + +
+ +
+ +
+ + lxml.html.html5parser +SourceModule
+imports: + 'html5lib.treebuilders' + • html5lib + • lxml + • lxml.etree + • lxml.html + • string + • sys + • urllib.parse + • urllib.request + • urllib2 + • urlparse + +
+
+imported by: + lxml + +
+ +
+ +
+ + lxml.html.soupparser +SourceModule
+imports: + BeautifulSoup + • bs4 + • html.entities + • htmlentitydefs + • lxml + • lxml.etree + • lxml.html + • re + +
+
+imported by: + lxml + • lxml.html.ElementSoup + +
+ +
+ +
+ + lxml.html.usedoctest +SourceModule
+imports: + lxml + • lxml.doctestcompare + • lxml.html + +
+
+imported by: + lxml + +
+ +
+ +
+ + lxml.includes +Package
+imports: + lxml + +
+ + +
+ +
+ + lxml.includes.extlibs +Package
+imports: + lxml.includes + +
+
+imported by: + lxml + +
+ +
+ +
+ + lxml.includes.libexslt +Package
+imports: + lxml.includes + +
+
+imported by: + lxml + +
+ +
+ +
+ + lxml.includes.libxml +Package
+imports: + lxml.includes + +
+
+imported by: + lxml + +
+ +
+ +
+ + lxml.includes.libxslt +Package
+imports: + lxml.includes + +
+
+imported by: + lxml + +
+ +
+ +
+ + lxml.isoschematron +Package
+imports: + lxml + • lxml.etree + • os.path + • sys + +
+
+imported by: + lxml + +
+ +
+ +
+ + lxml.objectify /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/objectify.cpython-312-darwin.so
+imports: + lxml + • lxml.etree + +
+
+imported by: + lxml + +
+ +
+ +
+ + lxml.pyclasslookup +SourceModule
+imports: + lxml + • lxml.etree + +
+
+imported by: + lxml + +
+ +
+ +
+ + lxml.sax /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/lxml/sax.cpython-312-darwin.so
+imports: + lxml + • lxml.etree + • xml.sax.handler + • xml.sax.xmlreader + +
+
+imported by: + lxml + +
+ +
+ +
+ + lxml.usedoctest +SourceModule
+imports: + lxml + • lxml.doctestcompare + +
+
+imported by: + lxml + +
+ +
+ +
+ + lxml_html_clean +MissingModule
+imported by: + lxml.html.clean + +
+ +
+ +
+ + lzma +SourceModule
+imports: + _compression + • _lzma + • builtins + • io + • os + +
+ + +
+ +
+ + markupsafe +MissingModule
+imported by: + pandas.io.formats.style_render + +
+ +
+ +
+ + marshal (builtin module) + +
+ + + + + +
+ + mimetypes +SourceModule
+imports: + _winapi + • getopt + • os + • posixpath + • sys + • urllib.parse + • winreg + +
+
+imported by: + http.server + • openpyxl.packaging.manifest + • urllib.request + +
+ +
+ +
+ + mmap /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/mmap.cpython-312-darwin.so + +
+ + + +
+ + mpl_toolkits +MissingModule + +
+ + + + + +
+ + multiprocessing.AuthenticationError +MissingModule
+imported by: + multiprocessing + • multiprocessing.connection + +
+ +
+ +
+ + multiprocessing.BufferTooShort +MissingModule
+imported by: + multiprocessing + • multiprocessing.connection + +
+ +
+ +
+ + multiprocessing.TimeoutError +MissingModule
+imported by: + multiprocessing + • multiprocessing.pool + +
+ +
+ + + + + +
+ + multiprocessing.dummy +Package
+imports: + array + • multiprocessing + • multiprocessing.dummy.connection + • multiprocessing.pool + • queue + • sys + • threading + • weakref + +
+ + +
+ +
+ + multiprocessing.dummy.connection +SourceModule
+imports: + multiprocessing.dummy + • queue + +
+
+imported by: + multiprocessing.dummy + +
+ +
+ + + + + +
+ + multiprocessing.get_start_method +MissingModule
+imported by: + multiprocessing + • multiprocessing.spawn + +
+ +
+ +
+ + multiprocessing.heap +SourceModule
+imports: + _winapi + • bisect + • collections + • mmap + • multiprocessing + • multiprocessing.context + • multiprocessing.util + • os + • sys + • tempfile + • threading + +
+ + +
+ + + + + + + + + + + +
+ + multiprocessing.popen_spawn_win32 +SourceModule
+imports: + _winapi + • msvcrt + • multiprocessing + • multiprocessing.context + • multiprocessing.spawn + • multiprocessing.util + • os + • signal + • sys + +
+
+imported by: + multiprocessing.context + +
+ +
+ + + +
+ + multiprocessing.queues +SourceModule + + +
+ +
+ + multiprocessing.reduction +SourceModule
+imports: + _winapi + • abc + • array + • copyreg + • functools + • io + • multiprocessing + • multiprocessing.context + • multiprocessing.resource_sharer + • os + • pickle + • socket + • sys + +
+
+imported by: + multiprocessing + • multiprocessing.context + +
+ +
+ + + + + +
+ + multiprocessing.set_start_method +MissingModule
+imported by: + multiprocessing + • multiprocessing.spawn + +
+ +
+ +
+ + multiprocessing.shared_memory +SourceModule
+imports: + _posixshmem + • _winapi + • errno + • functools + • mmap + • multiprocessing + • multiprocessing.resource_tracker + • os + • secrets + • struct + • types + +
+
+imported by: + multiprocessing + • multiprocessing.managers + +
+ +
+ + + + + + + + + +
+ + netrc +SourceModule
+imports: + os + • pwd + • stat + +
+
+imported by: + ftplib + +
+ +
+ +
+ + nt +MissingModule
+imported by: + ctypes + • importlib._bootstrap_external + • ntpath + • os + • shutil + +
+ +
+ +
+ + ntpath +SourceModule
+imports: + _winapi + • genericpath + • nt + • os + • stat + • string + • sys + +
+
+imported by: + entry.py + • os + • pathlib + • pkg_resources + +
+ +
+ +
+ + nturl2path +SourceModule
+imports: + string + • urllib.parse + +
+
+imported by: + urllib.request + +
+ +
+ + + + + + + +
+ + numexpr.cpuinfo +SourceModule
+imports: + _winreg + • inspect + • numexpr + • os + • platform + • re + • subprocess + • sys + • types + • warnings + • winreg + +
+
+imported by: + numexpr.tests.test_numexpr + +
+ +
+ +
+ + numexpr.expressions +SourceModule
+imports: + numexpr + • numexpr.interpreter + • numpy + • operator + • sys + • threading + +
+
+imported by: + numexpr + • numexpr.necompiler + • numexpr.tests.test_numexpr + +
+ +
+ +
+ + numexpr.interpreter /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numexpr/interpreter.cpython-312-darwin.so
+imports: + numexpr + +
+
+imported by: + numexpr + • numexpr.expressions + • numexpr.necompiler + • numexpr.utils + +
+ +
+ +
+ + numexpr.necompiler +SourceModule
+imports: + __future__ + • numexpr + • numexpr.expressions + • numexpr.interpreter + • numexpr.utils + • numpy + • os + • re + • sys + • threading + • typing + +
+
+imported by: + numexpr + +
+ +
+ +
+ + numexpr.tests +Package
+imports: + numexpr + • numexpr.tests.test_numexpr + +
+
+imported by: + numexpr + • numexpr.tests.test_numexpr + +
+ +
+ +
+ + numexpr.tests.test_numexpr +SourceModule
+imports: + contextlib + • itertools + • multiprocessing + • numexpr + • numexpr.cpuinfo + • numexpr.expressions + • numexpr.tests + • numexpr.utils + • numpy + • numpy.rec + • numpy.testing + • os + • platform + • subprocess + • sys + • threading + • unittest + • warnings + +
+
+imported by: + numexpr.tests + +
+ +
+ +
+ + numexpr.utils +SourceModule
+imports: + logging + • numexpr + • numexpr.interpreter + • numexpr.version + • os + • subprocess + +
+
+imported by: + numexpr + • numexpr.necompiler + • numexpr.tests.test_numexpr + +
+ +
+ +
+ + numexpr.version +SourceModule
+imports: + numexpr + +
+
+imported by: + numexpr + • numexpr.utils + +
+ +
+ +
+ + numpy +Package
+imports: + numpy + • numpy.__config__ + • numpy._core + • numpy._core._dtype_ctypes + • numpy._core._multiarray_tests + • numpy._core.add + • numpy._core.all + • numpy._core.amax + • numpy._core.amin + • numpy._core.arange + • numpy._core.arccos + • numpy._core.arccosh + • numpy._core.arcsin + • numpy._core.arcsinh + • numpy._core.arctan + • numpy._core.arctan2 + • numpy._core.arctanh + • numpy._core.argsort + • numpy._core.array + • numpy._core.array2string + • numpy._core.array_repr + • numpy._core.asanyarray + • numpy._core.asarray + • numpy._core.atleast_1d + • numpy._core.atleast_2d + • numpy._core.atleast_3d + • numpy._core.bitwise_and + • numpy._core.bitwise_count + • numpy._core.bitwise_or + • numpy._core.bitwise_xor + • numpy._core.bool_ + • numpy._core.byte + • numpy._core.bytes_ + • numpy._core.cbrt + • numpy._core.cdouble + • numpy._core.ceil + • numpy._core.character + • numpy._core.clongdouble + • numpy._core.complex64 + • numpy._core.complexfloating + • numpy._core.conj + • numpy._core.conjugate + • numpy._core.copysign + • numpy._core.cos + • numpy._core.cosh + • numpy._core.count_nonzero + • numpy._core.cross + • numpy._core.csingle + • numpy._core.datetime64 + • numpy._core.deg2rad + • numpy._core.degrees + • numpy._core.diagonal + • numpy._core.divide + • numpy._core.divmod + • numpy._core.dot + • numpy._core.double + • numpy._core.e + • numpy._core.empty + • numpy._core.empty_like + • numpy._core.equal + • numpy._core.errstate + • numpy._core.euler_gamma + • numpy._core.exp + • numpy._core.expm1 + • numpy._core.fabs + • numpy._core.finfo + • numpy._core.float16 + • numpy._core.float32 + • numpy._core.float_power + • numpy._core.floating + • numpy._core.floor + • numpy._core.floor_divide + • numpy._core.fmax + • numpy._core.fmin + • numpy._core.fmod + • numpy._core.frexp + • numpy._core.frompyfunc + • numpy._core.gcd + • numpy._core.greater + • numpy._core.greater_equal + • numpy._core.half + • numpy._core.heaviside + • numpy._core.hstack + • numpy._core.hypot + • numpy._core.iinfo + • numpy._core.inexact + • numpy._core.inf + • numpy._core.int16 + • numpy._core.int32 + • numpy._core.int64 + • numpy._core.int8 + • numpy._core.intc + • numpy._core.integer + • numpy._core.intp + • numpy._core.isfinite + • numpy._core.isnan + • numpy._core.isnat + • numpy._core.isscalar + • numpy._core.lcm + • numpy._core.ldexp + • numpy._core.left_shift + • numpy._core.less + • numpy._core.less_equal + • numpy._core.linspace + • numpy._core.log + • numpy._core.log1p + • numpy._core.log2 + • numpy._core.logaddexp + • numpy._core.logaddexp2 + • numpy._core.logical_and + • numpy._core.logical_not + • numpy._core.logical_or + • numpy._core.logical_xor + • numpy._core.long + • numpy._core.longdouble + • numpy._core.matmul + • numpy._core.matrix_transpose + • numpy._core.max + • numpy._core.maximum + • numpy._core.memmap + • numpy._core.minimum + • numpy._core.mod + • numpy._core.modf + • numpy._core.moveaxis + • numpy._core.multiply + • numpy._core.ndarray + • numpy._core.negative + • numpy._core.newaxis + • numpy._core.not_equal + • numpy._core.number + • numpy._core.object_ + • numpy._core.ones + • numpy._core.outer + • numpy._core.pi + • numpy._core.positive + • numpy._core.power + • numpy._core.prod + • numpy._core.rad2deg + • numpy._core.radians + • numpy._core.reciprocal + • numpy._core.remainder + • numpy._core.result_type + • numpy._core.right_shift + • numpy._core.rint + • numpy._core.short + • numpy._core.sign + • numpy._core.signbit + • numpy._core.signedinteger + • numpy._core.single + • numpy._core.sinh + • numpy._core.sort + • numpy._core.spacing + • numpy._core.sqrt + • numpy._core.square + • numpy._core.str_ + • numpy._core.subtract + • numpy._core.sum + • numpy._core.swapaxes + • numpy._core.tan + • numpy._core.tanh + • numpy._core.tensordot + • numpy._core.timedelta64 + • numpy._core.trace + • numpy._core.transpose + • numpy._core.true_divide + • numpy._core.trunc + • numpy._core.ubyte + • numpy._core.uint + • numpy._core.uint16 + • numpy._core.uint32 + • numpy._core.uint64 + • numpy._core.uintc + • numpy._core.uintp + • numpy._core.ulong + • numpy._core.ulonglong + • numpy._core.unsignedinteger + • numpy._core.ushort + • numpy._core.vecdot + • numpy._core.void + • numpy._core.vstack + • numpy._core.zeros + • numpy._distributor_init + • numpy._distributor_init_local + • numpy._expired_attrs_2_0 + • numpy._globals + • numpy._pytesttester + • numpy.char + • numpy.core + • numpy.ctypeslib + • numpy.dtypes + • numpy.exceptions + • numpy.f2py + • numpy.fft + • numpy.lib + • numpy.lib._arraypad_impl + • numpy.lib._arraysetops_impl + • numpy.lib._function_base_impl + • numpy.lib._histograms_impl + • numpy.lib._index_tricks_impl + • numpy.lib._nanfunctions_impl + • numpy.lib._npyio_impl + • numpy.lib._polynomial_impl + • numpy.lib._shape_base_impl + • numpy.lib._stride_tricks_impl + • numpy.lib._twodim_base_impl + • numpy.lib._type_check_impl + • numpy.lib._ufunclike_impl + • numpy.lib._utils_impl + • numpy.lib.scimath + • numpy.linalg + • numpy.ma + • numpy.matlib + • numpy.matrixlib + • numpy.polynomial + • numpy.random + • numpy.rec + • numpy.strings + • numpy.testing + • numpy.typing + • numpy.version + • os + • pathlib + • sys + • warnings + +
+
+imported by: + numexpr.expressions + • numexpr.necompiler + • numexpr.tests.test_numexpr + • numpy + • numpy.__config__ + • numpy._core + • numpy._core._dtype + • numpy._core._dtype_ctypes + • numpy._core._internal + • numpy._core.arrayprint + • numpy._core.fromnumeric + • numpy._core.function_base + • numpy._core.memmap + • numpy._core.numeric + • numpy._core.strings + • numpy._core.umath + • numpy._distributor_init + • numpy._expired_attrs_2_0 + • numpy._globals + • numpy._pytesttester + • numpy._typing + • numpy._typing._array_like + • numpy._typing._dtype_like + • numpy._typing._scalars + • numpy._utils + • numpy.char + • numpy.core + • numpy.ctypeslib + • numpy.dtypes + • numpy.exceptions + • numpy.f2py + • numpy.f2py.diagnose + • numpy.f2py.f90mod_rules + • numpy.fft + • numpy.lib + • numpy.lib._arraypad_impl + • numpy.lib._arraysetops_impl + • numpy.lib._function_base_impl + • numpy.lib._histograms_impl + • numpy.lib._index_tricks_impl + • numpy.lib._iotools + • numpy.lib._nanfunctions_impl + • numpy.lib._npyio_impl + • numpy.lib._stride_tricks_impl + • numpy.lib._twodim_base_impl + • numpy.lib._utils_impl + • numpy.lib.format + • numpy.lib.recfunctions + • numpy.linalg + • numpy.linalg._linalg + • numpy.ma + • numpy.ma.core + • numpy.ma.extras + • numpy.ma.mrecords + • numpy.matlib + • numpy.matrixlib + • numpy.polynomial + • numpy.polynomial._polybase + • numpy.polynomial.chebyshev + • numpy.polynomial.hermite + • numpy.polynomial.hermite_e + • numpy.polynomial.laguerre + • numpy.polynomial.legendre + • numpy.polynomial.polynomial + • numpy.polynomial.polyutils + • numpy.random + • numpy.random._generator + • numpy.random._mt19937 + • numpy.random._philox + • numpy.random._sfc64 + • numpy.random.bit_generator + • numpy.random.mtrand + • numpy.rec + • numpy.strings + • numpy.testing + • numpy.testing._private.utils + • numpy.testing.overrides + • numpy.typing + • numpy.version + • openpyxl.compat.numbers + • openpyxl.utils.dataframe + • pandas._libs.algos + • pandas._libs.arrays + • pandas._libs.groupby + • pandas._libs.hashing + • pandas._libs.hashtable + • pandas._libs.index + • pandas._libs.internals + • pandas._libs.interval + • pandas._libs.join + • pandas._libs.lib + • pandas._libs.missing + • pandas._libs.ops + • pandas._libs.ops_dispatch + • pandas._libs.parsers + • pandas._libs.reshape + • pandas._libs.sparse + • pandas._libs.tslib + • pandas._libs.tslibs.conversion + • pandas._libs.tslibs.fields + • pandas._libs.tslibs.nattype + • pandas._libs.tslibs.np_datetime + • pandas._libs.tslibs.offsets + • pandas._libs.tslibs.parsing + • pandas._libs.tslibs.period + • pandas._libs.tslibs.strptime + • pandas._libs.tslibs.timedeltas + • pandas._libs.tslibs.timestamps + • pandas._libs.tslibs.timezones + • pandas._libs.tslibs.tzconversion + • pandas._libs.tslibs.vectorized + • pandas._libs.window.aggregations + • pandas._libs.window.indexers + • pandas._libs.writers + • pandas._testing + • pandas._testing.asserters + • pandas._typing + • pandas.compat.numpy + • pandas.compat.numpy.function + • pandas.compat.pickle_compat + • pandas.conftest + • pandas.core._numba.executor + • pandas.core._numba.extensions + • pandas.core._numba.kernels.mean_ + • pandas.core._numba.kernels.min_max_ + • pandas.core._numba.kernels.shared + • pandas.core._numba.kernels.sum_ + • pandas.core._numba.kernels.var_ + • pandas.core.algorithms + • pandas.core.apply + • pandas.core.array_algos.datetimelike_accumulations + • pandas.core.array_algos.masked_accumulations + • pandas.core.array_algos.masked_reductions + • pandas.core.array_algos.putmask + • pandas.core.array_algos.quantile + • pandas.core.array_algos.replace + • pandas.core.array_algos.take + • pandas.core.array_algos.transforms + • pandas.core.arraylike + • pandas.core.arrays._arrow_string_mixins + • pandas.core.arrays._mixins + • pandas.core.arrays._ranges + • pandas.core.arrays._utils + • pandas.core.arrays.arrow._arrow_utils + • pandas.core.arrays.arrow.array + • pandas.core.arrays.base + • pandas.core.arrays.boolean + • pandas.core.arrays.categorical + • pandas.core.arrays.datetimelike + • pandas.core.arrays.datetimes + • pandas.core.arrays.floating + • pandas.core.arrays.integer + • pandas.core.arrays.interval + • pandas.core.arrays.masked + • pandas.core.arrays.numeric + • pandas.core.arrays.numpy_ + • pandas.core.arrays.period + • pandas.core.arrays.sparse.accessor + • pandas.core.arrays.sparse.array + • pandas.core.arrays.sparse.scipy_sparse + • pandas.core.arrays.string_ + • pandas.core.arrays.string_arrow + • pandas.core.arrays.timedeltas + • pandas.core.base + • pandas.core.common + • pandas.core.computation.align + • pandas.core.computation.common + • pandas.core.computation.expr + • pandas.core.computation.expressions + • pandas.core.computation.ops + • pandas.core.computation.pytables + • pandas.core.computation.scope + • pandas.core.construction + • pandas.core.dtypes.astype + • pandas.core.dtypes.base + • pandas.core.dtypes.cast + • pandas.core.dtypes.common + • pandas.core.dtypes.concat + • pandas.core.dtypes.dtypes + • pandas.core.dtypes.inference + • pandas.core.dtypes.missing + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.categorical + • pandas.core.groupby.generic + • pandas.core.groupby.groupby + • pandas.core.groupby.grouper + • pandas.core.groupby.indexing + • pandas.core.groupby.numba_ + • pandas.core.groupby.ops + • pandas.core.indexers.objects + • pandas.core.indexers.utils + • pandas.core.indexes.accessors + • pandas.core.indexes.api + • pandas.core.indexes.base + • pandas.core.indexes.category + • pandas.core.indexes.datetimelike + • pandas.core.indexes.datetimes + • pandas.core.indexes.extension + • pandas.core.indexes.interval + • pandas.core.indexes.multi + • pandas.core.indexes.period + • pandas.core.indexes.range + • pandas.core.indexing + • pandas.core.interchange.buffer + • pandas.core.interchange.column + • pandas.core.interchange.from_dataframe + • pandas.core.interchange.utils + • pandas.core.internals.api + • pandas.core.internals.array_manager + • pandas.core.internals.base + • pandas.core.internals.blocks + • pandas.core.internals.concat + • pandas.core.internals.construction + • pandas.core.internals.managers + • pandas.core.methods.describe + • pandas.core.methods.selectn + • pandas.core.methods.to_dict + • pandas.core.missing + • pandas.core.nanops + • pandas.core.ops.array_ops + • pandas.core.ops.invalid + • pandas.core.ops.mask_ops + • pandas.core.ops.missing + • pandas.core.resample + • pandas.core.reshape.concat + • pandas.core.reshape.encoding + • pandas.core.reshape.melt + • pandas.core.reshape.merge + • pandas.core.reshape.pivot + • pandas.core.reshape.reshape + • pandas.core.reshape.tile + • pandas.core.reshape.util + • pandas.core.sample + • pandas.core.series + • pandas.core.sorting + • pandas.core.strings.accessor + • pandas.core.strings.base + • pandas.core.strings.object_array + • pandas.core.tools.datetimes + • pandas.core.tools.numeric + • pandas.core.tools.timedeltas + • pandas.core.tools.times + • pandas.core.util.hashing + • pandas.core.util.numba_ + • pandas.core.window.common + • pandas.core.window.ewm + • pandas.core.window.numba_ + • pandas.core.window.online + • pandas.core.window.rolling + • pandas.io.excel._odfreader + • pandas.io.excel._openpyxl + • pandas.io.excel._xlrd + • pandas.io.formats.csvs + • pandas.io.formats.excel + • pandas.io.formats.format + • pandas.io.formats.string + • pandas.io.formats.style + • pandas.io.formats.style_render + • pandas.io.json._json + • pandas.io.json._normalize + • pandas.io.parsers.base_parser + • pandas.io.parsers.c_parser_wrapper + • pandas.io.parsers.python_parser + • pandas.io.parsers.readers + • pandas.io.pytables + • pandas.io.sas.sas7bdat + • pandas.io.sas.sas_xport + • pandas.io.sql + • pandas.io.stata + • pandas.plotting._core + • pandas.plotting._matplotlib.boxplot + • pandas.plotting._matplotlib.converter + • pandas.plotting._matplotlib.core + • pandas.plotting._matplotlib.groupby + • pandas.plotting._matplotlib.hist + • pandas.plotting._matplotlib.misc + • pandas.plotting._matplotlib.style + • pandas.plotting._matplotlib.timeseries + • pandas.plotting._matplotlib.tools + • pandas.plotting._misc + • pandas.tests.apply.test_frame_apply + • pandas.tests.apply.test_frame_apply_relabeling + • pandas.tests.apply.test_frame_transform + • pandas.tests.apply.test_invalid_arg + • pandas.tests.apply.test_numba + • pandas.tests.apply.test_series_apply + • pandas.tests.apply.test_series_transform + • pandas.tests.apply.test_str + • pandas.tests.arithmetic.common + • pandas.tests.arithmetic.conftest + • pandas.tests.arithmetic.test_array_ops + • pandas.tests.arithmetic.test_categorical + • pandas.tests.arithmetic.test_datetime64 + • pandas.tests.arithmetic.test_interval + • pandas.tests.arithmetic.test_numeric + • pandas.tests.arithmetic.test_object + • pandas.tests.arithmetic.test_period + • pandas.tests.arithmetic.test_timedelta64 + • pandas.tests.arrays.boolean.test_arithmetic + • pandas.tests.arrays.boolean.test_astype + • pandas.tests.arrays.boolean.test_comparison + • pandas.tests.arrays.boolean.test_construction + • pandas.tests.arrays.boolean.test_function + • pandas.tests.arrays.boolean.test_indexing + • pandas.tests.arrays.boolean.test_logical + • pandas.tests.arrays.boolean.test_reduction + • pandas.tests.arrays.categorical.test_algos + • pandas.tests.arrays.categorical.test_analytics + • pandas.tests.arrays.categorical.test_api + • pandas.tests.arrays.categorical.test_astype + • pandas.tests.arrays.categorical.test_constructors + • pandas.tests.arrays.categorical.test_dtypes + • pandas.tests.arrays.categorical.test_indexing + • pandas.tests.arrays.categorical.test_map + • pandas.tests.arrays.categorical.test_missing + • pandas.tests.arrays.categorical.test_operators + • pandas.tests.arrays.categorical.test_repr + • pandas.tests.arrays.categorical.test_sorting + • pandas.tests.arrays.categorical.test_take + • pandas.tests.arrays.datetimes.test_constructors + • pandas.tests.arrays.datetimes.test_reductions + • pandas.tests.arrays.floating.conftest + • pandas.tests.arrays.floating.test_arithmetic + • pandas.tests.arrays.floating.test_astype + • pandas.tests.arrays.floating.test_comparison + • pandas.tests.arrays.floating.test_construction + • pandas.tests.arrays.floating.test_contains + • pandas.tests.arrays.floating.test_function + • pandas.tests.arrays.floating.test_repr + • pandas.tests.arrays.floating.test_to_numpy + • pandas.tests.arrays.integer.conftest + • pandas.tests.arrays.integer.test_arithmetic + • pandas.tests.arrays.integer.test_concat + • pandas.tests.arrays.integer.test_construction + • pandas.tests.arrays.integer.test_dtypes + • pandas.tests.arrays.integer.test_function + • pandas.tests.arrays.integer.test_reduction + • pandas.tests.arrays.integer.test_repr + • pandas.tests.arrays.interval.test_interval + • pandas.tests.arrays.interval.test_interval_pyarrow + • pandas.tests.arrays.interval.test_overlaps + • pandas.tests.arrays.masked.test_arithmetic + • pandas.tests.arrays.masked.test_arrow_compat + • pandas.tests.arrays.masked.test_function + • pandas.tests.arrays.masked.test_indexing + • pandas.tests.arrays.masked_shared + • pandas.tests.arrays.numpy_.test_indexing + • pandas.tests.arrays.numpy_.test_numpy + • pandas.tests.arrays.period.test_astype + • pandas.tests.arrays.period.test_constructors + • pandas.tests.arrays.sparse.test_accessor + • pandas.tests.arrays.sparse.test_arithmetics + • pandas.tests.arrays.sparse.test_array + • pandas.tests.arrays.sparse.test_astype + • pandas.tests.arrays.sparse.test_combine_concat + • pandas.tests.arrays.sparse.test_constructors + • pandas.tests.arrays.sparse.test_dtype + • pandas.tests.arrays.sparse.test_indexing + • pandas.tests.arrays.sparse.test_libsparse + • pandas.tests.arrays.sparse.test_reductions + • pandas.tests.arrays.sparse.test_unary + • pandas.tests.arrays.string_.test_string + • pandas.tests.arrays.string_.test_string_arrow + • pandas.tests.arrays.test_array + • pandas.tests.arrays.test_datetimelike + • pandas.tests.arrays.test_datetimes + • pandas.tests.arrays.test_ndarray_backed + • pandas.tests.arrays.test_period + • pandas.tests.arrays.test_timedeltas + • pandas.tests.arrays.timedeltas.test_constructors + • pandas.tests.arrays.timedeltas.test_reductions + • pandas.tests.base.test_constructors + • pandas.tests.base.test_conversion + • pandas.tests.base.test_fillna + • pandas.tests.base.test_misc + • pandas.tests.base.test_transpose + • pandas.tests.base.test_unique + • pandas.tests.base.test_value_counts + • pandas.tests.computation.test_eval + • pandas.tests.copy_view.index.test_index + • pandas.tests.copy_view.test_array + • pandas.tests.copy_view.test_astype + • pandas.tests.copy_view.test_chained_assignment_deprecation + • pandas.tests.copy_view.test_clip + • pandas.tests.copy_view.test_constructors + • pandas.tests.copy_view.test_core_functionalities + • pandas.tests.copy_view.test_functions + • pandas.tests.copy_view.test_indexing + • pandas.tests.copy_view.test_internals + • pandas.tests.copy_view.test_interp_fillna + • pandas.tests.copy_view.test_methods + • pandas.tests.copy_view.test_replace + • pandas.tests.copy_view.test_setitem + • pandas.tests.copy_view.test_util + • pandas.tests.dtypes.cast.test_can_hold_element + • pandas.tests.dtypes.cast.test_construct_from_scalar + • pandas.tests.dtypes.cast.test_construct_ndarray + • pandas.tests.dtypes.cast.test_dict_compat + • pandas.tests.dtypes.cast.test_downcast + • pandas.tests.dtypes.cast.test_find_common_type + • pandas.tests.dtypes.cast.test_infer_datetimelike + • pandas.tests.dtypes.cast.test_infer_dtype + • pandas.tests.dtypes.cast.test_maybe_box_native + • pandas.tests.dtypes.cast.test_promote + • pandas.tests.dtypes.test_common + • pandas.tests.dtypes.test_dtypes + • pandas.tests.dtypes.test_generic + • pandas.tests.dtypes.test_inference + • pandas.tests.dtypes.test_missing + • pandas.tests.extension.array_with_attr.array + • pandas.tests.extension.array_with_attr.test_array_with_attr + • pandas.tests.extension.base.casting + • pandas.tests.extension.base.constructors + • pandas.tests.extension.base.dim2 + • pandas.tests.extension.base.dtype + • pandas.tests.extension.base.getitem + • pandas.tests.extension.base.interface + • pandas.tests.extension.base.io + • pandas.tests.extension.base.methods + • pandas.tests.extension.base.missing + • pandas.tests.extension.base.ops + • pandas.tests.extension.base.reshaping + • pandas.tests.extension.base.setitem + • pandas.tests.extension.date.array + • pandas.tests.extension.decimal.array + • pandas.tests.extension.decimal.test_decimal + • pandas.tests.extension.json.array + • pandas.tests.extension.json.test_json + • pandas.tests.extension.list.array + • pandas.tests.extension.test_arrow + • pandas.tests.extension.test_categorical + • pandas.tests.extension.test_common + • pandas.tests.extension.test_datetime + • pandas.tests.extension.test_extension + • pandas.tests.extension.test_interval + • pandas.tests.extension.test_masked + • pandas.tests.extension.test_numpy + • pandas.tests.extension.test_period + • pandas.tests.extension.test_sparse + • pandas.tests.extension.test_string + • pandas.tests.frame.conftest + • pandas.tests.frame.constructors.test_from_dict + • pandas.tests.frame.constructors.test_from_records + • pandas.tests.frame.indexing.test_coercion + • pandas.tests.frame.indexing.test_delitem + • pandas.tests.frame.indexing.test_getitem + • pandas.tests.frame.indexing.test_indexing + • pandas.tests.frame.indexing.test_insert + • pandas.tests.frame.indexing.test_mask + • pandas.tests.frame.indexing.test_set_value + • pandas.tests.frame.indexing.test_setitem + • pandas.tests.frame.indexing.test_where + • pandas.tests.frame.indexing.test_xs + • pandas.tests.frame.methods.test_align + • pandas.tests.frame.methods.test_asfreq + • pandas.tests.frame.methods.test_asof + • pandas.tests.frame.methods.test_astype + • pandas.tests.frame.methods.test_at_time + • pandas.tests.frame.methods.test_between_time + • pandas.tests.frame.methods.test_clip + • pandas.tests.frame.methods.test_combine + • pandas.tests.frame.methods.test_combine_first + • pandas.tests.frame.methods.test_compare + • pandas.tests.frame.methods.test_convert_dtypes + • pandas.tests.frame.methods.test_copy + • pandas.tests.frame.methods.test_cov_corr + • pandas.tests.frame.methods.test_describe + • pandas.tests.frame.methods.test_diff + • pandas.tests.frame.methods.test_dot + • pandas.tests.frame.methods.test_drop + • pandas.tests.frame.methods.test_drop_duplicates + • pandas.tests.frame.methods.test_dropna + • pandas.tests.frame.methods.test_dtypes + • pandas.tests.frame.methods.test_duplicated + • pandas.tests.frame.methods.test_equals + • pandas.tests.frame.methods.test_explode + • pandas.tests.frame.methods.test_fillna + • pandas.tests.frame.methods.test_filter + • pandas.tests.frame.methods.test_first_and_last + • pandas.tests.frame.methods.test_first_valid_index + • pandas.tests.frame.methods.test_get_numeric_data + • pandas.tests.frame.methods.test_head_tail + • pandas.tests.frame.methods.test_info + • pandas.tests.frame.methods.test_interpolate + • pandas.tests.frame.methods.test_is_homogeneous_dtype + • pandas.tests.frame.methods.test_isin + • pandas.tests.frame.methods.test_join + • pandas.tests.frame.methods.test_map + • pandas.tests.frame.methods.test_matmul + • pandas.tests.frame.methods.test_nlargest + • pandas.tests.frame.methods.test_pct_change + • pandas.tests.frame.methods.test_pop + • pandas.tests.frame.methods.test_quantile + • pandas.tests.frame.methods.test_rank + • pandas.tests.frame.methods.test_reindex + • pandas.tests.frame.methods.test_reindex_like + • pandas.tests.frame.methods.test_rename + • pandas.tests.frame.methods.test_rename_axis + • pandas.tests.frame.methods.test_reorder_levels + • pandas.tests.frame.methods.test_replace + • pandas.tests.frame.methods.test_reset_index + • pandas.tests.frame.methods.test_round + • pandas.tests.frame.methods.test_sample + • pandas.tests.frame.methods.test_select_dtypes + • pandas.tests.frame.methods.test_set_axis + • pandas.tests.frame.methods.test_set_index + • pandas.tests.frame.methods.test_shift + • pandas.tests.frame.methods.test_size + • pandas.tests.frame.methods.test_sort_index + • pandas.tests.frame.methods.test_sort_values + • pandas.tests.frame.methods.test_swapaxes + • pandas.tests.frame.methods.test_to_csv + • pandas.tests.frame.methods.test_to_dict + • pandas.tests.frame.methods.test_to_dict_of_blocks + • pandas.tests.frame.methods.test_to_numpy + • pandas.tests.frame.methods.test_to_period + • pandas.tests.frame.methods.test_to_records + • pandas.tests.frame.methods.test_to_timestamp + • pandas.tests.frame.methods.test_transpose + • pandas.tests.frame.methods.test_truncate + • pandas.tests.frame.methods.test_tz_convert + • pandas.tests.frame.methods.test_tz_localize + • pandas.tests.frame.methods.test_update + • pandas.tests.frame.methods.test_value_counts + • pandas.tests.frame.methods.test_values + • pandas.tests.frame.test_api + • pandas.tests.frame.test_arithmetic + • pandas.tests.frame.test_block_internals + • pandas.tests.frame.test_constructors + • pandas.tests.frame.test_cumulative + • pandas.tests.frame.test_iteration + • pandas.tests.frame.test_logical_ops + • pandas.tests.frame.test_nonunique_indexes + • pandas.tests.frame.test_npfuncs + • pandas.tests.frame.test_query_eval + • pandas.tests.frame.test_reductions + • pandas.tests.frame.test_repr + • pandas.tests.frame.test_stack_unstack + • pandas.tests.frame.test_subclass + • pandas.tests.frame.test_ufunc + • pandas.tests.frame.test_unary + • pandas.tests.generic.test_duplicate_labels + • pandas.tests.generic.test_finalize + • pandas.tests.generic.test_frame + • pandas.tests.generic.test_generic + • pandas.tests.generic.test_series + • pandas.tests.generic.test_to_xarray + • pandas.tests.groupby.aggregate.test_aggregate + • pandas.tests.groupby.aggregate.test_cython + • pandas.tests.groupby.aggregate.test_numba + • pandas.tests.groupby.aggregate.test_other + • pandas.tests.groupby.conftest + • pandas.tests.groupby.methods.test_corrwith + • pandas.tests.groupby.methods.test_describe + • pandas.tests.groupby.methods.test_groupby_shift_diff + • pandas.tests.groupby.methods.test_is_monotonic + • pandas.tests.groupby.methods.test_nlargest_nsmallest + • pandas.tests.groupby.methods.test_nth + • pandas.tests.groupby.methods.test_quantile + • pandas.tests.groupby.methods.test_rank + • pandas.tests.groupby.methods.test_size + • pandas.tests.groupby.methods.test_skew + • pandas.tests.groupby.methods.test_value_counts + • pandas.tests.groupby.test_apply + • pandas.tests.groupby.test_apply_mutate + • pandas.tests.groupby.test_bin_groupby + • pandas.tests.groupby.test_categorical + • pandas.tests.groupby.test_counting + • pandas.tests.groupby.test_cumulative + • pandas.tests.groupby.test_filters + • pandas.tests.groupby.test_groupby + • pandas.tests.groupby.test_groupby_dropna + • pandas.tests.groupby.test_groupby_subclass + • pandas.tests.groupby.test_grouping + • pandas.tests.groupby.test_index_as_string + • pandas.tests.groupby.test_indexing + • pandas.tests.groupby.test_libgroupby + • pandas.tests.groupby.test_missing + • pandas.tests.groupby.test_numeric_only + • pandas.tests.groupby.test_pipe + • pandas.tests.groupby.test_raises + • pandas.tests.groupby.test_reductions + • pandas.tests.groupby.test_timegrouper + • pandas.tests.groupby.transform.test_numba + • pandas.tests.groupby.transform.test_transform + • pandas.tests.indexes.base_class.test_constructors + • pandas.tests.indexes.base_class.test_formats + • pandas.tests.indexes.base_class.test_indexing + • pandas.tests.indexes.base_class.test_reshape + • pandas.tests.indexes.base_class.test_setops + • pandas.tests.indexes.base_class.test_where + • pandas.tests.indexes.categorical.test_astype + • pandas.tests.indexes.categorical.test_category + • pandas.tests.indexes.categorical.test_constructors + • pandas.tests.indexes.categorical.test_equals + • pandas.tests.indexes.categorical.test_fillna + • pandas.tests.indexes.categorical.test_indexing + • pandas.tests.indexes.categorical.test_map + • pandas.tests.indexes.categorical.test_reindex + • pandas.tests.indexes.categorical.test_setops + • pandas.tests.indexes.conftest + • pandas.tests.indexes.datetimelike_.test_drop_duplicates + • pandas.tests.indexes.datetimelike_.test_equals + • pandas.tests.indexes.datetimelike_.test_indexing + • pandas.tests.indexes.datetimelike_.test_nat + • pandas.tests.indexes.datetimelike_.test_sort_values + • pandas.tests.indexes.datetimelike_.test_value_counts + • pandas.tests.indexes.datetimes.methods.test_astype + • pandas.tests.indexes.datetimes.methods.test_factorize + • pandas.tests.indexes.datetimes.methods.test_insert + • pandas.tests.indexes.datetimes.methods.test_normalize + • pandas.tests.indexes.datetimes.methods.test_repeat + • pandas.tests.indexes.datetimes.methods.test_to_julian_date + • pandas.tests.indexes.datetimes.methods.test_to_pydatetime + • pandas.tests.indexes.datetimes.methods.test_to_series + • pandas.tests.indexes.datetimes.methods.test_tz_convert + • pandas.tests.indexes.datetimes.methods.test_tz_localize + • pandas.tests.indexes.datetimes.test_constructors + • pandas.tests.indexes.datetimes.test_date_range + • pandas.tests.indexes.datetimes.test_datetime + • pandas.tests.indexes.datetimes.test_formats + • pandas.tests.indexes.datetimes.test_indexing + • pandas.tests.indexes.datetimes.test_iter + • pandas.tests.indexes.datetimes.test_join + • pandas.tests.indexes.datetimes.test_npfuncs + • pandas.tests.indexes.datetimes.test_partial_slicing + • pandas.tests.indexes.datetimes.test_reindex + • pandas.tests.indexes.datetimes.test_scalar_compat + • pandas.tests.indexes.datetimes.test_setops + • pandas.tests.indexes.datetimes.test_timezones + • pandas.tests.indexes.interval.test_astype + • pandas.tests.indexes.interval.test_constructors + • pandas.tests.indexes.interval.test_equals + • pandas.tests.indexes.interval.test_formats + • pandas.tests.indexes.interval.test_indexing + • pandas.tests.indexes.interval.test_interval + • pandas.tests.indexes.interval.test_interval_range + • pandas.tests.indexes.interval.test_interval_tree + • pandas.tests.indexes.interval.test_setops + • pandas.tests.indexes.multi.conftest + • pandas.tests.indexes.multi.test_analytics + • pandas.tests.indexes.multi.test_astype + • pandas.tests.indexes.multi.test_compat + • pandas.tests.indexes.multi.test_constructors + • pandas.tests.indexes.multi.test_conversion + • pandas.tests.indexes.multi.test_drop + • pandas.tests.indexes.multi.test_duplicates + • pandas.tests.indexes.multi.test_equivalence + • pandas.tests.indexes.multi.test_formats + • pandas.tests.indexes.multi.test_get_level_values + • pandas.tests.indexes.multi.test_get_set + • pandas.tests.indexes.multi.test_indexing + • pandas.tests.indexes.multi.test_integrity + • pandas.tests.indexes.multi.test_isin + • pandas.tests.indexes.multi.test_join + • pandas.tests.indexes.multi.test_missing + • pandas.tests.indexes.multi.test_monotonic + • pandas.tests.indexes.multi.test_partial_indexing + • pandas.tests.indexes.multi.test_reindex + • pandas.tests.indexes.multi.test_reshape + • pandas.tests.indexes.multi.test_setops + • pandas.tests.indexes.multi.test_sorting + • pandas.tests.indexes.multi.test_take + • pandas.tests.indexes.numeric.test_astype + • pandas.tests.indexes.numeric.test_indexing + • pandas.tests.indexes.numeric.test_join + • pandas.tests.indexes.numeric.test_numeric + • pandas.tests.indexes.numeric.test_setops + • pandas.tests.indexes.object.test_indexing + • pandas.tests.indexes.period.methods.test_astype + • pandas.tests.indexes.period.methods.test_factorize + • pandas.tests.indexes.period.methods.test_insert + • pandas.tests.indexes.period.methods.test_repeat + • pandas.tests.indexes.period.methods.test_shift + • pandas.tests.indexes.period.methods.test_to_timestamp + • pandas.tests.indexes.period.test_constructors + • pandas.tests.indexes.period.test_formats + • pandas.tests.indexes.period.test_indexing + • pandas.tests.indexes.period.test_join + • pandas.tests.indexes.period.test_partial_slicing + • pandas.tests.indexes.period.test_period + • pandas.tests.indexes.period.test_period_range + • pandas.tests.indexes.period.test_pickle + • pandas.tests.indexes.period.test_searchsorted + • pandas.tests.indexes.period.test_setops + • pandas.tests.indexes.period.test_tools + • pandas.tests.indexes.ranges.test_constructors + • pandas.tests.indexes.ranges.test_indexing + • pandas.tests.indexes.ranges.test_join + • pandas.tests.indexes.ranges.test_range + • pandas.tests.indexes.ranges.test_setops + • pandas.tests.indexes.test_any_index + • pandas.tests.indexes.test_base + • pandas.tests.indexes.test_common + • pandas.tests.indexes.test_datetimelike + • pandas.tests.indexes.test_engines + • pandas.tests.indexes.test_index_new + • pandas.tests.indexes.test_indexing + • pandas.tests.indexes.test_numpy_compat + • pandas.tests.indexes.test_old_base + • pandas.tests.indexes.test_setops + • pandas.tests.indexes.test_subclass + • pandas.tests.indexes.timedeltas.methods.test_astype + • pandas.tests.indexes.timedeltas.methods.test_factorize + • pandas.tests.indexes.timedeltas.methods.test_insert + • pandas.tests.indexes.timedeltas.methods.test_repeat + • pandas.tests.indexes.timedeltas.test_arithmetic + • pandas.tests.indexes.timedeltas.test_constructors + • pandas.tests.indexes.timedeltas.test_indexing + • pandas.tests.indexes.timedeltas.test_join + • pandas.tests.indexes.timedeltas.test_scalar_compat + • pandas.tests.indexes.timedeltas.test_searchsorted + • pandas.tests.indexes.timedeltas.test_setops + • pandas.tests.indexes.timedeltas.test_timedelta + • pandas.tests.indexes.timedeltas.test_timedelta_range + • pandas.tests.indexing.conftest + • pandas.tests.indexing.interval.test_interval + • pandas.tests.indexing.interval.test_interval_new + • pandas.tests.indexing.multiindex.test_chaining_and_caching + • pandas.tests.indexing.multiindex.test_datetime + • pandas.tests.indexing.multiindex.test_getitem + • pandas.tests.indexing.multiindex.test_iloc + • pandas.tests.indexing.multiindex.test_indexing_slow + • pandas.tests.indexing.multiindex.test_loc + • pandas.tests.indexing.multiindex.test_multiindex + • pandas.tests.indexing.multiindex.test_partial + • pandas.tests.indexing.multiindex.test_setitem + • pandas.tests.indexing.multiindex.test_slice + • pandas.tests.indexing.multiindex.test_sorted + • pandas.tests.indexing.test_at + • pandas.tests.indexing.test_categorical + • pandas.tests.indexing.test_chaining_and_caching + • pandas.tests.indexing.test_check_indexer + • pandas.tests.indexing.test_coercion + • pandas.tests.indexing.test_floats + • pandas.tests.indexing.test_iat + • pandas.tests.indexing.test_iloc + • pandas.tests.indexing.test_indexers + • pandas.tests.indexing.test_indexing + • pandas.tests.indexing.test_loc + • pandas.tests.indexing.test_partial + • pandas.tests.indexing.test_scalar + • pandas.tests.interchange.test_impl + • pandas.tests.interchange.test_utils + • pandas.tests.internals.test_internals + • pandas.tests.io.excel.test_odf + • pandas.tests.io.excel.test_openpyxl + • pandas.tests.io.excel.test_readers + • pandas.tests.io.excel.test_style + • pandas.tests.io.excel.test_writers + • pandas.tests.io.excel.test_xlrd + • pandas.tests.io.formats.style.test_bar + • pandas.tests.io.formats.style.test_format + • pandas.tests.io.formats.style.test_highlight + • pandas.tests.io.formats.style.test_html + • pandas.tests.io.formats.style.test_matplotlib + • pandas.tests.io.formats.style.test_style + • pandas.tests.io.formats.style.test_to_latex + • pandas.tests.io.formats.style.test_tooltip + • pandas.tests.io.formats.test_eng_formatting + • pandas.tests.io.formats.test_format + • pandas.tests.io.formats.test_ipython_compat + • pandas.tests.io.formats.test_to_csv + • pandas.tests.io.formats.test_to_html + • pandas.tests.io.formats.test_to_string + • pandas.tests.io.generate_legacy_storage_files + • pandas.tests.io.json.test_json_table_schema + • pandas.tests.io.json.test_normalize + • pandas.tests.io.json.test_pandas + • pandas.tests.io.json.test_readlines + • pandas.tests.io.json.test_ujson + • pandas.tests.io.parser.common.test_chunksize + • pandas.tests.io.parser.common.test_common_basic + • pandas.tests.io.parser.common.test_file_buffer_url + • pandas.tests.io.parser.common.test_float + • pandas.tests.io.parser.common.test_inf + • pandas.tests.io.parser.common.test_ints + • pandas.tests.io.parser.common.test_read_errors + • pandas.tests.io.parser.dtypes.test_categorical + • pandas.tests.io.parser.dtypes.test_dtypes_basic + • pandas.tests.io.parser.dtypes.test_empty + • pandas.tests.io.parser.test_c_parser_only + • pandas.tests.io.parser.test_comment + • pandas.tests.io.parser.test_concatenate_chunks + • pandas.tests.io.parser.test_converters + • pandas.tests.io.parser.test_encoding + • pandas.tests.io.parser.test_header + • pandas.tests.io.parser.test_index_col + • pandas.tests.io.parser.test_multi_thread + • pandas.tests.io.parser.test_na_values + • pandas.tests.io.parser.test_network + • pandas.tests.io.parser.test_parse_dates + • pandas.tests.io.parser.test_python_parser_only + • pandas.tests.io.parser.test_read_fwf + • pandas.tests.io.parser.test_skiprows + • pandas.tests.io.parser.test_textreader + • pandas.tests.io.parser.test_upcast + • pandas.tests.io.parser.usecols.test_usecols_basic + • pandas.tests.io.pytables.test_append + • pandas.tests.io.pytables.test_categorical + • pandas.tests.io.pytables.test_complex + • pandas.tests.io.pytables.test_errors + • pandas.tests.io.pytables.test_file_handling + • pandas.tests.io.pytables.test_keys + • pandas.tests.io.pytables.test_put + • pandas.tests.io.pytables.test_read + • pandas.tests.io.pytables.test_round_trip + • pandas.tests.io.pytables.test_select + • pandas.tests.io.pytables.test_store + • pandas.tests.io.pytables.test_subclass + • pandas.tests.io.pytables.test_time_series + • pandas.tests.io.pytables.test_timezones + • pandas.tests.io.sas.test_byteswap + • pandas.tests.io.sas.test_sas7bdat + • pandas.tests.io.sas.test_xport + • pandas.tests.io.test_clipboard + • pandas.tests.io.test_common + • pandas.tests.io.test_compression + • pandas.tests.io.test_feather + • pandas.tests.io.test_fsspec + • pandas.tests.io.test_gcs + • pandas.tests.io.test_html + • pandas.tests.io.test_orc + • pandas.tests.io.test_parquet + • pandas.tests.io.test_pickle + • pandas.tests.io.test_spss + • pandas.tests.io.test_sql + • pandas.tests.io.test_stata + • pandas.tests.io.xml.test_to_xml + • pandas.tests.io.xml.test_xml + • pandas.tests.libs.test_hashtable + • pandas.tests.libs.test_join + • pandas.tests.libs.test_lib + • pandas.tests.libs.test_libalgos + • pandas.tests.plotting.common + • pandas.tests.plotting.conftest + • pandas.tests.plotting.frame.test_frame + • pandas.tests.plotting.frame.test_frame_color + • pandas.tests.plotting.frame.test_frame_legend + • pandas.tests.plotting.frame.test_frame_subplots + • pandas.tests.plotting.frame.test_hist_box_by + • pandas.tests.plotting.test_boxplot_method + • pandas.tests.plotting.test_converter + • pandas.tests.plotting.test_datetimelike + • pandas.tests.plotting.test_groupby + • pandas.tests.plotting.test_hist_method + • pandas.tests.plotting.test_misc + • pandas.tests.plotting.test_series + • pandas.tests.reductions.test_reductions + • pandas.tests.reductions.test_stat_reductions + • pandas.tests.resample.conftest + • pandas.tests.resample.test_base + • pandas.tests.resample.test_datetime_index + • pandas.tests.resample.test_period_index + • pandas.tests.resample.test_resample_api + • pandas.tests.resample.test_resampler_grouper + • pandas.tests.resample.test_time_grouper + • pandas.tests.resample.test_timedelta + • pandas.tests.reshape.concat.test_append + • pandas.tests.reshape.concat.test_append_common + • pandas.tests.reshape.concat.test_categorical + • pandas.tests.reshape.concat.test_concat + • pandas.tests.reshape.concat.test_dataframe + • pandas.tests.reshape.concat.test_datetimes + • pandas.tests.reshape.concat.test_empty + • pandas.tests.reshape.concat.test_index + • pandas.tests.reshape.concat.test_invalid + • pandas.tests.reshape.concat.test_series + • pandas.tests.reshape.concat.test_sort + • pandas.tests.reshape.merge.test_join + • pandas.tests.reshape.merge.test_merge + • pandas.tests.reshape.merge.test_merge_asof + • pandas.tests.reshape.merge.test_merge_index_as_string + • pandas.tests.reshape.merge.test_merge_ordered + • pandas.tests.reshape.merge.test_multi + • pandas.tests.reshape.test_crosstab + • pandas.tests.reshape.test_cut + • pandas.tests.reshape.test_from_dummies + • pandas.tests.reshape.test_get_dummies + • pandas.tests.reshape.test_melt + • pandas.tests.reshape.test_pivot + • pandas.tests.reshape.test_pivot_multilevel + • pandas.tests.reshape.test_qcut + • pandas.tests.reshape.test_union_categoricals + • pandas.tests.reshape.test_util + • pandas.tests.scalar.interval.test_arithmetic + • pandas.tests.scalar.interval.test_interval + • pandas.tests.scalar.period.test_arithmetic + • pandas.tests.scalar.period.test_period + • pandas.tests.scalar.test_na_scalar + • pandas.tests.scalar.test_nat + • pandas.tests.scalar.timedelta.methods.test_round + • pandas.tests.scalar.timedelta.test_arithmetic + • pandas.tests.scalar.timedelta.test_constructors + • pandas.tests.scalar.timedelta.test_timedelta + • pandas.tests.scalar.timestamp.methods.test_replace + • pandas.tests.scalar.timestamp.methods.test_round + • pandas.tests.scalar.timestamp.test_arithmetic + • pandas.tests.scalar.timestamp.test_comparisons + • pandas.tests.scalar.timestamp.test_constructors + • pandas.tests.scalar.timestamp.test_timestamp + • pandas.tests.series.accessors.test_cat_accessor + • pandas.tests.series.accessors.test_dt_accessor + • pandas.tests.series.indexing.test_datetime + • pandas.tests.series.indexing.test_get + • pandas.tests.series.indexing.test_getitem + • pandas.tests.series.indexing.test_indexing + • pandas.tests.series.indexing.test_mask + • pandas.tests.series.indexing.test_set_value + • pandas.tests.series.indexing.test_setitem + • pandas.tests.series.indexing.test_where + • pandas.tests.series.indexing.test_xs + • pandas.tests.series.methods.test_align + • pandas.tests.series.methods.test_argsort + • pandas.tests.series.methods.test_asof + • pandas.tests.series.methods.test_astype + • pandas.tests.series.methods.test_autocorr + • pandas.tests.series.methods.test_between + • pandas.tests.series.methods.test_case_when + • pandas.tests.series.methods.test_clip + • pandas.tests.series.methods.test_combine_first + • pandas.tests.series.methods.test_compare + • pandas.tests.series.methods.test_convert_dtypes + • pandas.tests.series.methods.test_copy + • pandas.tests.series.methods.test_count + • pandas.tests.series.methods.test_cov_corr + • pandas.tests.series.methods.test_describe + • pandas.tests.series.methods.test_diff + • pandas.tests.series.methods.test_drop_duplicates + • pandas.tests.series.methods.test_dropna + • pandas.tests.series.methods.test_dtypes + • pandas.tests.series.methods.test_duplicated + • pandas.tests.series.methods.test_equals + • pandas.tests.series.methods.test_explode + • pandas.tests.series.methods.test_fillna + • pandas.tests.series.methods.test_infer_objects + • pandas.tests.series.methods.test_info + • pandas.tests.series.methods.test_interpolate + • pandas.tests.series.methods.test_is_monotonic + • pandas.tests.series.methods.test_is_unique + • pandas.tests.series.methods.test_isin + • pandas.tests.series.methods.test_isna + • pandas.tests.series.methods.test_map + • pandas.tests.series.methods.test_matmul + • pandas.tests.series.methods.test_nlargest + • pandas.tests.series.methods.test_nunique + • pandas.tests.series.methods.test_pct_change + • pandas.tests.series.methods.test_quantile + • pandas.tests.series.methods.test_rank + • pandas.tests.series.methods.test_reindex + • pandas.tests.series.methods.test_reindex_like + • pandas.tests.series.methods.test_rename + • pandas.tests.series.methods.test_repeat + • pandas.tests.series.methods.test_replace + • pandas.tests.series.methods.test_reset_index + • pandas.tests.series.methods.test_round + • pandas.tests.series.methods.test_searchsorted + • pandas.tests.series.methods.test_sort_index + • pandas.tests.series.methods.test_sort_values + • pandas.tests.series.methods.test_to_csv + • pandas.tests.series.methods.test_to_dict + • pandas.tests.series.methods.test_to_numpy + • pandas.tests.series.methods.test_unique + • pandas.tests.series.methods.test_unstack + • pandas.tests.series.methods.test_update + • pandas.tests.series.methods.test_value_counts + • pandas.tests.series.methods.test_values + • pandas.tests.series.methods.test_view + • pandas.tests.series.test_api + • pandas.tests.series.test_arithmetic + • pandas.tests.series.test_constructors + • pandas.tests.series.test_cumulative + • pandas.tests.series.test_formats + • pandas.tests.series.test_logical_ops + • pandas.tests.series.test_missing + • pandas.tests.series.test_npfuncs + • pandas.tests.series.test_reductions + • pandas.tests.series.test_subclass + • pandas.tests.series.test_ufunc + • pandas.tests.strings + • pandas.tests.strings.test_api + • pandas.tests.strings.test_case_justify + • pandas.tests.strings.test_cat + • pandas.tests.strings.test_extract + • pandas.tests.strings.test_find_replace + • pandas.tests.strings.test_get_dummies + • pandas.tests.strings.test_split_partition + • pandas.tests.strings.test_string_array + • pandas.tests.strings.test_strings + • pandas.tests.test_aggregation + • pandas.tests.test_algos + • pandas.tests.test_common + • pandas.tests.test_downstream + • pandas.tests.test_expressions + • pandas.tests.test_multilevel + • pandas.tests.test_nanops + • pandas.tests.test_sorting + • pandas.tests.test_take + • pandas.tests.tools.test_to_datetime + • pandas.tests.tools.test_to_numeric + • pandas.tests.tools.test_to_time + • pandas.tests.tools.test_to_timedelta + • pandas.tests.tseries.frequencies.test_freq_code + • pandas.tests.tseries.frequencies.test_inference + • pandas.tests.tseries.offsets.test_business_day + • pandas.tests.tseries.offsets.test_custom_business_day + • pandas.tests.tseries.offsets.test_custom_business_hour + • pandas.tests.tseries.offsets.test_custom_business_month + • pandas.tests.tseries.offsets.test_offsets + • pandas.tests.tseries.offsets.test_ticks + • pandas.tests.tseries.offsets.test_year + • pandas.tests.tslibs.test_array_to_datetime + • pandas.tests.tslibs.test_ccalendar + • pandas.tests.tslibs.test_conversion + • pandas.tests.tslibs.test_fields + • pandas.tests.tslibs.test_np_datetime + • pandas.tests.tslibs.test_npy_units + • pandas.tests.tslibs.test_parsing + • pandas.tests.tslibs.test_period + • pandas.tests.tslibs.test_resolution + • pandas.tests.tslibs.test_strptime + • pandas.tests.tslibs.test_timedeltas + • pandas.tests.tslibs.test_tzconversion + • pandas.tests.util.test_assert_almost_equal + • pandas.tests.util.test_assert_extension_array_equal + • pandas.tests.util.test_assert_index_equal + • pandas.tests.util.test_assert_numpy_array_equal + • pandas.tests.util.test_assert_series_equal + • pandas.tests.util.test_hashing + • pandas.tests.util.test_util + • pandas.tests.util.test_validate_inclusive + • pandas.tests.window.conftest + • pandas.tests.window.moments.conftest + • pandas.tests.window.moments.test_moments_consistency_ewm + • pandas.tests.window.moments.test_moments_consistency_expanding + • pandas.tests.window.moments.test_moments_consistency_rolling + • pandas.tests.window.test_api + • pandas.tests.window.test_apply + • pandas.tests.window.test_base_indexer + • pandas.tests.window.test_cython_aggregations + • pandas.tests.window.test_dtypes + • pandas.tests.window.test_ewm + • pandas.tests.window.test_expanding + • pandas.tests.window.test_groupby + • pandas.tests.window.test_numba + • pandas.tests.window.test_online + • pandas.tests.window.test_pairwise + • pandas.tests.window.test_rolling + • pandas.tests.window.test_rolling_functions + • pandas.tests.window.test_rolling_quantile + • pandas.tests.window.test_rolling_skew_kurt + • pandas.tests.window.test_timeseries_window + • pandas.tests.window.test_win_type + • pandas.tseries.frequencies + • pandas.tseries.holiday + • pandas.util._doctools + • pandas.util._validators + +
+ +
+ +
+ + numpy.__config__ +SourceModule
+imports: + enum + • json + • numpy + • numpy._core._multiarray_umath + • warnings + • yaml + +
+
+imported by: + numpy + +
+ +
+ +
+ + numpy._core +Package
+imports: + copyreg + • numpy + • numpy._core + • numpy._core._add_newdocs + • numpy._core._add_newdocs_scalars + • numpy._core._asarray + • numpy._core._dtype + • numpy._core._dtype_ctypes + • numpy._core._exceptions + • numpy._core._internal + • numpy._core._machar + • numpy._core._methods + • numpy._core.add + • numpy._core.all + • numpy._core.amax + • numpy._core.amin + • numpy._core.arange + • numpy._core.arccos + • numpy._core.arccosh + • numpy._core.arcsin + • numpy._core.arcsinh + • numpy._core.arctan + • numpy._core.arctan2 + • numpy._core.arctanh + • numpy._core.argsort + • numpy._core.array + • numpy._core.array2string + • numpy._core.array_repr + • numpy._core.asanyarray + • numpy._core.asarray + • numpy._core.atleast_1d + • numpy._core.atleast_2d + • numpy._core.atleast_3d + • numpy._core.bitwise_and + • numpy._core.bitwise_count + • numpy._core.bitwise_or + • numpy._core.bitwise_xor + • numpy._core.bool_ + • numpy._core.byte + • numpy._core.bytes_ + • numpy._core.cbrt + • numpy._core.cdouble + • numpy._core.ceil + • numpy._core.character + • numpy._core.clongdouble + • numpy._core.complex64 + • numpy._core.complexfloating + • numpy._core.conj + • numpy._core.conjugate + • numpy._core.copysign + • numpy._core.cos + • numpy._core.cosh + • numpy._core.count_nonzero + • numpy._core.cross + • numpy._core.csingle + • numpy._core.datetime64 + • numpy._core.deg2rad + • numpy._core.degrees + • numpy._core.diagonal + • numpy._core.divide + • numpy._core.divmod + • numpy._core.dot + • numpy._core.double + • numpy._core.e + • numpy._core.einsumfunc + • numpy._core.empty + • numpy._core.empty_like + • numpy._core.equal + • numpy._core.errstate + • numpy._core.euler_gamma + • numpy._core.exp + • numpy._core.expm1 + • numpy._core.fabs + • numpy._core.finfo + • numpy._core.float16 + • numpy._core.float32 + • numpy._core.float_power + • numpy._core.floating + • numpy._core.floor + • numpy._core.floor_divide + • numpy._core.fmax + • numpy._core.fmin + • numpy._core.fmod + • numpy._core.frexp + • numpy._core.fromnumeric + • numpy._core.frompyfunc + • numpy._core.function_base + • numpy._core.gcd + • numpy._core.getlimits + • numpy._core.greater + • numpy._core.greater_equal + • numpy._core.half + • numpy._core.heaviside + • numpy._core.hstack + • numpy._core.hypot + • numpy._core.iinfo + • numpy._core.inexact + • numpy._core.inf + • numpy._core.int16 + • numpy._core.int32 + • numpy._core.int64 + • numpy._core.int8 + • numpy._core.intc + • numpy._core.integer + • numpy._core.intp + • numpy._core.isfinite + • numpy._core.isnan + • numpy._core.isnat + • numpy._core.isscalar + • numpy._core.lcm + • numpy._core.ldexp + • numpy._core.left_shift + • numpy._core.less + • numpy._core.less_equal + • numpy._core.linspace + • numpy._core.log + • numpy._core.log1p + • numpy._core.log2 + • numpy._core.logaddexp + • numpy._core.logaddexp2 + • numpy._core.logical_and + • numpy._core.logical_not + • numpy._core.logical_or + • numpy._core.logical_xor + • numpy._core.long + • numpy._core.longdouble + • numpy._core.matmul + • numpy._core.matrix_transpose + • numpy._core.max + • numpy._core.maximum + • numpy._core.memmap + • numpy._core.minimum + • numpy._core.mod + • numpy._core.modf + • numpy._core.moveaxis + • numpy._core.multiarray + • numpy._core.multiply + • numpy._core.ndarray + • numpy._core.negative + • numpy._core.newaxis + • numpy._core.not_equal + • numpy._core.number + • numpy._core.numeric + • numpy._core.numerictypes + • numpy._core.object_ + • numpy._core.ones + • numpy._core.outer + • numpy._core.overrides + • numpy._core.pi + • numpy._core.positive + • numpy._core.power + • numpy._core.prod + • numpy._core.rad2deg + • numpy._core.radians + • numpy._core.reciprocal + • numpy._core.records + • numpy._core.remainder + • numpy._core.result_type + • numpy._core.right_shift + • numpy._core.rint + • numpy._core.shape_base + • numpy._core.short + • numpy._core.sign + • numpy._core.signbit + • numpy._core.signedinteger + • numpy._core.single + • numpy._core.sinh + • numpy._core.sort + • numpy._core.spacing + • numpy._core.sqrt + • numpy._core.square + • numpy._core.str_ + • numpy._core.subtract + • numpy._core.sum + • numpy._core.swapaxes + • numpy._core.tan + • numpy._core.tanh + • numpy._core.tensordot + • numpy._core.timedelta64 + • numpy._core.trace + • numpy._core.transpose + • numpy._core.true_divide + • numpy._core.trunc + • numpy._core.ubyte + • numpy._core.uint + • numpy._core.uint16 + • numpy._core.uint32 + • numpy._core.uint64 + • numpy._core.uintc + • numpy._core.uintp + • numpy._core.ulong + • numpy._core.ulonglong + • numpy._core.umath + • numpy._core.unsignedinteger + • numpy._core.ushort + • numpy._core.vecdot + • numpy._core.void + • numpy._core.vstack + • numpy._core.zeros + • numpy._pytesttester + • numpy.version + • os + • sys + • warnings + +
+ + +
+ +
+ + numpy._core._add_newdocs +SourceModule +
+imported by: + numpy._core + +
+ +
+ +
+ + numpy._core._add_newdocs_scalars +SourceModule
+imports: + numpy._core + • numpy._core.function_base + • numpy._core.numerictypes + • os + • sys + +
+
+imported by: + numpy._core + +
+ +
+ +
+ + numpy._core._asarray +SourceModule +
+imported by: + numpy._core + • numpy._core.numeric + +
+ +
+ +
+ + numpy._core._dtype +SourceModule
+imports: + numpy + • numpy._core + +
+
+imported by: + numpy._core + • numpy._core.numerictypes + +
+ +
+ +
+ + numpy._core._dtype_ctypes +SourceModule
+imports: + _ctypes + • ctypes + • numpy + • numpy._core + +
+
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core._exceptions +SourceModule
+imports: + numpy._core + • numpy._utils + +
+
+imported by: + numpy._core + • numpy._core._methods + +
+ +
+ +
+ + numpy._core._internal +SourceModule
+imports: + ast + • ctypes + • numpy + • numpy._core + • numpy._core.multiarray + • numpy.exceptions + • re + • sys + • warnings + +
+
+imported by: + numpy._core + • numpy.ctypeslib + +
+ +
+ +
+ + numpy._core._machar +SourceModule +
+imported by: + numpy._core + • numpy._core.getlimits + +
+ +
+ + + +
+ + numpy._core._multiarray_tests /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_multiarray_tests.cpython-312-darwin.so
+imports: + numpy._core + +
+
+imported by: + numpy + +
+ +
+ +
+ + numpy._core._multiarray_umath /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/_core/_multiarray_umath.cpython-312-darwin.so
+imports: + numpy._core + +
+ + +
+ +
+ + numpy._core._string_helpers +SourceModule
+imports: + numpy._core + +
+
+imported by: + numpy._core.numerictypes + +
+ +
+ +
+ + numpy._core._type_aliases +SourceModule
+imports: + numpy._core + • numpy._core.multiarray + +
+
+imported by: + numpy._core.numerictypes + +
+ +
+ +
+ + numpy._core._ufunc_config +SourceModule
+imports: + collections.abc + • contextlib + • contextvars + • functools + • numpy._core + • numpy._core.umath + • numpy._utils + +
+ + +
+ +
+ + numpy._core.add +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.all +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy._core.amax +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.amin +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.arange +MissingModule
+imported by: + numpy + • numpy._core + • numpy.fft._helper + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy._core.arccos +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.arccosh +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.arcsin +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.arcsinh +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.arctan +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.arctan2 +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.arctanh +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.argsort +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.array +MissingModule + +
+ +
+ + numpy._core.array2string +MissingModule
+imported by: + numpy + • numpy._core + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy._core.array_repr +MissingModule
+imported by: + numpy + • numpy._core + • numpy.testing._private.utils + +
+ +
+ + + +
+ + numpy._core.asanyarray +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.asarray +MissingModule + +
+ +
+ + numpy._core.atleast_1d +MissingModule
+imported by: + numpy + • numpy._core + • numpy.lib._polynomial_impl + +
+ +
+ +
+ + numpy._core.atleast_2d +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.atleast_3d +MissingModule
+imported by: + numpy + • numpy._core + • numpy.lib._shape_base_impl + +
+ +
+ +
+ + numpy._core.bitwise_and +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.bitwise_count +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.bitwise_or +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.bitwise_xor +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.bool_ +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.byte +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.bytes_ +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.cbrt +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.cdouble +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.ceil +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.character +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.clongdouble +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.complex64 +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.complexfloating +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.conj +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.conjugate +MissingModule
+imported by: + numpy + • numpy._core + • numpy.fft._pocketfft + +
+ +
+ +
+ + numpy._core.copysign +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.cos +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.cosh +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.count_nonzero +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.cross +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.csingle +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.datetime64 +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ + + +
+ + numpy._core.deg2rad +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.degrees +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.diagonal +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.divide +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.divmod +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.dot +MissingModule
+imported by: + numpy + • numpy._core + • numpy.lib._polynomial_impl + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.double +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.e +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.einsumfunc +SourceModule +
+imported by: + numpy._core + +
+ +
+ +
+ + numpy._core.empty +MissingModule + +
+ +
+ + numpy._core.empty_like +MissingModule
+imported by: + numpy + • numpy._core + • numpy.fft._pocketfft + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.equal +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.errstate +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy._core.euler_gamma +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.exp +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.expm1 +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.fabs +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.finfo +MissingModule
+imported by: + numpy + • numpy._core + • numpy.lib._polynomial_impl + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.float16 +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.float32 +MissingModule
+imported by: + numpy + • numpy._core + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy._core.float_power +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.floating +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.floor +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.floor_divide +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.fmax +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.fmin +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.fmod +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.frexp +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ + + +
+ + numpy._core.frompyfunc +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ + + +
+ + numpy._core.gcd +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.getlimits +SourceModule +
+imported by: + numpy._core + • numpy.lib._type_check_impl + +
+ +
+ +
+ + numpy._core.greater +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.greater_equal +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.half +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.heaviside +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.hstack +MissingModule
+imported by: + numpy + • numpy._core + • numpy.lib._polynomial_impl + +
+ +
+ +
+ + numpy._core.hypot +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.iinfo +MissingModule
+imported by: + numpy + • numpy._core + • numpy.lib._twodim_base_impl + +
+ +
+ +
+ + numpy._core.inexact +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.inf +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy._core.int16 +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.int32 +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.int64 +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.int8 +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.intc +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.integer +MissingModule
+imported by: + numpy + • numpy._core + • numpy.fft._helper + +
+ +
+ +
+ + numpy._core.intp +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy._core.isfinite +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.isnan +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy._core.isnat +MissingModule
+imported by: + numpy + • numpy._core + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy._core.isscalar +MissingModule + +
+ +
+ + numpy._core.lcm +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.ldexp +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.left_shift +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.less +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.less_equal +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.linspace +MissingModule
+imported by: + numpy + • numpy._core + • numpy.lib._index_tricks_impl + +
+ +
+ +
+ + numpy._core.log +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.log1p +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.log2 +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.logaddexp +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.logaddexp2 +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.logical_and +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.logical_not +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.logical_or +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.logical_xor +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.long +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.longdouble +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.matmul +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.matrix_transpose +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.max +MissingModule
+imported by: + numpy + • numpy._core + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy._core.maximum +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.memmap +SourceModule
+imports: + contextlib + • mmap + • numpy + • numpy._core + • numpy._core.numeric + • numpy._utils + • operator + • os.path + +
+
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.minimum +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.mod +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.modf +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.moveaxis +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ + + +
+ + numpy._core.multiply +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.ndarray +MissingModule + +
+ +
+ + numpy._core.negative +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.newaxis +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.not_equal +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.number +MissingModule
+imported by: + numpy + • numpy._core + • numpy.testing._private.utils + +
+ +
+ + + + + +
+ + numpy._core.object_ +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy._core.ones +MissingModule
+imported by: + numpy + • numpy._core + • numpy.lib._polynomial_impl + +
+ +
+ +
+ + numpy._core.outer +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ + + +
+ + numpy._core.pi +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.positive +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.power +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.prod +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.rad2deg +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.radians +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.reciprocal +MissingModule
+imported by: + numpy + • numpy._core + • numpy.fft._pocketfft + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.records +SourceModule +
+imported by: + numpy._core + • numpy.lib.recfunctions + • numpy.ma.mrecords + • numpy.rec + +
+ +
+ +
+ + numpy._core.remainder +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.result_type +MissingModule
+imported by: + numpy + • numpy._core + • numpy.fft._pocketfft + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy._core.right_shift +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.rint +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ + + +
+ + numpy._core.short +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.sign +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.signbit +MissingModule
+imported by: + numpy + • numpy._core + • numpy.testing._private.utils + +
+ +
+ +
+ + numpy._core.signedinteger +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.single +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.sinh +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.sort +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.spacing +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.sqrt +MissingModule
+imported by: + numpy + • numpy._core + • numpy.fft._pocketfft + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.square +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.str_ +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.strings +SourceModule
+imports: + numpy + • numpy._core + • numpy._core.multiarray + • numpy._core.umath + • sys + +
+
+imported by: + numpy._core.defchararray + • numpy.strings + +
+ +
+ +
+ + numpy._core.subtract +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.sum +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.swapaxes +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.tan +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.tanh +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.tensordot +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.timedelta64 +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.trace +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.transpose +MissingModule + +
+ +
+ + numpy._core.true_divide +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.trunc +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.ubyte +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.uint +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.uint16 +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.uint32 +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.uint64 +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.uintc +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.uintp +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.ulong +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.ulonglong +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ + + +
+ + numpy._core.unsignedinteger +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.ushort +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.vecdot +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._core.void +MissingModule
+imported by: + numpy + • numpy._core + +
+ +
+ +
+ + numpy._core.vstack +MissingModule
+imported by: + numpy + • numpy._core + • numpy.lib._shape_base_impl + +
+ +
+ +
+ + numpy._core.zeros +MissingModule
+imported by: + numpy + • numpy._core + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._distributor_init +SourceModule
+imports: + numpy + • numpy._distributor_init_local + +
+
+imported by: + numpy + +
+ +
+ +
+ + numpy._distributor_init_local +MissingModule
+imported by: + numpy + • numpy._distributor_init + +
+ +
+ +
+ + numpy._expired_attrs_2_0 +SourceModule
+imports: + numpy + +
+
+imported by: + numpy + +
+ +
+ +
+ + numpy._globals +SourceModule
+imports: + enum + • numpy + • numpy._utils + +
+
+imported by: + numpy + • numpy._core._methods + • numpy.linalg._linalg + +
+ +
+ +
+ + numpy._pytesttester +SourceModule
+imports: + numpy + • numpy.testing + • os + • sys + • warnings + +
+
+imported by: + numpy + • numpy._core + • numpy.f2py + • numpy.fft + • numpy.lib + • numpy.linalg + • numpy.ma + • numpy.matrixlib + • numpy.polynomial + • numpy.random + • numpy.testing + • numpy.typing + +
+ +
+ + + +
+ + numpy._typing._add_docstring +SourceModule
+imports: + numpy._typing + • numpy._typing._array_like + • re + • textwrap + +
+
+imported by: + numpy.typing + +
+ +
+ +
+ + numpy._typing._array_like +SourceModule
+imports: + __future__ + • collections.abc + • numpy + • numpy._typing + • numpy._typing._nested_sequence + • sys + • typing + +
+
+imported by: + numpy._typing + • numpy._typing._add_docstring + +
+ +
+ +
+ + numpy._typing._char_codes +SourceModule
+imports: + numpy._typing + • typing + +
+
+imported by: + numpy._typing + • numpy._typing._dtype_like + +
+ +
+ +
+ + numpy._typing._dtype_like +SourceModule +
+imported by: + numpy._typing + +
+ +
+ +
+ + numpy._typing._nbit +SourceModule
+imports: + numpy._typing + • typing + +
+
+imported by: + numpy._typing + +
+ +
+ +
+ + numpy._typing._nested_sequence +SourceModule
+imports: + __future__ + • collections.abc + • numpy._typing + • typing + +
+
+imported by: + numpy._typing + • numpy._typing._array_like + +
+ +
+ +
+ + numpy._typing._scalars +SourceModule
+imports: + numpy + • numpy._typing + • typing + +
+
+imported by: + numpy._typing + +
+ +
+ +
+ + numpy._typing._shape +SourceModule
+imports: + collections.abc + • numpy._typing + • typing + +
+
+imported by: + numpy._typing + • numpy._typing._dtype_like + +
+ +
+ +
+ + numpy._typing._ufunc +MissingModule
+imported by: + numpy._typing + +
+ +
+ + + +
+ + numpy._utils._convertions +SourceModule
+imports: + numpy._utils + +
+
+imported by: + numpy._utils + +
+ +
+ +
+ + numpy._utils._inspect +SourceModule
+imports: + numpy._utils + • types + +
+
+imported by: + numpy._core.overrides + • numpy.ma.core + +
+ +
+ +
+ + numpy.char +Package
+imports: + numpy + • numpy._core.defchararray + +
+
+imported by: + numpy + +
+ +
+ +
+ + numpy.core +Package
+imports: + numpy + • numpy._core + • numpy.core._utils + +
+
+imported by: + numpy + • numpy.core._utils + +
+ +
+ +
+ + numpy.core._utils +SourceModule
+imports: + numpy.core + • warnings + +
+
+imported by: + numpy.core + +
+ +
+ +
+ + numpy.ctypeslib +SourceModule
+imports: + ctypes + • numpy + • numpy._core._internal + • numpy._core.multiarray + • os + • sys + • sysconfig + +
+
+imported by: + numpy + +
+ +
+ +
+ + numpy.dtypes +SourceModule
+imports: + numpy + • numpy.dtypes + +
+ + +
+ + + + + + + + + +
+ + numpy.f2py._backends._backend +SourceModule
+imports: + __future__ + • abc + • numpy.f2py._backends + +
+ + +
+ +
+ + numpy.f2py._backends._distutils +SourceModule
+imports: + numpy.exceptions + • numpy.f2py._backends + • numpy.f2py._backends._backend + • os + • shutil + • sys + • warnings + +
+
+imported by: + numpy.f2py._backends + +
+ +
+ +
+ + numpy.f2py._backends._meson +SourceModule
+imports: + __future__ + • errno + • itertools + • numpy.f2py._backends + • numpy.f2py._backends._backend + • os + • pathlib + • re + • shutil + • string + • subprocess + • sys + • warnings + +
+
+imported by: + numpy.f2py._backends + +
+ +
+ +
+ + numpy.f2py._isocbind +SourceModule
+imports: + numpy.f2py + +
+
+imported by: + numpy.f2py.capi_maps + • numpy.f2py.func2subr + +
+ +
+ + + + + +
+ + numpy.f2py.cb_rules +SourceModule +
+imported by: + numpy.f2py + • numpy.f2py.capi_maps + • numpy.f2py.f2py2e + +
+ +
+ +
+ + numpy.f2py.cfuncs +SourceModule
+imports: + copy + • numpy.f2py + • numpy.f2py.__version__ + • numpy.f2py.capi_maps + • sys + +
+ + +
+ + + +
+ + numpy.f2py.crackfortran +SourceModule
+imports: + charset_normalizer + • codecs + • copy + • fileinput + • numpy.f2py + • numpy.f2py.__version__ + • numpy.f2py.auxfuncs + • numpy.f2py.symbolic + • os + • pathlib + • platform + • re + • string + • sys + +
+ + +
+ +
+ + numpy.f2py.diagnose +SourceModule +
+imported by: + numpy.f2py + +
+ +
+ +
+ + numpy.f2py.f2py2e +SourceModule +
+imported by: + numpy.f2py + • numpy.f2py.diagnose + +
+ +
+ + + +
+ + numpy.f2py.func2subr +SourceModule
+imports: + copy + • numpy.f2py + • numpy.f2py._isocbind + • numpy.f2py.auxfuncs + +
+ + +
+ + + +
+ + numpy.f2py.symbolic +SourceModule
+imports: + enum + • math + • numpy.f2py + • re + • warnings + +
+
+imported by: + numpy.f2py + • numpy.f2py.crackfortran + +
+ +
+ +
+ + numpy.f2py.use_rules +SourceModule
+imports: + numpy.f2py + • numpy.f2py.auxfuncs + +
+
+imported by: + numpy.f2py + • numpy.f2py.rules + +
+ +
+ + + +
+ + numpy.fft._helper +SourceModule +
+imported by: + numpy.fft + • numpy.fft.helper + +
+ +
+ + + +
+ + numpy.fft._pocketfft_umath /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/fft/_pocketfft_umath.cpython-312-darwin.so
+imports: + numpy.fft + +
+
+imported by: + numpy.fft + • numpy.fft._pocketfft + +
+ +
+ +
+ + numpy.fft.helper +SourceModule
+imports: + numpy.fft + • numpy.fft._helper + • warnings + +
+
+imported by: + numpy.fft + +
+ +
+ +
+ + numpy.lib +Package + + +
+ +
+ + numpy.lib._array_utils_impl +SourceModule +
+imported by: + numpy.lib.array_utils + +
+ +
+ +
+ + numpy.lib._arraypad_impl +SourceModule +
+imported by: + numpy + • numpy.lib + +
+ +
+ +
+ + numpy.lib._arraysetops_impl +SourceModule
+imports: + functools + • numpy + • numpy._core + • numpy._core._multiarray_umath + • numpy._core.overrides + • numpy.lib + • typing + • warnings + +
+
+imported by: + numpy + • numpy.lib + +
+ +
+ +
+ + numpy.lib._arrayterator_impl +SourceModule
+imports: + functools + • numpy.lib + • operator + +
+
+imported by: + numpy.lib + +
+ +
+ +
+ + numpy.lib._datasource +SourceModule
+imports: + bz2 + • gzip + • lzma + • numpy._utils + • numpy.lib + • os + • shutil + • tempfile + • urllib.error + • urllib.parse + • urllib.request + +
+
+imported by: + numpy.lib._npyio_impl + +
+ +
+ + + +
+ + numpy.lib._histograms_impl +SourceModule
+imports: + contextlib + • functools + • numpy + • numpy._core + • numpy._core.overrides + • numpy.lib + • operator + • warnings + +
+
+imported by: + numpy + • numpy.lib + • numpy.lib._function_base_impl + +
+ +
+ + + +
+ + numpy.lib._iotools +SourceModule
+imports: + numpy + • numpy._core.numeric + • numpy._utils + • numpy.lib + +
+
+imported by: + numpy.lib._npyio_impl + • numpy.lib.recfunctions + +
+ +
+ +
+ + numpy.lib._nanfunctions_impl +SourceModule +
+imported by: + numpy + • numpy.lib + +
+ +
+ +
+ + numpy.lib._npyio_impl +SourceModule +
+imported by: + numpy + • numpy.lib + • numpy.lib.npyio + +
+ +
+ + + + + + + +
+ + numpy.lib._stride_tricks_impl +SourceModule
+imports: + numpy + • numpy._core.numeric + • numpy._core.overrides + • numpy.lib + +
+ + +
+ + + + + +
+ + numpy.lib._ufunclike_impl +SourceModule
+imports: + functools + • numpy._core.numeric + • numpy._core.overrides + • numpy.lib + • warnings + +
+
+imported by: + numpy + • numpy.lib + • numpy.lib._type_check_impl + +
+ +
+ +
+ + numpy.lib._utils_impl +SourceModule
+imports: + ast + • functools + • inspect + • numpy + • numpy._core + • numpy._core._multiarray_umath + • numpy._core.ndarray + • numpy._utils + • numpy.lib + • os + • platform + • pprint + • pydoc + • re + • sys + • textwrap + • threadpoolctl + • types + • warnings + +
+
+imported by: + numpy + • numpy.lib + • numpy.lib.format + +
+ +
+ +
+ + numpy.lib._version +SourceModule
+imports: + numpy.lib + • re + +
+
+imported by: + numpy.lib + +
+ +
+ + + +
+ + numpy.lib.format +SourceModule
+imports: + ast + • io + • numpy + • numpy.lib + • numpy.lib._utils_impl + • os + • pickle + • struct + • tokenize + • warnings + +
+
+imported by: + numpy.lib + • numpy.lib._npyio_impl + +
+ +
+ +
+ + numpy.lib.introspect +SourceModule
+imports: + numpy._core._multiarray_umath + • numpy.lib + • re + +
+
+imported by: + numpy.lib + +
+ +
+ +
+ + numpy.lib.mixins +SourceModule
+imports: + numpy._core + • numpy._core.umath + • numpy.lib + +
+
+imported by: + numpy.lib + +
+ +
+ +
+ + numpy.lib.npyio +SourceModule
+imports: + numpy.lib + • numpy.lib._npyio_impl + +
+
+imported by: + numpy.lib + +
+ +
+ +
+ + numpy.lib.recfunctions +SourceModule +
+imported by: + numpy.lib + • numpy.testing.overrides + +
+ +
+ +
+ + numpy.lib.scimath +SourceModule
+imports: + numpy.lib + • numpy.lib._scimath_impl + +
+
+imported by: + numpy + • numpy.lib + +
+ +
+ +
+ + numpy.lib.stride_tricks +SourceModule +
+imported by: + numpy.lib + • numpy.lib._index_tricks_impl + +
+ +
+ + + +
+ + numpy.linalg._linalg +SourceModule
+imports: + functools + • numpy + • numpy._core + • numpy._core.add + • numpy._core.all + • numpy._core.amax + • numpy._core.amin + • numpy._core.argsort + • numpy._core.array + • numpy._core.asanyarray + • numpy._core.asarray + • numpy._core.atleast_2d + • numpy._core.cdouble + • numpy._core.complexfloating + • numpy._core.count_nonzero + • numpy._core.cross + • numpy._core.csingle + • numpy._core.diagonal + • numpy._core.divide + • numpy._core.dot + • numpy._core.double + • numpy._core.empty + • numpy._core.empty_like + • numpy._core.errstate + • numpy._core.finfo + • numpy._core.inexact + • numpy._core.inf + • numpy._core.intc + • numpy._core.intp + • numpy._core.isfinite + • numpy._core.isnan + • numpy._core.matmul + • numpy._core.matrix_transpose + • numpy._core.moveaxis + • numpy._core.multiply + • numpy._core.newaxis + • numpy._core.object_ + • numpy._core.outer + • numpy._core.overrides + • numpy._core.prod + • numpy._core.reciprocal + • numpy._core.sign + • numpy._core.single + • numpy._core.sort + • numpy._core.sqrt + • numpy._core.sum + • numpy._core.swapaxes + • numpy._core.tensordot + • numpy._core.trace + • numpy._core.transpose + • numpy._core.vecdot + • numpy._core.zeros + • numpy._globals + • numpy._typing + • numpy._utils + • numpy.lib._twodim_base_impl + • numpy.lib.array_utils + • numpy.linalg + • numpy.linalg._umath_linalg + • operator + • typing + • warnings + +
+
+imported by: + numpy.linalg + • numpy.linalg.linalg + +
+ +
+ +
+ + numpy.linalg._umath_linalg /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/linalg/_umath_linalg.cpython-312-darwin.so
+imports: + numpy.linalg + +
+ + +
+ +
+ + numpy.linalg.linalg +SourceModule
+imports: + numpy.linalg + • numpy.linalg._linalg + • warnings + +
+
+imported by: + numpy.linalg + +
+ +
+ + + +
+ + numpy.ma.core +SourceModule
+imports: + builtins + • copy + • functools + • inspect + • numpy + • numpy._core + • numpy._core.multiarray + • numpy._core.numeric + • numpy._core.numerictypes + • numpy._core.umath + • numpy._utils + • numpy._utils._inspect + • numpy.ma + • operator + • re + • textwrap + • typing + • warnings + +
+
+imported by: + numpy.ma + • numpy.ma.extras + +
+ +
+ +
+ + numpy.ma.extras +SourceModule +
+imported by: + numpy.ma + +
+ +
+ +
+ + numpy.ma.mrecords +SourceModule
+imports: + numpy + • numpy._core.records + • numpy.ma + • warnings + +
+ + +
+ +
+ + numpy.matlib +SourceModule
+imports: + numpy + • numpy.matrixlib.defmatrix + • warnings + +
+
+imported by: + numpy + +
+ +
+ + + +
+ + numpy.matrixlib.defmatrix +SourceModule
+imports: + ast + • numpy._core.numeric + • numpy._utils + • numpy.linalg + • numpy.matrixlib + • sys + • warnings + +
+
+imported by: + numpy.lib._shape_base_impl + • numpy.matlib + • numpy.matrixlib + +
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ + numpy.random._bounded_integers /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_bounded_integers.cpython-312-darwin.so
+imports: + numpy.random + +
+
+imported by: + numpy.random + +
+ +
+ +
+ + numpy.random._common /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_common.cpython-312-darwin.so
+imports: + numpy.random + +
+
+imported by: + numpy.random + +
+ +
+ +
+ + numpy.random._generator /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_generator.cpython-312-darwin.so
+imports: + collections.abc + • numpy + • numpy._typing + • numpy.random + • typing + +
+
+imported by: + numpy.random + • numpy.random._pickle + +
+ +
+ +
+ + numpy.random._mt19937 /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_mt19937.cpython-312-darwin.so
+imports: + numpy + • numpy._typing + • numpy.random + • numpy.random.bit_generator + • numpy.typing + • typing + +
+
+imported by: + numpy.random + • numpy.random._pickle + +
+ +
+ +
+ + numpy.random._pcg64 /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_pcg64.cpython-312-darwin.so
+imports: + numpy._typing + • numpy.random + • numpy.random.bit_generator + • typing + +
+
+imported by: + numpy.random + • numpy.random._pickle + +
+ +
+ +
+ + numpy.random._philox /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_philox.cpython-312-darwin.so
+imports: + numpy + • numpy._typing + • numpy.random + • numpy.random.bit_generator + • numpy.typing + • typing + +
+
+imported by: + numpy.random + • numpy.random._pickle + +
+ +
+ + + +
+ + numpy.random._sfc64 /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/_sfc64.cpython-312-darwin.so
+imports: + numpy + • numpy._typing + • numpy.random + • numpy.random.bit_generator + • typing + +
+
+imported by: + numpy.random + • numpy.random._pickle + +
+ +
+ +
+ + numpy.random.bit_generator /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/bit_generator.cpython-312-darwin.so
+imports: + abc + • collections.abc + • numpy + • numpy._typing + • numpy.random + • threading + • typing + +
+ + +
+ +
+ + numpy.random.mtrand /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/numpy/random/mtrand.cpython-312-darwin.so
+imports: + builtins + • collections.abc + • numpy + • numpy._typing + • numpy.random + • numpy.random.bit_generator + • typing + +
+
+imported by: + numpy.random + • numpy.random._pickle + +
+ +
+ +
+ + numpy.rec +Package
+imports: + numpy + • numpy._core.records + +
+
+imported by: + numexpr.tests.test_numexpr + • numpy + +
+ +
+ +
+ + numpy.strings +Package
+imports: + numpy + • numpy._core.strings + +
+
+imported by: + numpy + • numpy._core.defchararray + +
+ +
+ + + + + +
+ + numpy.testing._private.extbuild +SourceModule
+imports: + importlib.util + • numpy.testing._private + • os + • pathlib + • subprocess + • sys + • sysconfig + • textwrap + +
+
+imported by: + numpy.testing + • numpy.testing._private + +
+ +
+ + + +
+ + numpy.testing.overrides +SourceModule +
+imported by: + numpy.testing + +
+ +
+ + + +
+ + numpy.version +SourceModule
+imports: + numpy + +
+
+imported by: + numpy + • numpy._core + • numpy.f2py.__version__ + +
+ +
+ +
+ + numpy_distutils +MissingModule
+imported by: + numpy.f2py.diagnose + +
+ +
+ +
+ + odf +MissingModule
+imported by: + pandas.io.excel._odfreader + +
+ +
+ +
+ + olefile +Package
+imports: + olefile.olefile + +
+
+imported by: + PIL.FpxImagePlugin + • PIL.MicImagePlugin + • olefile.olefile + +
+ +
+ +
+ + olefile.olefile +SourceModule
+imports: + __future__ + • array + • datetime + • io + • logging + • olefile + • optparse + • os.path + • struct + • sys + • traceback + • warnings + +
+
+imported by: + olefile + +
+ +
+ +
+ + opcode +SourceModule
+imports: + _opcode + +
+
+imported by: + dis + +
+ +
+ + + +
+ + openpyxl._constants +SourceModule
+imports: + openpyxl + +
+
+imported by: + entry.py + • openpyxl + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + openpyxl.chart.picture +SourceModule +
+imported by: + entry.py + • openpyxl.chart.marker + +
+ +
+ + + + + + + + + + + +
+ + openpyxl.chart.reader +SourceModule
+imports: + openpyxl.chart + +
+
+imported by: + entry.py + • openpyxl.reader.drawings + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + openpyxl.comments.comments +SourceModule
+imports: + openpyxl.comments + +
+ + +
+ +
+ + openpyxl.comments.shape_writer +SourceModule +
+imported by: + entry.py + • openpyxl.comments.comment_sheet + +
+ +
+ + + +
+ + openpyxl.compat.abc +SourceModule
+imports: + abc + • openpyxl.compat + +
+
+imported by: + entry.py + • openpyxl.packaging.interface + +
+ +
+ +
+ + openpyxl.compat.numbers +SourceModule
+imports: + decimal + • numpy + • openpyxl.compat + +
+
+imported by: + entry.py + • openpyxl + • openpyxl.compat + • openpyxl.compat.strings + +
+ +
+ +
+ + openpyxl.compat.product +SourceModule
+imports: + functools + • math + • openpyxl.compat + • operator + +
+
+imported by: + entry.py + • openpyxl.utils.dataframe + +
+ +
+ +
+ + openpyxl.compat.singleton +SourceModule
+imports: + openpyxl.compat + • weakref + +
+
+imported by: + entry.py + +
+ +
+ +
+ + openpyxl.compat.strings +SourceModule
+imports: + datetime + • math + • openpyxl.compat + • openpyxl.compat.numbers + • sys + +
+
+imported by: + entry.py + • openpyxl.compat + +
+ +
+ +
+ + openpyxl.descriptors +Package +
+imported by: + entry.py + • openpyxl.cell.rich_text + • openpyxl.cell.text + • openpyxl.chart._3d + • openpyxl.chart._chart + • openpyxl.chart.area_chart + • openpyxl.chart.axis + • openpyxl.chart.bar_chart + • openpyxl.chart.bubble_chart + • openpyxl.chart.chartspace + • openpyxl.chart.data_source + • openpyxl.chart.descriptors + • openpyxl.chart.error_bar + • openpyxl.chart.label + • openpyxl.chart.layout + • openpyxl.chart.legend + • openpyxl.chart.line_chart + • openpyxl.chart.marker + • openpyxl.chart.pie_chart + • openpyxl.chart.pivot + • openpyxl.chart.plotarea + • openpyxl.chart.print_settings + • openpyxl.chart.radar_chart + • openpyxl.chart.reference + • openpyxl.chart.scatter_chart + • openpyxl.chart.series + • openpyxl.chart.shapes + • openpyxl.chart.stock_chart + • openpyxl.chart.surface_chart + • openpyxl.chart.text + • openpyxl.chart.title + • openpyxl.chart.trendline + • openpyxl.chart.updown_bars + • openpyxl.chartsheet.chartsheet + • openpyxl.chartsheet.custom + • openpyxl.chartsheet.properties + • openpyxl.chartsheet.protection + • openpyxl.chartsheet.publish + • openpyxl.chartsheet.relation + • openpyxl.chartsheet.views + • openpyxl.comments.author + • openpyxl.comments.comment_sheet + • openpyxl.descriptors + • openpyxl.descriptors.base + • openpyxl.descriptors.container + • openpyxl.descriptors.excel + • openpyxl.descriptors.namespace + • openpyxl.descriptors.nested + • openpyxl.descriptors.sequence + • openpyxl.descriptors.serialisable + • openpyxl.descriptors.slots + • openpyxl.drawing.colors + • openpyxl.drawing.connector + • openpyxl.drawing.effect + • openpyxl.drawing.fill + • openpyxl.drawing.geometry + • openpyxl.drawing.graphic + • openpyxl.drawing.line + • openpyxl.drawing.picture + • openpyxl.drawing.properties + • openpyxl.drawing.spreadsheet_drawing + • openpyxl.drawing.text + • openpyxl.formatting.formatting + • openpyxl.formatting.rule + • openpyxl.packaging.core + • openpyxl.packaging.custom + • openpyxl.packaging.extended + • openpyxl.packaging.manifest + • openpyxl.packaging.relationship + • openpyxl.packaging.workbook + • openpyxl.pivot.cache + • openpyxl.pivot.fields + • openpyxl.pivot.record + • openpyxl.pivot.table + • openpyxl.styles.alignment + • openpyxl.styles.borders + • openpyxl.styles.cell_style + • openpyxl.styles.colors + • openpyxl.styles.differential + • openpyxl.styles.fills + • openpyxl.styles.fonts + • openpyxl.styles.named_styles + • openpyxl.styles.numbers + • openpyxl.styles.protection + • openpyxl.styles.stylesheet + • openpyxl.styles.table + • openpyxl.workbook.defined_name + • openpyxl.workbook.external_link.external + • openpyxl.workbook.external_reference + • openpyxl.workbook.function_group + • openpyxl.workbook.properties + • openpyxl.workbook.protection + • openpyxl.workbook.smart_tags + • openpyxl.workbook.views + • openpyxl.workbook.web + • openpyxl.worksheet.cell_range + • openpyxl.worksheet.cell_watch + • openpyxl.worksheet.controls + • openpyxl.worksheet.custom + • openpyxl.worksheet.datavalidation + • openpyxl.worksheet.dimensions + • openpyxl.worksheet.errors + • openpyxl.worksheet.filters + • openpyxl.worksheet.header_footer + • openpyxl.worksheet.hyperlink + • openpyxl.worksheet.merge + • openpyxl.worksheet.ole + • openpyxl.worksheet.page + • openpyxl.worksheet.pagebreak + • openpyxl.worksheet.print_settings + • openpyxl.worksheet.properties + • openpyxl.worksheet.protection + • openpyxl.worksheet.scenario + • openpyxl.worksheet.smart_tag + • openpyxl.worksheet.table + • openpyxl.worksheet.views + +
+ +
+ + + +
+ + openpyxl.descriptors.container +SourceModule +
+imported by: + entry.py + • openpyxl.packaging.relationship + +
+ +
+ +
+ + openpyxl.descriptors.excel +SourceModule +
+imported by: + entry.py + • openpyxl.chart._3d + • openpyxl.chart.area_chart + • openpyxl.chart.axis + • openpyxl.chart.bar_chart + • openpyxl.chart.bubble_chart + • openpyxl.chart.chartspace + • openpyxl.chart.data_source + • openpyxl.chart.error_bar + • openpyxl.chart.label + • openpyxl.chart.layout + • openpyxl.chart.legend + • openpyxl.chart.line_chart + • openpyxl.chart.marker + • openpyxl.chart.pie_chart + • openpyxl.chart.pivot + • openpyxl.chart.plotarea + • openpyxl.chart.radar_chart + • openpyxl.chart.scatter_chart + • openpyxl.chart.series + • openpyxl.chart.stock_chart + • openpyxl.chart.surface_chart + • openpyxl.chart.title + • openpyxl.chart.trendline + • openpyxl.chart.updown_bars + • openpyxl.chartsheet.chartsheet + • openpyxl.chartsheet.custom + • openpyxl.chartsheet.protection + • openpyxl.chartsheet.relation + • openpyxl.chartsheet.views + • openpyxl.comments.comment_sheet + • openpyxl.drawing.colors + • openpyxl.drawing.connector + • openpyxl.drawing.fill + • openpyxl.drawing.geometry + • openpyxl.drawing.graphic + • openpyxl.drawing.line + • openpyxl.drawing.picture + • openpyxl.drawing.properties + • openpyxl.drawing.relation + • openpyxl.drawing.spreadsheet_drawing + • openpyxl.drawing.text + • openpyxl.formatting.rule + • openpyxl.packaging.workbook + • openpyxl.pivot.cache + • openpyxl.pivot.fields + • openpyxl.pivot.record + • openpyxl.pivot.table + • openpyxl.styles.cell_style + • openpyxl.styles.named_styles + • openpyxl.styles.stylesheet + • openpyxl.workbook.external_link.external + • openpyxl.workbook.external_reference + • openpyxl.workbook.properties + • openpyxl.workbook.protection + • openpyxl.workbook.views + • openpyxl.worksheet._reader + • openpyxl.worksheet.controls + • openpyxl.worksheet.drawing + • openpyxl.worksheet.errors + • openpyxl.worksheet.filters + • openpyxl.worksheet.hyperlink + • openpyxl.worksheet.page + • openpyxl.worksheet.protection + • openpyxl.worksheet.related + • openpyxl.worksheet.table + • openpyxl.worksheet.views + +
+ +
+ + + + + + + +
+ + openpyxl.descriptors.serialisable +SourceModule +
+imported by: + entry.py + • openpyxl.cell.text + • openpyxl.chart._3d + • openpyxl.chart._chart + • openpyxl.chart.area_chart + • openpyxl.chart.axis + • openpyxl.chart.bar_chart + • openpyxl.chart.bubble_chart + • openpyxl.chart.chartspace + • openpyxl.chart.data_source + • openpyxl.chart.error_bar + • openpyxl.chart.label + • openpyxl.chart.layout + • openpyxl.chart.legend + • openpyxl.chart.marker + • openpyxl.chart.picture + • openpyxl.chart.pie_chart + • openpyxl.chart.pivot + • openpyxl.chart.plotarea + • openpyxl.chart.print_settings + • openpyxl.chart.radar_chart + • openpyxl.chart.reference + • openpyxl.chart.scatter_chart + • openpyxl.chart.series + • openpyxl.chart.shapes + • openpyxl.chart.stock_chart + • openpyxl.chart.surface_chart + • openpyxl.chart.text + • openpyxl.chart.title + • openpyxl.chart.trendline + • openpyxl.chart.updown_bars + • openpyxl.chartsheet.chartsheet + • openpyxl.chartsheet.custom + • openpyxl.chartsheet.properties + • openpyxl.chartsheet.protection + • openpyxl.chartsheet.publish + • openpyxl.chartsheet.relation + • openpyxl.chartsheet.views + • openpyxl.comments.author + • openpyxl.comments.comment_sheet + • openpyxl.descriptors.excel + • openpyxl.drawing.colors + • openpyxl.drawing.connector + • openpyxl.drawing.effect + • openpyxl.drawing.fill + • openpyxl.drawing.geometry + • openpyxl.drawing.graphic + • openpyxl.drawing.line + • openpyxl.drawing.picture + • openpyxl.drawing.properties + • openpyxl.drawing.relation + • openpyxl.drawing.spreadsheet_drawing + • openpyxl.drawing.text + • openpyxl.formatting.formatting + • openpyxl.formatting.rule + • openpyxl.packaging.core + • openpyxl.packaging.custom + • openpyxl.packaging.extended + • openpyxl.packaging.manifest + • openpyxl.packaging.relationship + • openpyxl.packaging.workbook + • openpyxl.pivot.cache + • openpyxl.pivot.fields + • openpyxl.pivot.record + • openpyxl.pivot.table + • openpyxl.styles.alignment + • openpyxl.styles.borders + • openpyxl.styles.cell_style + • openpyxl.styles.colors + • openpyxl.styles.differential + • openpyxl.styles.fills + • openpyxl.styles.fonts + • openpyxl.styles.named_styles + • openpyxl.styles.numbers + • openpyxl.styles.protection + • openpyxl.styles.stylesheet + • openpyxl.styles.table + • openpyxl.workbook.defined_name + • openpyxl.workbook.external_link.external + • openpyxl.workbook.external_reference + • openpyxl.workbook.function_group + • openpyxl.workbook.properties + • openpyxl.workbook.protection + • openpyxl.workbook.smart_tags + • openpyxl.workbook.views + • openpyxl.workbook.web + • openpyxl.worksheet.cell_range + • openpyxl.worksheet.cell_watch + • openpyxl.worksheet.controls + • openpyxl.worksheet.custom + • openpyxl.worksheet.datavalidation + • openpyxl.worksheet.dimensions + • openpyxl.worksheet.drawing + • openpyxl.worksheet.errors + • openpyxl.worksheet.filters + • openpyxl.worksheet.header_footer + • openpyxl.worksheet.hyperlink + • openpyxl.worksheet.merge + • openpyxl.worksheet.ole + • openpyxl.worksheet.page + • openpyxl.worksheet.pagebreak + • openpyxl.worksheet.picture + • openpyxl.worksheet.properties + • openpyxl.worksheet.protection + • openpyxl.worksheet.related + • openpyxl.worksheet.scenario + • openpyxl.worksheet.smart_tag + • openpyxl.worksheet.table + • openpyxl.worksheet.views + • pandas.io.excel._openpyxl + +
+ +
+ +
+ + openpyxl.descriptors.slots +SourceModule
+imports: + openpyxl.descriptors + +
+
+imported by: + entry.py + +
+ +
+ + + + + + + +
+ + openpyxl.drawing.drawing +SourceModule +
+imported by: + entry.py + • openpyxl.drawing + +
+ +
+ + + + + + + + + +
+ + openpyxl.drawing.image +SourceModule
+imports: + PIL + • PIL.Image + • io + • openpyxl.drawing + +
+ + +
+ + + + + + + + + + + + + + + +
+ + openpyxl.formatting +Package
+imports: + openpyxl + • openpyxl.formatting.rule + +
+ + +
+ + + + + + + +
+ + openpyxl.formula.tokenizer +SourceModule
+imports: + openpyxl.formula + • re + +
+
+imported by: + entry.py + • openpyxl.formula + • openpyxl.formula.translate + +
+ +
+ +
+ + openpyxl.formula.translate +SourceModule
+imports: + openpyxl.formula + • openpyxl.formula.tokenizer + • openpyxl.utils + • re + +
+ + +
+ + + + + + + + + +
+ + openpyxl.packaging.interface +SourceModule
+imports: + abc + • openpyxl.compat.abc + • openpyxl.packaging + +
+
+imported by: + entry.py + +
+ +
+ + + + + + + +
+ + openpyxl.pivot +Package
+imports: + openpyxl + +
+ + +
+ + + + + + + + + +
+ + openpyxl.reader +Package
+imports: + openpyxl + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + openpyxl.styles.proxy +SourceModule
+imports: + copy + • openpyxl.compat + • openpyxl.styles + +
+
+imported by: + entry.py + • openpyxl.styles.styleable + +
+ +
+ + + + + + + +
+ + openpyxl.tests +MissingModule
+imported by: + openpyxl.reader.excel + +
+ +
+ + + +
+ + openpyxl.utils.bound_dictionary +SourceModule
+imports: + collections + • openpyxl.utils + +
+
+imported by: + entry.py + • openpyxl.worksheet.dimensions + +
+ +
+ +
+ + openpyxl.utils.cell /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/utils/cell.cpython-312-darwin.so
+imports: + functools + • itertools + • openpyxl.utils + • openpyxl.utils.exceptions + • re + • string + +
+ + +
+ +
+ + openpyxl.utils.dataframe +SourceModule
+imports: + itertools + • numpy + • openpyxl.compat.product + • openpyxl.utils + • operator + • pandas + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + openpyxl.utils.escape +SourceModule
+imports: + openpyxl.utils + • re + +
+ + +
+ + + +
+ + openpyxl.utils.formulas +SourceModule
+imports: + openpyxl.formula + • openpyxl.utils + +
+
+imported by: + entry.py + • openpyxl.utils + +
+ +
+ + + +
+ + openpyxl.utils.inference +SourceModule
+imports: + datetime + • openpyxl.styles + • openpyxl.styles.numbers + • openpyxl.utils + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + openpyxl.utils.protection +SourceModule
+imports: + openpyxl.utils + +
+ + +
+ +
+ + openpyxl.utils.units +SourceModule
+imports: + math + • openpyxl.utils + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ + openpyxl.workbook.web +SourceModule +
+imported by: + entry.py + • openpyxl.packaging.workbook + +
+ +
+ + + + + + + + + + + +
+ + openpyxl.worksheet._writer /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/openpyxl/worksheet/_writer.cpython-312-darwin.so + + +
+ + + +
+ + openpyxl.worksheet.cell_watch +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + openpyxl.worksheet.copier +SourceModule +
+imported by: + entry.py + • openpyxl.workbook.workbook + +
+ +
+ +
+ + openpyxl.worksheet.custom +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ + openpyxl.worksheet.picture +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + + + + + + + +
+ + openpyxl.worksheet.smart_tag +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + + + +
+ + openpyxl.writer +Package
+imports: + openpyxl + +
+
+imported by: + entry.py + • openpyxl.writer.excel + • openpyxl.writer.theme + +
+ +
+ + + +
+ + openpyxl.writer.theme +SourceModule
+imports: + openpyxl.writer + +
+
+imported by: + entry.py + • openpyxl.writer.excel + +
+ +
+ +
+ + openpyxl.xml +Package
+imports: + defusedxml + • lxml.etree + • openpyxl + • os + • warnings + +
+
+imported by: + entry.py + • openpyxl + • openpyxl.xml.constants + • openpyxl.xml.functions + +
+ +
+ + + + + +
+ + operator +SourceModule
+imports: + _operator + • builtins + • functools + +
+
+imported by: + PIL.ImageCms + • PIL.ImageOps + • _pydatetime + • collections + • copyreg + • cssselect.parser + • dateutil.relativedelta + • email._header_value_parser + • entry.py + • enum + • fractions + • gettext + • importlib.metadata + • importlib.resources.readers + • inspect + • numexpr.expressions + • numpy._core.arrayprint + • numpy._core.einsumfunc + • numpy._core.function_base + • numpy._core.memmap + • numpy._core.numeric + • numpy._core.shape_base + • numpy.lib._arrayterator_impl + • numpy.lib._histograms_impl + • numpy.lib._npyio_impl + • numpy.lib._twodim_base_impl + • numpy.linalg._linalg + • numpy.ma.core + • numpy.polynomial.polyutils + • numpy.testing._private.utils + • openpyxl.chart._chart + • openpyxl.compat.product + • openpyxl.utils.dataframe + • openpyxl.worksheet.cell_range + • openpyxl.worksheet.datavalidation + • openpyxl.worksheet.worksheet + • packaging.markers + • pandas._testing + • pandas._testing.asserters + • pandas.conftest + • pandas.core._numba.extensions + • pandas.core.algorithms + • pandas.core.array_algos.replace + • pandas.core.arraylike + • pandas.core.arrays.arrow.array + • pandas.core.arrays.base + • pandas.core.arrays.categorical + • pandas.core.arrays.datetimelike + • pandas.core.arrays.interval + • pandas.core.arrays.period + • pandas.core.arrays.sparse.array + • pandas.core.arrays.string_arrow + • pandas.core.arrays.timedeltas + • pandas.core.computation.expressions + • pandas.core.computation.ops + • pandas.core.frame + • pandas.core.generic + • pandas.core.indexes.base + • pandas.core.indexes.datetimes + • pandas.core.indexes.interval + • pandas.core.indexes.range + • pandas.core.ops.array_ops + • pandas.core.ops.invalid + • pandas.core.ops.missing + • pandas.core.roperator + • pandas.core.series + • pandas.io.formats.style + • pandas.tests.apply.test_str + • pandas.tests.arithmetic.test_array_ops + • pandas.tests.arithmetic.test_datetime64 + • pandas.tests.arithmetic.test_interval + • pandas.tests.arithmetic.test_numeric + • pandas.tests.arithmetic.test_object + • pandas.tests.arithmetic.test_period + • pandas.tests.arrays.boolean.test_arithmetic + • pandas.tests.arrays.boolean.test_logical + • pandas.tests.arrays.floating.test_arithmetic + • pandas.tests.arrays.integer.test_arithmetic + • pandas.tests.arrays.sparse.test_arithmetics + • pandas.tests.arrays.sparse.test_libsparse + • pandas.tests.arrays.sparse.test_unary + • pandas.tests.arrays.string_.test_string + • pandas.tests.arrays.test_datetimes + • pandas.tests.computation.test_eval + • pandas.tests.extension.base.methods + • pandas.tests.extension.conftest + • pandas.tests.extension.decimal.test_decimal + • pandas.tests.extension.json.test_json + • pandas.tests.extension.test_arrow + • pandas.tests.frame.methods.test_matmul + • pandas.tests.frame.test_arithmetic + • pandas.tests.frame.test_logical_ops + • pandas.tests.frame.test_query_eval + • pandas.tests.generic.test_duplicate_labels + • pandas.tests.generic.test_finalize + • pandas.tests.generic.test_frame + • pandas.tests.generic.test_series + • pandas.tests.indexes.datetimes.test_constructors + • pandas.tests.indexes.test_base + • pandas.tests.indexes.test_setops + • pandas.tests.resample.test_time_grouper + • pandas.tests.scalar.test_nat + • pandas.tests.scalar.timedelta.test_arithmetic + • pandas.tests.scalar.timestamp.test_comparisons + • pandas.tests.series.methods.test_matmul + • pandas.tests.series.methods.test_rank + • pandas.tests.series.test_arithmetic + • pandas.tests.series.test_logical_ops + • pandas.tests.strings.test_case_justify + • pandas.tests.test_expressions + • pkg_resources + • random + • setuptools._distutils.versionpredicate + • setuptools._entry_points + • setuptools._vendor.importlib_metadata + • setuptools._vendor.jaraco.context + • setuptools._vendor.jaraco.functools + • setuptools._vendor.more_itertools.more + • setuptools._vendor.more_itertools.recipes + • setuptools._vendor.packaging.markers + • six + • statistics + • typing + • typing_extensions + • wheel.vendored.packaging.markers + • xlrd.formula + • xlsxwriter.workbook + +
+ +
+ +
+ + optparse +SourceModule
+imports: + gettext + • os + • sys + • textwrap + +
+
+imported by: + lxml.html._diffcommand + • olefile.olefile + +
+ +
+ +
+ + os +SourceModule
+imports: + _collections_abc + • abc + • io + • nt + • ntpath + • os.path + • posix + • posixpath + • stat + • subprocess + • sys + • warnings + +
+
+imported by: + Crypto.Util._file_system + • Crypto.Util._raw_api + • PIL.BlpImagePlugin + • PIL.BmpImagePlugin + • PIL.EpsImagePlugin + • PIL.FliImagePlugin + • PIL.GifImagePlugin + • PIL.IcnsImagePlugin + • PIL.ImImagePlugin + • PIL.Image + • PIL.ImageFile + • PIL.ImageShow + • PIL.Jpeg2KImagePlugin + • PIL.JpegImagePlugin + • PIL.MpoImagePlugin + • PIL.PdfImagePlugin + • PIL.PdfParser + • PIL.QoiImagePlugin + • PIL.SgiImagePlugin + • PIL.SpiderImagePlugin + • PIL.TiffImagePlugin + • PIL._typing + • PIL._util + • PIL.features + • _aix_support + • _distutils_hack + • _osx_support + • _sitebuiltins + • ad_user_creator.config + • argparse + • asyncio.base_events + • asyncio.coroutines + • asyncio.events + • asyncio.proactor_events + • asyncio.selector_events + • asyncio.unix_events + • asyncio.windows_utils + • bdb + • bz2 + • cffi._imp_emulation + • cffi.api + • cffi.ffiplatform + • cffi.pkgconfig + • cffi.recompiler + • cffi.vengine_gen + • cffi.verifier + • cgi + • charset_normalizer.api + • concurrent.futures.process + • concurrent.futures.thread + • configparser + • contextlib + • cryptography.hazmat.bindings.openssl.binding + • cryptography.hazmat.primitives.serialization.ssh + • cryptography.x509.base + • ctypes + • ctypes._aix + • ctypes.macholib.dyld + • ctypes.util + • dateutil.tz.tz + • doctest + • email.utils + • entry.py + • fileinput + • filelock._api + • filelock._soft + • filelock._unix + • filelock._util + • filelock._windows + • filelock.asyncio + • fnmatch + • genericpath + • getopt + • getpass + • gettext + • glob + • gzip + • http.cookiejar + • http.server + • importlib.metadata + • importlib.resources._common + • importlib.resources._legacy + • importlib.resources.abc + • inspect + • ldap3.abstract.attrDef + • ldap3.abstract.attribute + • ldap3.abstract.cursor + • ldap3.abstract.entry + • ldap3.abstract.objectDef + • ldap3.core.connection + • ldap3.core.exceptions + • ldap3.core.pooling + • ldap3.core.tls + • ldap3.core.usage + • ldap3.extend + • ldap3.operation.search + • ldap3.protocol.rfc4512 + • ldap3.protocol.sasl.sasl + • ldap3.strategy.asyncStream + • ldap3.strategy.ldifProducer + • ldap3.strategy.reusable + • ldap3.utils.hashed + • ldap3.utils.ntlm + • linecache + • locale + • logging + • lxml + • lxml.html + • lxml.html._diffcommand + • lzma + • mimetypes + • multiprocessing.connection + • multiprocessing.context + • multiprocessing.forkserver + • multiprocessing.heap + • multiprocessing.managers + • multiprocessing.pool + • multiprocessing.popen_fork + • multiprocessing.popen_forkserver + • multiprocessing.popen_spawn_posix + • multiprocessing.popen_spawn_win32 + • multiprocessing.process + • multiprocessing.queues + • multiprocessing.reduction + • multiprocessing.resource_sharer + • multiprocessing.resource_tracker + • multiprocessing.shared_memory + • multiprocessing.spawn + • multiprocessing.util + • netrc + • ntpath + • numexpr.cpuinfo + • numexpr.necompiler + • numexpr.tests.test_numexpr + • numexpr.utils + • numpy + • numpy._core + • numpy._core._add_newdocs_scalars + • numpy._core._methods + • numpy._core.overrides + • numpy._core.records + • numpy._pytesttester + • numpy.ctypeslib + • numpy.f2py + • numpy.f2py._backends._distutils + • numpy.f2py._backends._meson + • numpy.f2py.capi_maps + • numpy.f2py.crackfortran + • numpy.f2py.diagnose + • numpy.f2py.f2py2e + • numpy.f2py.rules + • numpy.lib._datasource + • numpy.lib._npyio_impl + • numpy.lib._utils_impl + • numpy.lib.format + • numpy.polynomial._polybase + • numpy.testing._private.extbuild + • numpy.testing._private.utils + • openpyxl.worksheet._writer + • openpyxl.xml + • optparse + • os.path + • packaging._elffile + • packaging._manylinux + • packaging.markers + • pandas + • pandas._testing + • pandas._testing.contexts + • pandas._typing + • pandas._version + • pandas.compat + • pandas.conftest + • pandas.core.config_init + • pandas.io.clipboard + • pandas.io.common + • pandas.io.excel._base + • pandas.io.formats.csvs + • pandas.io.parquet + • pandas.io.pytables + • pandas.io.stata + • pandas.io.xml + • pandas.tests.config.test_localization + • pandas.tests.frame.methods.test_to_csv + • pandas.tests.internals.test_managers + • pandas.tests.io.excel.test_readers + • pandas.tests.io.excel.test_writers + • pandas.tests.io.formats.test_to_csv + • pandas.tests.io.generate_legacy_storage_files + • pandas.tests.io.json.test_pandas + • pandas.tests.io.parser.common.test_common_basic + • pandas.tests.io.parser.common.test_file_buffer_url + • pandas.tests.io.parser.common.test_index + • pandas.tests.io.parser.common.test_read_errors + • pandas.tests.io.parser.conftest + • pandas.tests.io.parser.dtypes.test_categorical + • pandas.tests.io.parser.test_c_parser_only + • pandas.tests.io.parser.test_compression + • pandas.tests.io.parser.test_encoding + • pandas.tests.io.parser.test_unsupported + • pandas.tests.io.pytables.test_file_handling + • pandas.tests.io.sas.test_sas7bdat + • pandas.tests.io.test_common + • pandas.tests.io.test_compression + • pandas.tests.io.test_gcs + • pandas.tests.io.test_html + • pandas.tests.io.test_orc + • pandas.tests.io.test_parquet + • pandas.tests.io.test_pickle + • pandas.tests.io.test_stata + • pandas.tests.io.xml.test_to_xml + • pandas.tests.io.xml.test_xml + • pandas.tests.plotting.test_misc + • pandas.tests.reshape.test_qcut + • pandas.tests.series.indexing.test_setitem + • pandas.tests.util.test_show_versions + • pandas.tests.util.test_util + • pandas.util._exceptions + • pandas.util._print_versions + • pandas.util._tester + • pathlib + • pdb + • pkg_resources + • pkgutil + • platform + • platformdirs + • platformdirs.android + • platformdirs.api + • platformdirs.unix + • platformdirs.windows + • plistlib + • posixpath + • py_compile + • pyasn1.codec.ber.decoder + • pyasn1.codec.streaming + • pycparser.ply.lex + • pydoc + • pyi_rth_cryptography_openssl.py + • pyi_rth_inspect.py + • pyi_rth_pkgres.py + • pyi_rth_setuptools.py + • random + • runpy + • setuptools + • setuptools._core_metadata + • setuptools._distutils._msvccompiler + • setuptools._distutils.archive_util + • setuptools._distutils.ccompiler + • setuptools._distutils.cmd + • setuptools._distutils.command.bdist + • setuptools._distutils.command.build + • setuptools._distutils.command.build_ext + • setuptools._distutils.command.sdist + • setuptools._distutils.core + • setuptools._distutils.debug + • setuptools._distutils.dir_util + • setuptools._distutils.dist + • setuptools._distutils.extension + • setuptools._distutils.file_util + • setuptools._distutils.filelist + • setuptools._distutils.spawn + • setuptools._distutils.sysconfig + • setuptools._distutils.util + • setuptools._imp + • setuptools._path + • setuptools._shutil + • setuptools._vendor.backports.tarfile + • setuptools._vendor.importlib_metadata + • setuptools._vendor.importlib_metadata._meta + • setuptools._vendor.importlib_metadata.compat.py311 + • setuptools._vendor.jaraco.context + • setuptools._vendor.packaging._elffile + • setuptools._vendor.packaging._manylinux + • setuptools._vendor.packaging.markers + • setuptools._vendor.zipp.glob + • setuptools.archive_util + • setuptools.command.bdist_egg + • setuptools.command.bdist_wheel + • setuptools.command.egg_info + • setuptools.command.sdist + • setuptools.command.setopt + • setuptools.config._apply_pyprojecttoml + • setuptools.config._validate_pyproject.error_reporting + • setuptools.config._validate_pyproject.formats + • setuptools.config.expand + • setuptools.config.pyprojecttoml + • setuptools.config.setupcfg + • setuptools.discovery + • setuptools.dist + • setuptools.glob + • setuptools.installer + • setuptools.msvc + • setuptools.warnings + • setuptools.wheel + • shlex + • shutil + • site + • socket + • socketserver + • ssl + • subprocess + • sysconfig + • tarfile + • tempfile + • threading + • unittest.loader + • unittest.main + • urllib.request + • uuid + • webbrowser + • wheel.cli + • wheel.cli.tags + • wheel.macosx_libfile + • wheel.vendored.packaging._elffile + • wheel.vendored.packaging._manylinux + • wheel.vendored.packaging.markers + • xlrd + • xlsxwriter.packager + • xlsxwriter.utility + • xlsxwriter.workbook + • xlsxwriter.worksheet + • xml.dom.domreg + • xml.sax + • xml.sax.saxutils + • xmlrpc.server + • zipfile + • zoneinfo._tzpath + +
+ +
+ + + + + +
+ + packaging._elffile +SourceModule
+imports: + __future__ + • enum + • os + • packaging + • struct + • typing + +
+
+imported by: + packaging._manylinux + • packaging._musllinux + • pkg_resources + +
+ +
+ +
+ + packaging._manylinux +SourceModule
+imports: + __future__ + • _manylinux + • collections + • contextlib + • ctypes + • functools + • os + • packaging + • packaging._elffile + • re + • sys + • typing + • warnings + +
+
+imported by: + packaging + • packaging.tags + • pkg_resources + +
+ +
+ +
+ + packaging._musllinux +SourceModule
+imports: + __future__ + • functools + • packaging + • packaging._elffile + • re + • subprocess + • sys + • sysconfig + • typing + +
+
+imported by: + packaging + • packaging.tags + • pkg_resources + +
+ +
+ +
+ + packaging._parser +SourceModule
+imports: + __future__ + • ast + • packaging + • packaging._tokenizer + • typing + +
+
+imported by: + packaging.markers + • packaging.requirements + • pkg_resources + +
+ +
+ +
+ + packaging._structures +SourceModule
+imports: + packaging + +
+
+imported by: + packaging.version + • pkg_resources + +
+ +
+ +
+ + packaging._tokenizer +SourceModule
+imports: + __future__ + • contextlib + • dataclasses + • packaging + • packaging.specifiers + • re + • typing + +
+ + +
+ +
+ + packaging.licenses +Package
+imports: + __future__ + • packaging + • packaging.licenses._spdx + • re + • typing + +
+ + +
+ +
+ + packaging.licenses._spdx +SourceModule
+imports: + __future__ + • packaging.licenses + • typing + +
+
+imported by: + packaging.licenses + • pkg_resources + +
+ +
+ +
+ + packaging.markers +SourceModule
+imports: + __future__ + • operator + • os + • packaging + • packaging._parser + • packaging._tokenizer + • packaging.specifiers + • packaging.utils + • platform + • sys + • typing + +
+ + +
+ +
+ + packaging.metadata +SourceModule +
+imported by: + pkg_resources + +
+ +
+ + + +
+ + packaging.specifiers +SourceModule
+imports: + __future__ + • abc + • itertools + • packaging + • packaging.utils + • packaging.version + • re + • typing + +
+ + +
+ +
+ + packaging.tags +SourceModule
+imports: + __future__ + • importlib.machinery + • logging + • packaging + • packaging._manylinux + • packaging._musllinux + • platform + • re + • struct + • subprocess + • sys + • sysconfig + • typing + +
+ + +
+ + + + + +
+ + pandas +Package
+imports: + __future__ + • cmath + • os + • pandas + • pandas._config + • pandas._libs + • pandas._libs.algos + • pandas._libs.arrays + • pandas._libs.byteswap + • pandas._libs.groupby + • pandas._libs.hashing + • pandas._libs.hashtable + • pandas._libs.index + • pandas._libs.indexing + • pandas._libs.internals + • pandas._libs.interval + • pandas._libs.join + • pandas._libs.json + • pandas._libs.lib + • pandas._libs.missing + • pandas._libs.ops + • pandas._libs.ops_dispatch + • pandas._libs.pandas_datetime + • pandas._libs.pandas_parser + • pandas._libs.parsers + • pandas._libs.properties + • pandas._libs.reshape + • pandas._libs.sas + • pandas._libs.sparse + • pandas._libs.testing + • pandas._libs.tslib + • pandas._libs.tslibs + • pandas._libs.tslibs.base + • pandas._libs.tslibs.ccalendar + • pandas._libs.tslibs.conversion + • pandas._libs.tslibs.dtypes + • pandas._libs.tslibs.fields + • pandas._libs.tslibs.nattype + • pandas._libs.tslibs.np_datetime + • pandas._libs.tslibs.offsets + • pandas._libs.tslibs.parsing + • pandas._libs.tslibs.period + • pandas._libs.tslibs.strptime + • pandas._libs.tslibs.timedeltas + • pandas._libs.tslibs.timestamps + • pandas._libs.tslibs.timezones + • pandas._libs.tslibs.tzconversion + • pandas._libs.tslibs.vectorized + • pandas._libs.window + • pandas._libs.window.aggregations + • pandas._libs.window.indexers + • pandas._libs.writers + • pandas._version + • pandas._version_meson + • pandas.api + • pandas.arrays + • pandas.compat + • pandas.core.api + • pandas.core.computation.api + • pandas.core.config_init + • pandas.core.dtypes.dtypes + • pandas.core.reshape.api + • pandas.errors + • pandas.io + • pandas.io.api + • pandas.io.json._normalize + • pandas.plotting + • pandas.testing + • pandas.tseries + • pandas.tseries.api + • pandas.tseries.offsets + • pandas.util._print_versions + • pandas.util._tester + • warnings + +
+
+imported by: + ad_user_creator.input_parser + • entry.py + • openpyxl.utils.dataframe + • pandas + • pandas._config + • pandas._libs + • pandas._libs.index + • pandas._libs.internals + • pandas._testing + • pandas._testing._hypothesis + • pandas._testing._io + • pandas._testing.asserters + • pandas._testing.compat + • pandas._testing.contexts + • pandas._typing + • pandas._version + • pandas._version_meson + • pandas.api + • pandas.arrays + • pandas.compat + • pandas.compat.pickle_compat + • pandas.conftest + • pandas.core + • pandas.core.accessor + • pandas.core.algorithms + • pandas.core.apply + • pandas.core.array_algos.putmask + • pandas.core.arrays._mixins + • pandas.core.arrays.arrow.accessors + • pandas.core.arrays.arrow.array + • pandas.core.arrays.base + • pandas.core.arrays.categorical + • pandas.core.arrays.datetimelike + • pandas.core.arrays.datetimes + • pandas.core.arrays.interval + • pandas.core.arrays.masked + • pandas.core.arrays.numpy_ + • pandas.core.arrays.sparse.accessor + • pandas.core.arrays.sparse.array + • pandas.core.arrays.sparse.scipy_sparse + • pandas.core.arrays.string_ + • pandas.core.arrays.string_arrow + • pandas.core.arrays.timedeltas + • pandas.core.base + • pandas.core.common + • pandas.core.computation.align + • pandas.core.computation.expr + • pandas.core.construction + • pandas.core.dtypes.base + • pandas.core.dtypes.cast + • pandas.core.dtypes.concat + • pandas.core.dtypes.dtypes + • pandas.core.dtypes.generic + • pandas.core.dtypes.missing + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.generic + • pandas.core.groupby.indexing + • pandas.core.indexes.accessors + • pandas.core.indexes.base + • pandas.core.indexes.datetimelike + • pandas.core.indexes.multi + • pandas.core.indexing + • pandas.core.interchange.column + • pandas.core.interchange.dataframe + • pandas.core.interchange.from_dataframe + • pandas.core.interchange.utils + • pandas.core.internals.concat + • pandas.core.methods.describe + • pandas.core.methods.selectn + • pandas.core.methods.to_dict + • pandas.core.missing + • pandas.core.resample + • pandas.core.reshape.concat + • pandas.core.reshape.melt + • pandas.core.reshape.merge + • pandas.core.reshape.pivot + • pandas.core.reshape.tile + • pandas.core.sorting + • pandas.core.strings.accessor + • pandas.core.strings.base + • pandas.core.strings.object_array + • pandas.core.tools.datetimes + • pandas.core.tools.numeric + • pandas.core.tools.timedeltas + • pandas.core.util.hashing + • pandas.core.window.common + • pandas.core.window.ewm + • pandas.core.window.expanding + • pandas.core.window.rolling + • pandas.errors + • pandas.io + • pandas.io._util + • pandas.io.clipboards + • pandas.io.common + • pandas.io.excel._calamine + • pandas.io.excel._odfreader + • pandas.io.feather_format + • pandas.io.formats.console + • pandas.io.formats.excel + • pandas.io.formats.format + • pandas.io.formats.html + • pandas.io.formats.info + • pandas.io.formats.string + • pandas.io.formats.style + • pandas.io.formats.style_render + • pandas.io.formats.xml + • pandas.io.gbq + • pandas.io.html + • pandas.io.json._json + • pandas.io.json._normalize + • pandas.io.json._table_schema + • pandas.io.orc + • pandas.io.parquet + • pandas.io.parsers.arrow_parser_wrapper + • pandas.io.parsers.base_parser + • pandas.io.parsers.c_parser_wrapper + • pandas.io.parsers.python_parser + • pandas.io.parsers.readers + • pandas.io.pickle + • pandas.io.pytables + • pandas.io.sas.sas7bdat + • pandas.io.sas.sas_xport + • pandas.io.sas.sasreader + • pandas.io.spss + • pandas.io.sql + • pandas.io.stata + • pandas.io.xml + • pandas.plotting + • pandas.plotting._core + • pandas.plotting._matplotlib.boxplot + • pandas.plotting._matplotlib.converter + • pandas.plotting._matplotlib.core + • pandas.plotting._matplotlib.groupby + • pandas.plotting._matplotlib.hist + • pandas.plotting._matplotlib.misc + • pandas.plotting._matplotlib.timeseries + • pandas.plotting._matplotlib.tools + • pandas.plotting._misc + • pandas.testing + • pandas.tests + • pandas.tests.api.test_api + • pandas.tests.apply.test_frame_apply + • pandas.tests.apply.test_frame_apply_relabeling + • pandas.tests.apply.test_frame_transform + • pandas.tests.apply.test_invalid_arg + • pandas.tests.apply.test_numba + • pandas.tests.apply.test_series_apply + • pandas.tests.apply.test_series_apply_relabeling + • pandas.tests.apply.test_series_transform + • pandas.tests.apply.test_str + • pandas.tests.arithmetic.common + • pandas.tests.arithmetic.conftest + • pandas.tests.arithmetic.test_categorical + • pandas.tests.arithmetic.test_datetime64 + • pandas.tests.arithmetic.test_interval + • pandas.tests.arithmetic.test_numeric + • pandas.tests.arithmetic.test_object + • pandas.tests.arithmetic.test_period + • pandas.tests.arithmetic.test_timedelta64 + • pandas.tests.arrays.boolean.test_arithmetic + • pandas.tests.arrays.boolean.test_astype + • pandas.tests.arrays.boolean.test_comparison + • pandas.tests.arrays.boolean.test_construction + • pandas.tests.arrays.boolean.test_function + • pandas.tests.arrays.boolean.test_indexing + • pandas.tests.arrays.boolean.test_logical + • pandas.tests.arrays.boolean.test_ops + • pandas.tests.arrays.boolean.test_reduction + • pandas.tests.arrays.boolean.test_repr + • pandas.tests.arrays.categorical.test_algos + • pandas.tests.arrays.categorical.test_analytics + • pandas.tests.arrays.categorical.test_api + • pandas.tests.arrays.categorical.test_astype + • pandas.tests.arrays.categorical.test_constructors + • pandas.tests.arrays.categorical.test_dtypes + • pandas.tests.arrays.categorical.test_indexing + • pandas.tests.arrays.categorical.test_map + • pandas.tests.arrays.categorical.test_missing + • pandas.tests.arrays.categorical.test_operators + • pandas.tests.arrays.categorical.test_replace + • pandas.tests.arrays.categorical.test_repr + • pandas.tests.arrays.categorical.test_sorting + • pandas.tests.arrays.categorical.test_subclass + • pandas.tests.arrays.categorical.test_take + • pandas.tests.arrays.datetimes.test_constructors + • pandas.tests.arrays.datetimes.test_reductions + • pandas.tests.arrays.floating.conftest + • pandas.tests.arrays.floating.test_arithmetic + • pandas.tests.arrays.floating.test_astype + • pandas.tests.arrays.floating.test_comparison + • pandas.tests.arrays.floating.test_concat + • pandas.tests.arrays.floating.test_construction + • pandas.tests.arrays.floating.test_contains + • pandas.tests.arrays.floating.test_function + • pandas.tests.arrays.floating.test_repr + • pandas.tests.arrays.floating.test_to_numpy + • pandas.tests.arrays.integer.conftest + • pandas.tests.arrays.integer.test_arithmetic + • pandas.tests.arrays.integer.test_comparison + • pandas.tests.arrays.integer.test_concat + • pandas.tests.arrays.integer.test_construction + • pandas.tests.arrays.integer.test_dtypes + • pandas.tests.arrays.integer.test_function + • pandas.tests.arrays.integer.test_indexing + • pandas.tests.arrays.integer.test_reduction + • pandas.tests.arrays.integer.test_repr + • pandas.tests.arrays.interval.test_astype + • pandas.tests.arrays.interval.test_interval + • pandas.tests.arrays.interval.test_interval_pyarrow + • pandas.tests.arrays.interval.test_overlaps + • pandas.tests.arrays.masked.test_arithmetic + • pandas.tests.arrays.masked.test_arrow_compat + • pandas.tests.arrays.masked.test_function + • pandas.tests.arrays.masked.test_indexing + • pandas.tests.arrays.masked_shared + • pandas.tests.arrays.numpy_.test_indexing + • pandas.tests.arrays.numpy_.test_numpy + • pandas.tests.arrays.period.test_arrow_compat + • pandas.tests.arrays.period.test_astype + • pandas.tests.arrays.period.test_constructors + • pandas.tests.arrays.period.test_reductions + • pandas.tests.arrays.sparse.test_accessor + • pandas.tests.arrays.sparse.test_arithmetics + • pandas.tests.arrays.sparse.test_array + • pandas.tests.arrays.sparse.test_astype + • pandas.tests.arrays.sparse.test_combine_concat + • pandas.tests.arrays.sparse.test_constructors + • pandas.tests.arrays.sparse.test_dtype + • pandas.tests.arrays.sparse.test_indexing + • pandas.tests.arrays.sparse.test_libsparse + • pandas.tests.arrays.sparse.test_reductions + • pandas.tests.arrays.sparse.test_unary + • pandas.tests.arrays.string_.test_string + • pandas.tests.arrays.string_.test_string_arrow + • pandas.tests.arrays.test_array + • pandas.tests.arrays.test_datetimelike + • pandas.tests.arrays.test_datetimes + • pandas.tests.arrays.test_ndarray_backed + • pandas.tests.arrays.test_period + • pandas.tests.arrays.test_timedeltas + • pandas.tests.arrays.timedeltas.test_reductions + • pandas.tests.base.common + • pandas.tests.base.test_constructors + • pandas.tests.base.test_conversion + • pandas.tests.base.test_fillna + • pandas.tests.base.test_misc + • pandas.tests.base.test_transpose + • pandas.tests.base.test_unique + • pandas.tests.base.test_value_counts + • pandas.tests.computation.test_compat + • pandas.tests.computation.test_eval + • pandas.tests.config.test_config + • pandas.tests.config.test_localization + • pandas.tests.construction.test_extract_array + • pandas.tests.copy_view.index.test_datetimeindex + • pandas.tests.copy_view.index.test_index + • pandas.tests.copy_view.index.test_periodindex + • pandas.tests.copy_view.index.test_timedeltaindex + • pandas.tests.copy_view.test_array + • pandas.tests.copy_view.test_astype + • pandas.tests.copy_view.test_chained_assignment_deprecation + • pandas.tests.copy_view.test_clip + • pandas.tests.copy_view.test_constructors + • pandas.tests.copy_view.test_core_functionalities + • pandas.tests.copy_view.test_functions + • pandas.tests.copy_view.test_indexing + • pandas.tests.copy_view.test_internals + • pandas.tests.copy_view.test_interp_fillna + • pandas.tests.copy_view.test_methods + • pandas.tests.copy_view.test_replace + • pandas.tests.copy_view.test_setitem + • pandas.tests.copy_view.test_util + • pandas.tests.copy_view.util + • pandas.tests.dtypes.cast.test_construct_from_scalar + • pandas.tests.dtypes.cast.test_construct_ndarray + • pandas.tests.dtypes.cast.test_dict_compat + • pandas.tests.dtypes.cast.test_downcast + • pandas.tests.dtypes.cast.test_find_common_type + • pandas.tests.dtypes.cast.test_infer_datetimelike + • pandas.tests.dtypes.cast.test_infer_dtype + • pandas.tests.dtypes.cast.test_maybe_box_native + • pandas.tests.dtypes.cast.test_promote + • pandas.tests.dtypes.test_common + • pandas.tests.dtypes.test_concat + • pandas.tests.dtypes.test_dtypes + • pandas.tests.dtypes.test_generic + • pandas.tests.dtypes.test_inference + • pandas.tests.dtypes.test_missing + • pandas.tests.extension.array_with_attr.array + • pandas.tests.extension.array_with_attr.test_array_with_attr + • pandas.tests.extension.base.accumulate + • pandas.tests.extension.base.casting + • pandas.tests.extension.base.constructors + • pandas.tests.extension.base.dim2 + • pandas.tests.extension.base.dtype + • pandas.tests.extension.base.getitem + • pandas.tests.extension.base.groupby + • pandas.tests.extension.base.index + • pandas.tests.extension.base.interface + • pandas.tests.extension.base.io + • pandas.tests.extension.base.methods + • pandas.tests.extension.base.missing + • pandas.tests.extension.base.ops + • pandas.tests.extension.base.printing + • pandas.tests.extension.base.reduce + • pandas.tests.extension.base.reshaping + • pandas.tests.extension.base.setitem + • pandas.tests.extension.conftest + • pandas.tests.extension.decimal.array + • pandas.tests.extension.decimal.test_decimal + • pandas.tests.extension.json.array + • pandas.tests.extension.json.test_json + • pandas.tests.extension.list.array + • pandas.tests.extension.list.test_list + • pandas.tests.extension.test_arrow + • pandas.tests.extension.test_categorical + • pandas.tests.extension.test_common + • pandas.tests.extension.test_datetime + • pandas.tests.extension.test_interval + • pandas.tests.extension.test_masked + • pandas.tests.extension.test_numpy + • pandas.tests.extension.test_period + • pandas.tests.extension.test_sparse + • pandas.tests.extension.test_string + • pandas.tests.frame.common + • pandas.tests.frame.conftest + • pandas.tests.frame.constructors.test_from_dict + • pandas.tests.frame.constructors.test_from_records + • pandas.tests.frame.indexing.test_coercion + • pandas.tests.frame.indexing.test_delitem + • pandas.tests.frame.indexing.test_get + • pandas.tests.frame.indexing.test_get_value + • pandas.tests.frame.indexing.test_getitem + • pandas.tests.frame.indexing.test_indexing + • pandas.tests.frame.indexing.test_insert + • pandas.tests.frame.indexing.test_mask + • pandas.tests.frame.indexing.test_set_value + • pandas.tests.frame.indexing.test_setitem + • pandas.tests.frame.indexing.test_where + • pandas.tests.frame.indexing.test_xs + • pandas.tests.frame.methods.test_add_prefix_suffix + • pandas.tests.frame.methods.test_align + • pandas.tests.frame.methods.test_asfreq + • pandas.tests.frame.methods.test_asof + • pandas.tests.frame.methods.test_assign + • pandas.tests.frame.methods.test_astype + • pandas.tests.frame.methods.test_at_time + • pandas.tests.frame.methods.test_between_time + • pandas.tests.frame.methods.test_clip + • pandas.tests.frame.methods.test_combine + • pandas.tests.frame.methods.test_combine_first + • pandas.tests.frame.methods.test_compare + • pandas.tests.frame.methods.test_convert_dtypes + • pandas.tests.frame.methods.test_copy + • pandas.tests.frame.methods.test_count + • pandas.tests.frame.methods.test_cov_corr + • pandas.tests.frame.methods.test_describe + • pandas.tests.frame.methods.test_diff + • pandas.tests.frame.methods.test_dot + • pandas.tests.frame.methods.test_drop + • pandas.tests.frame.methods.test_drop_duplicates + • pandas.tests.frame.methods.test_droplevel + • pandas.tests.frame.methods.test_dropna + • pandas.tests.frame.methods.test_dtypes + • pandas.tests.frame.methods.test_duplicated + • pandas.tests.frame.methods.test_equals + • pandas.tests.frame.methods.test_explode + • pandas.tests.frame.methods.test_fillna + • pandas.tests.frame.methods.test_filter + • pandas.tests.frame.methods.test_first_and_last + • pandas.tests.frame.methods.test_first_valid_index + • pandas.tests.frame.methods.test_get_numeric_data + • pandas.tests.frame.methods.test_head_tail + • pandas.tests.frame.methods.test_infer_objects + • pandas.tests.frame.methods.test_info + • pandas.tests.frame.methods.test_interpolate + • pandas.tests.frame.methods.test_is_homogeneous_dtype + • pandas.tests.frame.methods.test_isetitem + • pandas.tests.frame.methods.test_isin + • pandas.tests.frame.methods.test_iterrows + • pandas.tests.frame.methods.test_join + • pandas.tests.frame.methods.test_map + • pandas.tests.frame.methods.test_matmul + • pandas.tests.frame.methods.test_nlargest + • pandas.tests.frame.methods.test_pct_change + • pandas.tests.frame.methods.test_pipe + • pandas.tests.frame.methods.test_pop + • pandas.tests.frame.methods.test_quantile + • pandas.tests.frame.methods.test_rank + • pandas.tests.frame.methods.test_reindex + • pandas.tests.frame.methods.test_reindex_like + • pandas.tests.frame.methods.test_rename + • pandas.tests.frame.methods.test_rename_axis + • pandas.tests.frame.methods.test_reorder_levels + • pandas.tests.frame.methods.test_replace + • pandas.tests.frame.methods.test_reset_index + • pandas.tests.frame.methods.test_round + • pandas.tests.frame.methods.test_sample + • pandas.tests.frame.methods.test_select_dtypes + • pandas.tests.frame.methods.test_set_axis + • pandas.tests.frame.methods.test_set_index + • pandas.tests.frame.methods.test_shift + • pandas.tests.frame.methods.test_size + • pandas.tests.frame.methods.test_sort_index + • pandas.tests.frame.methods.test_sort_values + • pandas.tests.frame.methods.test_swapaxes + • pandas.tests.frame.methods.test_swaplevel + • pandas.tests.frame.methods.test_to_csv + • pandas.tests.frame.methods.test_to_dict + • pandas.tests.frame.methods.test_to_dict_of_blocks + • pandas.tests.frame.methods.test_to_numpy + • pandas.tests.frame.methods.test_to_period + • pandas.tests.frame.methods.test_to_records + • pandas.tests.frame.methods.test_to_timestamp + • pandas.tests.frame.methods.test_transpose + • pandas.tests.frame.methods.test_truncate + • pandas.tests.frame.methods.test_tz_convert + • pandas.tests.frame.methods.test_tz_localize + • pandas.tests.frame.methods.test_update + • pandas.tests.frame.methods.test_value_counts + • pandas.tests.frame.methods.test_values + • pandas.tests.frame.test_alter_axes + • pandas.tests.frame.test_api + • pandas.tests.frame.test_arithmetic + • pandas.tests.frame.test_arrow_interface + • pandas.tests.frame.test_block_internals + • pandas.tests.frame.test_constructors + • pandas.tests.frame.test_cumulative + • pandas.tests.frame.test_iteration + • pandas.tests.frame.test_logical_ops + • pandas.tests.frame.test_nonunique_indexes + • pandas.tests.frame.test_npfuncs + • pandas.tests.frame.test_query_eval + • pandas.tests.frame.test_reductions + • pandas.tests.frame.test_repr + • pandas.tests.frame.test_stack_unstack + • pandas.tests.frame.test_subclass + • pandas.tests.frame.test_ufunc + • pandas.tests.frame.test_unary + • pandas.tests.generic.test_duplicate_labels + • pandas.tests.generic.test_finalize + • pandas.tests.generic.test_frame + • pandas.tests.generic.test_generic + • pandas.tests.generic.test_label_or_level_utils + • pandas.tests.generic.test_series + • pandas.tests.generic.test_to_xarray + • pandas.tests.groupby.aggregate.test_aggregate + • pandas.tests.groupby.aggregate.test_cython + • pandas.tests.groupby.aggregate.test_numba + • pandas.tests.groupby.aggregate.test_other + • pandas.tests.groupby.conftest + • pandas.tests.groupby.methods.test_corrwith + • pandas.tests.groupby.methods.test_describe + • pandas.tests.groupby.methods.test_groupby_shift_diff + • pandas.tests.groupby.methods.test_is_monotonic + • pandas.tests.groupby.methods.test_nlargest_nsmallest + • pandas.tests.groupby.methods.test_nth + • pandas.tests.groupby.methods.test_quantile + • pandas.tests.groupby.methods.test_rank + • pandas.tests.groupby.methods.test_sample + • pandas.tests.groupby.methods.test_size + • pandas.tests.groupby.methods.test_skew + • pandas.tests.groupby.methods.test_value_counts + • pandas.tests.groupby.test_all_methods + • pandas.tests.groupby.test_api + • pandas.tests.groupby.test_apply + • pandas.tests.groupby.test_apply_mutate + • pandas.tests.groupby.test_bin_groupby + • pandas.tests.groupby.test_categorical + • pandas.tests.groupby.test_counting + • pandas.tests.groupby.test_cumulative + • pandas.tests.groupby.test_filters + • pandas.tests.groupby.test_groupby + • pandas.tests.groupby.test_groupby_dropna + • pandas.tests.groupby.test_groupby_subclass + • pandas.tests.groupby.test_grouping + • pandas.tests.groupby.test_index_as_string + • pandas.tests.groupby.test_indexing + • pandas.tests.groupby.test_libgroupby + • pandas.tests.groupby.test_missing + • pandas.tests.groupby.test_numba + • pandas.tests.groupby.test_numeric_only + • pandas.tests.groupby.test_pipe + • pandas.tests.groupby.test_raises + • pandas.tests.groupby.test_reductions + • pandas.tests.groupby.test_timegrouper + • pandas.tests.groupby.transform.test_numba + • pandas.tests.groupby.transform.test_transform + • pandas.tests.indexes.base_class.test_constructors + • pandas.tests.indexes.base_class.test_formats + • pandas.tests.indexes.base_class.test_indexing + • pandas.tests.indexes.base_class.test_pickle + • pandas.tests.indexes.base_class.test_reshape + • pandas.tests.indexes.base_class.test_setops + • pandas.tests.indexes.base_class.test_where + • pandas.tests.indexes.categorical.test_append + • pandas.tests.indexes.categorical.test_astype + • pandas.tests.indexes.categorical.test_category + • pandas.tests.indexes.categorical.test_constructors + • pandas.tests.indexes.categorical.test_equals + • pandas.tests.indexes.categorical.test_fillna + • pandas.tests.indexes.categorical.test_formats + • pandas.tests.indexes.categorical.test_indexing + • pandas.tests.indexes.categorical.test_map + • pandas.tests.indexes.categorical.test_reindex + • pandas.tests.indexes.categorical.test_setops + • pandas.tests.indexes.conftest + • pandas.tests.indexes.datetimelike_.test_drop_duplicates + • pandas.tests.indexes.datetimelike_.test_equals + • pandas.tests.indexes.datetimelike_.test_indexing + • pandas.tests.indexes.datetimelike_.test_is_monotonic + • pandas.tests.indexes.datetimelike_.test_nat + • pandas.tests.indexes.datetimelike_.test_sort_values + • pandas.tests.indexes.datetimelike_.test_value_counts + • pandas.tests.indexes.datetimes.methods.test_asof + • pandas.tests.indexes.datetimes.methods.test_astype + • pandas.tests.indexes.datetimes.methods.test_delete + • pandas.tests.indexes.datetimes.methods.test_factorize + • pandas.tests.indexes.datetimes.methods.test_fillna + • pandas.tests.indexes.datetimes.methods.test_insert + • pandas.tests.indexes.datetimes.methods.test_isocalendar + • pandas.tests.indexes.datetimes.methods.test_map + • pandas.tests.indexes.datetimes.methods.test_normalize + • pandas.tests.indexes.datetimes.methods.test_repeat + • pandas.tests.indexes.datetimes.methods.test_resolution + • pandas.tests.indexes.datetimes.methods.test_round + • pandas.tests.indexes.datetimes.methods.test_shift + • pandas.tests.indexes.datetimes.methods.test_snap + • pandas.tests.indexes.datetimes.methods.test_to_frame + • pandas.tests.indexes.datetimes.methods.test_to_julian_date + • pandas.tests.indexes.datetimes.methods.test_to_period + • pandas.tests.indexes.datetimes.methods.test_to_pydatetime + • pandas.tests.indexes.datetimes.methods.test_to_series + • pandas.tests.indexes.datetimes.methods.test_tz_convert + • pandas.tests.indexes.datetimes.methods.test_tz_localize + • pandas.tests.indexes.datetimes.methods.test_unique + • pandas.tests.indexes.datetimes.test_arithmetic + • pandas.tests.indexes.datetimes.test_constructors + • pandas.tests.indexes.datetimes.test_date_range + • pandas.tests.indexes.datetimes.test_datetime + • pandas.tests.indexes.datetimes.test_formats + • pandas.tests.indexes.datetimes.test_freq_attr + • pandas.tests.indexes.datetimes.test_indexing + • pandas.tests.indexes.datetimes.test_iter + • pandas.tests.indexes.datetimes.test_join + • pandas.tests.indexes.datetimes.test_npfuncs + • pandas.tests.indexes.datetimes.test_ops + • pandas.tests.indexes.datetimes.test_partial_slicing + • pandas.tests.indexes.datetimes.test_pickle + • pandas.tests.indexes.datetimes.test_reindex + • pandas.tests.indexes.datetimes.test_scalar_compat + • pandas.tests.indexes.datetimes.test_setops + • pandas.tests.indexes.datetimes.test_timezones + • pandas.tests.indexes.interval.test_astype + • pandas.tests.indexes.interval.test_constructors + • pandas.tests.indexes.interval.test_equals + • pandas.tests.indexes.interval.test_formats + • pandas.tests.indexes.interval.test_indexing + • pandas.tests.indexes.interval.test_interval + • pandas.tests.indexes.interval.test_interval_range + • pandas.tests.indexes.interval.test_join + • pandas.tests.indexes.interval.test_pickle + • pandas.tests.indexes.interval.test_setops + • pandas.tests.indexes.multi.conftest + • pandas.tests.indexes.multi.test_analytics + • pandas.tests.indexes.multi.test_compat + • pandas.tests.indexes.multi.test_constructors + • pandas.tests.indexes.multi.test_conversion + • pandas.tests.indexes.multi.test_copy + • pandas.tests.indexes.multi.test_drop + • pandas.tests.indexes.multi.test_duplicates + • pandas.tests.indexes.multi.test_equivalence + • pandas.tests.indexes.multi.test_formats + • pandas.tests.indexes.multi.test_get_level_values + • pandas.tests.indexes.multi.test_get_set + • pandas.tests.indexes.multi.test_indexing + • pandas.tests.indexes.multi.test_integrity + • pandas.tests.indexes.multi.test_isin + • pandas.tests.indexes.multi.test_join + • pandas.tests.indexes.multi.test_lexsort + • pandas.tests.indexes.multi.test_missing + • pandas.tests.indexes.multi.test_monotonic + • pandas.tests.indexes.multi.test_names + • pandas.tests.indexes.multi.test_partial_indexing + • pandas.tests.indexes.multi.test_pickle + • pandas.tests.indexes.multi.test_reindex + • pandas.tests.indexes.multi.test_reshape + • pandas.tests.indexes.multi.test_setops + • pandas.tests.indexes.multi.test_sorting + • pandas.tests.indexes.multi.test_take + • pandas.tests.indexes.numeric.test_astype + • pandas.tests.indexes.numeric.test_indexing + • pandas.tests.indexes.numeric.test_numeric + • pandas.tests.indexes.object.test_astype + • pandas.tests.indexes.object.test_indexing + • pandas.tests.indexes.period.methods.test_asfreq + • pandas.tests.indexes.period.methods.test_astype + • pandas.tests.indexes.period.methods.test_factorize + • pandas.tests.indexes.period.methods.test_fillna + • pandas.tests.indexes.period.methods.test_insert + • pandas.tests.indexes.period.methods.test_is_full + • pandas.tests.indexes.period.methods.test_repeat + • pandas.tests.indexes.period.methods.test_shift + • pandas.tests.indexes.period.methods.test_to_timestamp + • pandas.tests.indexes.period.test_constructors + • pandas.tests.indexes.period.test_formats + • pandas.tests.indexes.period.test_freq_attr + • pandas.tests.indexes.period.test_indexing + • pandas.tests.indexes.period.test_join + • pandas.tests.indexes.period.test_monotonic + • pandas.tests.indexes.period.test_partial_slicing + • pandas.tests.indexes.period.test_period + • pandas.tests.indexes.period.test_period_range + • pandas.tests.indexes.period.test_pickle + • pandas.tests.indexes.period.test_resolution + • pandas.tests.indexes.period.test_scalar_compat + • pandas.tests.indexes.period.test_searchsorted + • pandas.tests.indexes.period.test_setops + • pandas.tests.indexes.period.test_tools + • pandas.tests.indexes.ranges.test_constructors + • pandas.tests.indexes.ranges.test_indexing + • pandas.tests.indexes.ranges.test_join + • pandas.tests.indexes.ranges.test_range + • pandas.tests.indexes.ranges.test_setops + • pandas.tests.indexes.test_base + • pandas.tests.indexes.test_common + • pandas.tests.indexes.test_datetimelike + • pandas.tests.indexes.test_engines + • pandas.tests.indexes.test_index_new + • pandas.tests.indexes.test_indexing + • pandas.tests.indexes.test_numpy_compat + • pandas.tests.indexes.test_old_base + • pandas.tests.indexes.test_setops + • pandas.tests.indexes.test_subclass + • pandas.tests.indexes.timedeltas.methods.test_astype + • pandas.tests.indexes.timedeltas.methods.test_factorize + • pandas.tests.indexes.timedeltas.methods.test_fillna + • pandas.tests.indexes.timedeltas.methods.test_insert + • pandas.tests.indexes.timedeltas.methods.test_repeat + • pandas.tests.indexes.timedeltas.methods.test_shift + • pandas.tests.indexes.timedeltas.test_arithmetic + • pandas.tests.indexes.timedeltas.test_constructors + • pandas.tests.indexes.timedeltas.test_delete + • pandas.tests.indexes.timedeltas.test_formats + • pandas.tests.indexes.timedeltas.test_freq_attr + • pandas.tests.indexes.timedeltas.test_indexing + • pandas.tests.indexes.timedeltas.test_join + • pandas.tests.indexes.timedeltas.test_ops + • pandas.tests.indexes.timedeltas.test_pickle + • pandas.tests.indexes.timedeltas.test_scalar_compat + • pandas.tests.indexes.timedeltas.test_searchsorted + • pandas.tests.indexes.timedeltas.test_setops + • pandas.tests.indexes.timedeltas.test_timedelta + • pandas.tests.indexes.timedeltas.test_timedelta_range + • pandas.tests.indexing.conftest + • pandas.tests.indexing.interval.test_interval + • pandas.tests.indexing.interval.test_interval_new + • pandas.tests.indexing.multiindex.test_chaining_and_caching + • pandas.tests.indexing.multiindex.test_datetime + • pandas.tests.indexing.multiindex.test_getitem + • pandas.tests.indexing.multiindex.test_iloc + • pandas.tests.indexing.multiindex.test_indexing_slow + • pandas.tests.indexing.multiindex.test_loc + • pandas.tests.indexing.multiindex.test_multiindex + • pandas.tests.indexing.multiindex.test_partial + • pandas.tests.indexing.multiindex.test_setitem + • pandas.tests.indexing.multiindex.test_slice + • pandas.tests.indexing.multiindex.test_sorted + • pandas.tests.indexing.test_at + • pandas.tests.indexing.test_categorical + • pandas.tests.indexing.test_chaining_and_caching + • pandas.tests.indexing.test_check_indexer + • pandas.tests.indexing.test_coercion + • pandas.tests.indexing.test_datetime + • pandas.tests.indexing.test_floats + • pandas.tests.indexing.test_iat + • pandas.tests.indexing.test_iloc + • pandas.tests.indexing.test_indexing + • pandas.tests.indexing.test_loc + • pandas.tests.indexing.test_na_indexing + • pandas.tests.indexing.test_partial + • pandas.tests.indexing.test_scalar + • pandas.tests.interchange.test_impl + • pandas.tests.interchange.test_spec_conformance + • pandas.tests.interchange.test_utils + • pandas.tests.internals.test_api + • pandas.tests.internals.test_internals + • pandas.tests.internals.test_managers + • pandas.tests.io.excel.test_odf + • pandas.tests.io.excel.test_odswriter + • pandas.tests.io.excel.test_openpyxl + • pandas.tests.io.excel.test_readers + • pandas.tests.io.excel.test_style + • pandas.tests.io.excel.test_writers + • pandas.tests.io.excel.test_xlrd + • pandas.tests.io.excel.test_xlsxwriter + • pandas.tests.io.formats.style.test_bar + • pandas.tests.io.formats.style.test_exceptions + • pandas.tests.io.formats.style.test_format + • pandas.tests.io.formats.style.test_highlight + • pandas.tests.io.formats.style.test_html + • pandas.tests.io.formats.style.test_matplotlib + • pandas.tests.io.formats.style.test_non_unique + • pandas.tests.io.formats.style.test_style + • pandas.tests.io.formats.style.test_to_latex + • pandas.tests.io.formats.style.test_to_string + • pandas.tests.io.formats.style.test_tooltip + • pandas.tests.io.formats.test_eng_formatting + • pandas.tests.io.formats.test_format + • pandas.tests.io.formats.test_ipython_compat + • pandas.tests.io.formats.test_to_csv + • pandas.tests.io.formats.test_to_html + • pandas.tests.io.formats.test_to_latex + • pandas.tests.io.formats.test_to_markdown + • pandas.tests.io.formats.test_to_string + • pandas.tests.io.generate_legacy_storage_files + • pandas.tests.io.json.test_compression + • pandas.tests.io.json.test_deprecated_kwargs + • pandas.tests.io.json.test_json_table_schema + • pandas.tests.io.json.test_json_table_schema_ext_dtype + • pandas.tests.io.json.test_normalize + • pandas.tests.io.json.test_pandas + • pandas.tests.io.json.test_readlines + • pandas.tests.io.json.test_ujson + • pandas.tests.io.parser.common.test_chunksize + • pandas.tests.io.parser.common.test_common_basic + • pandas.tests.io.parser.common.test_data_list + • pandas.tests.io.parser.common.test_decimal + • pandas.tests.io.parser.common.test_file_buffer_url + • pandas.tests.io.parser.common.test_float + • pandas.tests.io.parser.common.test_index + • pandas.tests.io.parser.common.test_inf + • pandas.tests.io.parser.common.test_ints + • pandas.tests.io.parser.common.test_iterator + • pandas.tests.io.parser.common.test_read_errors + • pandas.tests.io.parser.conftest + • pandas.tests.io.parser.dtypes.test_categorical + • pandas.tests.io.parser.dtypes.test_dtypes_basic + • pandas.tests.io.parser.dtypes.test_empty + • pandas.tests.io.parser.test_c_parser_only + • pandas.tests.io.parser.test_comment + • pandas.tests.io.parser.test_compression + • pandas.tests.io.parser.test_converters + • pandas.tests.io.parser.test_dialect + • pandas.tests.io.parser.test_encoding + • pandas.tests.io.parser.test_header + • pandas.tests.io.parser.test_index_col + • pandas.tests.io.parser.test_mangle_dupes + • pandas.tests.io.parser.test_multi_thread + • pandas.tests.io.parser.test_na_values + • pandas.tests.io.parser.test_network + • pandas.tests.io.parser.test_parse_dates + • pandas.tests.io.parser.test_python_parser_only + • pandas.tests.io.parser.test_quoting + • pandas.tests.io.parser.test_read_fwf + • pandas.tests.io.parser.test_skiprows + • pandas.tests.io.parser.test_textreader + • pandas.tests.io.parser.test_upcast + • pandas.tests.io.parser.usecols.test_parse_dates + • pandas.tests.io.parser.usecols.test_strings + • pandas.tests.io.parser.usecols.test_usecols_basic + • pandas.tests.io.pytables.test_append + • pandas.tests.io.pytables.test_categorical + • pandas.tests.io.pytables.test_compat + • pandas.tests.io.pytables.test_complex + • pandas.tests.io.pytables.test_errors + • pandas.tests.io.pytables.test_file_handling + • pandas.tests.io.pytables.test_keys + • pandas.tests.io.pytables.test_put + • pandas.tests.io.pytables.test_pytables_missing + • pandas.tests.io.pytables.test_read + • pandas.tests.io.pytables.test_retain_attributes + • pandas.tests.io.pytables.test_round_trip + • pandas.tests.io.pytables.test_select + • pandas.tests.io.pytables.test_store + • pandas.tests.io.pytables.test_subclass + • pandas.tests.io.pytables.test_time_series + • pandas.tests.io.pytables.test_timezones + • pandas.tests.io.sas.test_sas + • pandas.tests.io.sas.test_sas7bdat + • pandas.tests.io.sas.test_xport + • pandas.tests.io.test_clipboard + • pandas.tests.io.test_common + • pandas.tests.io.test_compression + • pandas.tests.io.test_feather + • pandas.tests.io.test_fsspec + • pandas.tests.io.test_gbq + • pandas.tests.io.test_gcs + • pandas.tests.io.test_html + • pandas.tests.io.test_http_headers + • pandas.tests.io.test_orc + • pandas.tests.io.test_parquet + • pandas.tests.io.test_pickle + • pandas.tests.io.test_s3 + • pandas.tests.io.test_spss + • pandas.tests.io.test_sql + • pandas.tests.io.test_stata + • pandas.tests.io.xml.test_to_xml + • pandas.tests.io.xml.test_xml + • pandas.tests.io.xml.test_xml_dtypes + • pandas.tests.libs.test_hashtable + • pandas.tests.libs.test_lib + • pandas.tests.plotting.common + • pandas.tests.plotting.conftest + • pandas.tests.plotting.frame.test_frame + • pandas.tests.plotting.frame.test_frame_color + • pandas.tests.plotting.frame.test_frame_groupby + • pandas.tests.plotting.frame.test_frame_legend + • pandas.tests.plotting.frame.test_frame_subplots + • pandas.tests.plotting.frame.test_hist_box_by + • pandas.tests.plotting.test_backend + • pandas.tests.plotting.test_boxplot_method + • pandas.tests.plotting.test_common + • pandas.tests.plotting.test_converter + • pandas.tests.plotting.test_datetimelike + • pandas.tests.plotting.test_groupby + • pandas.tests.plotting.test_hist_method + • pandas.tests.plotting.test_misc + • pandas.tests.plotting.test_series + • pandas.tests.plotting.test_style + • pandas.tests.reductions.test_reductions + • pandas.tests.reductions.test_stat_reductions + • pandas.tests.resample.conftest + • pandas.tests.resample.test_base + • pandas.tests.resample.test_datetime_index + • pandas.tests.resample.test_period_index + • pandas.tests.resample.test_resample_api + • pandas.tests.resample.test_resampler_grouper + • pandas.tests.resample.test_time_grouper + • pandas.tests.resample.test_timedelta + • pandas.tests.reshape.concat.test_append + • pandas.tests.reshape.concat.test_append_common + • pandas.tests.reshape.concat.test_categorical + • pandas.tests.reshape.concat.test_concat + • pandas.tests.reshape.concat.test_dataframe + • pandas.tests.reshape.concat.test_datetimes + • pandas.tests.reshape.concat.test_empty + • pandas.tests.reshape.concat.test_index + • pandas.tests.reshape.concat.test_invalid + • pandas.tests.reshape.concat.test_series + • pandas.tests.reshape.concat.test_sort + • pandas.tests.reshape.merge.test_join + • pandas.tests.reshape.merge.test_merge + • pandas.tests.reshape.merge.test_merge_asof + • pandas.tests.reshape.merge.test_merge_cross + • pandas.tests.reshape.merge.test_merge_index_as_string + • pandas.tests.reshape.merge.test_merge_ordered + • pandas.tests.reshape.merge.test_multi + • pandas.tests.reshape.test_crosstab + • pandas.tests.reshape.test_cut + • pandas.tests.reshape.test_from_dummies + • pandas.tests.reshape.test_get_dummies + • pandas.tests.reshape.test_melt + • pandas.tests.reshape.test_pivot + • pandas.tests.reshape.test_pivot_multilevel + • pandas.tests.reshape.test_qcut + • pandas.tests.reshape.test_union_categoricals + • pandas.tests.reshape.test_util + • pandas.tests.scalar.interval.test_arithmetic + • pandas.tests.scalar.interval.test_constructors + • pandas.tests.scalar.interval.test_contains + • pandas.tests.scalar.interval.test_formats + • pandas.tests.scalar.interval.test_interval + • pandas.tests.scalar.interval.test_overlaps + • pandas.tests.scalar.period.test_arithmetic + • pandas.tests.scalar.period.test_asfreq + • pandas.tests.scalar.period.test_period + • pandas.tests.scalar.test_na_scalar + • pandas.tests.scalar.test_nat + • pandas.tests.scalar.timedelta.methods.test_as_unit + • pandas.tests.scalar.timedelta.methods.test_round + • pandas.tests.scalar.timedelta.test_arithmetic + • pandas.tests.scalar.timedelta.test_constructors + • pandas.tests.scalar.timedelta.test_formats + • pandas.tests.scalar.timedelta.test_timedelta + • pandas.tests.scalar.timestamp.methods.test_as_unit + • pandas.tests.scalar.timestamp.methods.test_to_julian_date + • pandas.tests.scalar.timestamp.methods.test_to_pydatetime + • pandas.tests.scalar.timestamp.methods.test_tz_convert + • pandas.tests.scalar.timestamp.methods.test_tz_localize + • pandas.tests.scalar.timestamp.test_comparisons + • pandas.tests.scalar.timestamp.test_constructors + • pandas.tests.scalar.timestamp.test_formats + • pandas.tests.scalar.timestamp.test_timestamp + • pandas.tests.scalar.timestamp.test_timezones + • pandas.tests.series.accessors.test_cat_accessor + • pandas.tests.series.accessors.test_dt_accessor + • pandas.tests.series.accessors.test_list_accessor + • pandas.tests.series.accessors.test_sparse_accessor + • pandas.tests.series.accessors.test_str_accessor + • pandas.tests.series.accessors.test_struct_accessor + • pandas.tests.series.indexing.test_datetime + • pandas.tests.series.indexing.test_delitem + • pandas.tests.series.indexing.test_get + • pandas.tests.series.indexing.test_getitem + • pandas.tests.series.indexing.test_indexing + • pandas.tests.series.indexing.test_mask + • pandas.tests.series.indexing.test_set_value + • pandas.tests.series.indexing.test_setitem + • pandas.tests.series.indexing.test_take + • pandas.tests.series.indexing.test_where + • pandas.tests.series.indexing.test_xs + • pandas.tests.series.methods.test_add_prefix_suffix + • pandas.tests.series.methods.test_align + • pandas.tests.series.methods.test_argsort + • pandas.tests.series.methods.test_asof + • pandas.tests.series.methods.test_astype + • pandas.tests.series.methods.test_between + • pandas.tests.series.methods.test_case_when + • pandas.tests.series.methods.test_clip + • pandas.tests.series.methods.test_combine + • pandas.tests.series.methods.test_combine_first + • pandas.tests.series.methods.test_compare + • pandas.tests.series.methods.test_convert_dtypes + • pandas.tests.series.methods.test_copy + • pandas.tests.series.methods.test_count + • pandas.tests.series.methods.test_cov_corr + • pandas.tests.series.methods.test_describe + • pandas.tests.series.methods.test_diff + • pandas.tests.series.methods.test_drop + • pandas.tests.series.methods.test_drop_duplicates + • pandas.tests.series.methods.test_dropna + • pandas.tests.series.methods.test_duplicated + • pandas.tests.series.methods.test_equals + • pandas.tests.series.methods.test_explode + • pandas.tests.series.methods.test_fillna + • pandas.tests.series.methods.test_get_numeric_data + • pandas.tests.series.methods.test_infer_objects + • pandas.tests.series.methods.test_info + • pandas.tests.series.methods.test_interpolate + • pandas.tests.series.methods.test_is_monotonic + • pandas.tests.series.methods.test_is_unique + • pandas.tests.series.methods.test_isin + • pandas.tests.series.methods.test_isna + • pandas.tests.series.methods.test_item + • pandas.tests.series.methods.test_map + • pandas.tests.series.methods.test_matmul + • pandas.tests.series.methods.test_nlargest + • pandas.tests.series.methods.test_nunique + • pandas.tests.series.methods.test_pct_change + • pandas.tests.series.methods.test_pop + • pandas.tests.series.methods.test_quantile + • pandas.tests.series.methods.test_rank + • pandas.tests.series.methods.test_reindex + • pandas.tests.series.methods.test_reindex_like + • pandas.tests.series.methods.test_rename + • pandas.tests.series.methods.test_rename_axis + • pandas.tests.series.methods.test_repeat + • pandas.tests.series.methods.test_replace + • pandas.tests.series.methods.test_reset_index + • pandas.tests.series.methods.test_round + • pandas.tests.series.methods.test_searchsorted + • pandas.tests.series.methods.test_set_name + • pandas.tests.series.methods.test_size + • pandas.tests.series.methods.test_sort_index + • pandas.tests.series.methods.test_sort_values + • pandas.tests.series.methods.test_to_csv + • pandas.tests.series.methods.test_to_dict + • pandas.tests.series.methods.test_to_frame + • pandas.tests.series.methods.test_to_numpy + • pandas.tests.series.methods.test_tolist + • pandas.tests.series.methods.test_truncate + • pandas.tests.series.methods.test_tz_localize + • pandas.tests.series.methods.test_unique + • pandas.tests.series.methods.test_unstack + • pandas.tests.series.methods.test_update + • pandas.tests.series.methods.test_value_counts + • pandas.tests.series.methods.test_values + • pandas.tests.series.methods.test_view + • pandas.tests.series.test_api + • pandas.tests.series.test_arithmetic + • pandas.tests.series.test_constructors + • pandas.tests.series.test_cumulative + • pandas.tests.series.test_formats + • pandas.tests.series.test_logical_ops + • pandas.tests.series.test_missing + • pandas.tests.series.test_npfuncs + • pandas.tests.series.test_reductions + • pandas.tests.series.test_subclass + • pandas.tests.series.test_ufunc + • pandas.tests.series.test_unary + • pandas.tests.strings + • pandas.tests.strings.conftest + • pandas.tests.strings.test_api + • pandas.tests.strings.test_case_justify + • pandas.tests.strings.test_cat + • pandas.tests.strings.test_extract + • pandas.tests.strings.test_find_replace + • pandas.tests.strings.test_get_dummies + • pandas.tests.strings.test_split_partition + • pandas.tests.strings.test_string_array + • pandas.tests.strings.test_strings + • pandas.tests.test_algos + • pandas.tests.test_common + • pandas.tests.test_downstream + • pandas.tests.test_errors + • pandas.tests.test_expressions + • pandas.tests.test_flags + • pandas.tests.test_multilevel + • pandas.tests.test_nanops + • pandas.tests.test_register_accessor + • pandas.tests.test_sorting + • pandas.tests.tools.test_to_datetime + • pandas.tests.tools.test_to_numeric + • pandas.tests.tools.test_to_time + • pandas.tests.tools.test_to_timedelta + • pandas.tests.tseries.frequencies.test_inference + • pandas.tests.tseries.holiday.test_calendar + • pandas.tests.tseries.holiday.test_federal + • pandas.tests.tseries.holiday.test_holiday + • pandas.tests.tseries.offsets.test_business_day + • pandas.tests.tseries.offsets.test_business_hour + • pandas.tests.tseries.offsets.test_business_month + • pandas.tests.tseries.offsets.test_custom_business_day + • pandas.tests.tseries.offsets.test_dst + • pandas.tests.tseries.offsets.test_fiscal + • pandas.tests.tseries.offsets.test_index + • pandas.tests.tseries.offsets.test_month + • pandas.tests.tseries.offsets.test_offsets + • pandas.tests.tseries.offsets.test_offsets_properties + • pandas.tests.tseries.offsets.test_ticks + • pandas.tests.tseries.offsets.test_year + • pandas.tests.tslibs.test_array_to_datetime + • pandas.tests.tslibs.test_conversion + • pandas.tests.tslibs.test_liboffsets + • pandas.tests.tslibs.test_parse_iso8601 + • pandas.tests.tslibs.test_strptime + • pandas.tests.tslibs.test_timedeltas + • pandas.tests.tslibs.test_timezones + • pandas.tests.util.test_assert_almost_equal + • pandas.tests.util.test_assert_categorical_equal + • pandas.tests.util.test_assert_extension_array_equal + • pandas.tests.util.test_assert_frame_equal + • pandas.tests.util.test_assert_index_equal + • pandas.tests.util.test_assert_interval_array_equal + • pandas.tests.util.test_assert_numpy_array_equal + • pandas.tests.util.test_assert_series_equal + • pandas.tests.util.test_hashing + • pandas.tests.util.test_numba + • pandas.tests.util.test_shares_memory + • pandas.tests.util.test_show_versions + • pandas.tests.util.test_util + • pandas.tests.util.test_validate_inclusive + • pandas.tests.window.conftest + • pandas.tests.window.moments.conftest + • pandas.tests.window.moments.test_moments_consistency_ewm + • pandas.tests.window.moments.test_moments_consistency_expanding + • pandas.tests.window.moments.test_moments_consistency_rolling + • pandas.tests.window.test_api + • pandas.tests.window.test_apply + • pandas.tests.window.test_base_indexer + • pandas.tests.window.test_cython_aggregations + • pandas.tests.window.test_dtypes + • pandas.tests.window.test_ewm + • pandas.tests.window.test_expanding + • pandas.tests.window.test_groupby + • pandas.tests.window.test_numba + • pandas.tests.window.test_online + • pandas.tests.window.test_pairwise + • pandas.tests.window.test_rolling + • pandas.tests.window.test_rolling_functions + • pandas.tests.window.test_rolling_quantile + • pandas.tests.window.test_rolling_skew_kurt + • pandas.tests.window.test_timeseries_window + • pandas.tests.window.test_win_type + • pandas.tseries + • pandas.tseries.frequencies + • pandas.tseries.holiday + • pandas.util + • pandas.util._doctools + • pandas.util._exceptions + +
+ +
+ +
+ + pandas._config +Package +
+imported by: + entry.py + • pandas + • pandas._config + • pandas._config.config + • pandas._config.dates + • pandas._config.display + • pandas._config.localization + • pandas._testing.contexts + • pandas.core.apply + • pandas.core.arrays.categorical + • pandas.core.arrays.string_ + • pandas.core.base + • pandas.core.computation.common + • pandas.core.computation.expressions + • pandas.core.construction + • pandas.core.dtypes.cast + • pandas.core.dtypes.missing + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.grouper + • pandas.core.indexes.base + • pandas.core.indexes.datetimelike + • pandas.core.indexes.multi + • pandas.core.indexing + • pandas.core.internals.base + • pandas.core.internals.blocks + • pandas.core.internals.construction + • pandas.core.internals.managers + • pandas.core.nanops + • pandas.core.reshape.concat + • pandas.core.series + • pandas.io.excel._base + • pandas.io.feather_format + • pandas.io.formats.html + • pandas.io.formats.info + • pandas.io.formats.printing + • pandas.io.formats.style + • pandas.io.formats.style_render + • pandas.io.orc + • pandas.io.parquet + • pandas.io.parsers.arrow_parser_wrapper + • pandas.io.parsers.readers + • pandas.io.pytables + • pandas.io.sql + • pandas.plotting._core + • pandas.tests.arithmetic.test_object + • pandas.tests.arrays.categorical.test_constructors + • pandas.tests.arrays.categorical.test_repr + • pandas.tests.base.test_misc + • pandas.tests.base.test_unique + • pandas.tests.config.test_config + • pandas.tests.dtypes.test_missing + • pandas.tests.extension.base.ops + • pandas.tests.extension.test_categorical + • pandas.tests.frame.constructors.test_from_dict + • pandas.tests.frame.constructors.test_from_records + • pandas.tests.frame.methods.test_fillna + • pandas.tests.frame.methods.test_interpolate + • pandas.tests.frame.methods.test_replace + • pandas.tests.frame.test_api + • pandas.tests.frame.test_arithmetic + • pandas.tests.frame.test_constructors + • pandas.tests.frame.test_reductions + • pandas.tests.frame.test_repr + • pandas.tests.indexes.base_class.test_formats + • pandas.tests.indexes.categorical.test_category + • pandas.tests.indexes.categorical.test_formats + • pandas.tests.indexes.interval.test_formats + • pandas.tests.indexes.test_old_base + • pandas.tests.indexing.test_coercion + • pandas.tests.indexing.test_indexing + • pandas.tests.indexing.test_loc + • pandas.tests.io.excel.test_readers + • pandas.tests.io.formats.test_console + • pandas.tests.io.formats.test_format + • pandas.tests.io.formats.test_to_string + • pandas.tests.io.json.test_pandas + • pandas.tests.io.test_parquet + • pandas.tests.reshape.test_pivot + • pandas.tests.series.indexing.test_where + • pandas.tests.series.methods.test_reindex + • pandas.tests.series.methods.test_replace + • pandas.tests.series.test_formats + • pandas.util._test_decorators + +
+ +
+ + + +
+ + pandas._config.dates +SourceModule
+imports: + __future__ + • pandas._config + • pandas._config.config + +
+
+imported by: + entry.py + • pandas._config + +
+ +
+ +
+ + pandas._config.display +SourceModule
+imports: + __future__ + • locale + • pandas._config + • pandas._config.config + • sys + +
+
+imported by: + entry.py + • pandas._config + +
+ +
+ +
+ + pandas._config.localization +SourceModule
+imports: + __future__ + • collections.abc + • contextlib + • locale + • pandas._config + • pandas._config.config + • platform + • re + • subprocess + • typing + +
+ + +
+ +
+ + pandas._libs +Package +
+imported by: + entry.py + • pandas + • pandas._libs.algos + • pandas._libs.arrays + • pandas._libs.byteswap + • pandas._libs.groupby + • pandas._libs.hashing + • pandas._libs.hashtable + • pandas._libs.index + • pandas._libs.indexing + • pandas._libs.internals + • pandas._libs.interval + • pandas._libs.join + • pandas._libs.json + • pandas._libs.lib + • pandas._libs.missing + • pandas._libs.ops + • pandas._libs.ops_dispatch + • pandas._libs.pandas_datetime + • pandas._libs.pandas_parser + • pandas._libs.parsers + • pandas._libs.properties + • pandas._libs.reshape + • pandas._libs.sas + • pandas._libs.sparse + • pandas._libs.testing + • pandas._libs.tslib + • pandas._libs.tslibs + • pandas._libs.window + • pandas._libs.writers + • pandas._testing.asserters + • pandas._typing + • pandas.api.typing + • pandas.core._numba.extensions + • pandas.core.algorithms + • pandas.core.api + • pandas.core.apply + • pandas.core.array_algos.datetimelike_accumulations + • pandas.core.array_algos.masked_reductions + • pandas.core.array_algos.putmask + • pandas.core.array_algos.take + • pandas.core.arraylike + • pandas.core.arrays._mixins + • pandas.core.arrays._utils + • pandas.core.arrays.arrow.array + • pandas.core.arrays.base + • pandas.core.arrays.boolean + • pandas.core.arrays.categorical + • pandas.core.arrays.datetimelike + • pandas.core.arrays.datetimes + • pandas.core.arrays.interval + • pandas.core.arrays.masked + • pandas.core.arrays.numeric + • pandas.core.arrays.numpy_ + • pandas.core.arrays.period + • pandas.core.arrays.sparse.array + • pandas.core.arrays.sparse.scipy_sparse + • pandas.core.arrays.string_ + • pandas.core.arrays.string_arrow + • pandas.core.arrays.timedeltas + • pandas.core.base + • pandas.core.common + • pandas.core.construction + • pandas.core.dtypes.astype + • pandas.core.dtypes.base + • pandas.core.dtypes.cast + • pandas.core.dtypes.common + • pandas.core.dtypes.concat + • pandas.core.dtypes.dtypes + • pandas.core.dtypes.inference + • pandas.core.dtypes.missing + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.generic + • pandas.core.groupby.groupby + • pandas.core.groupby.grouper + • pandas.core.groupby.ops + • pandas.core.indexers.utils + • pandas.core.indexes.accessors + • pandas.core.indexes.api + • pandas.core.indexes.base + • pandas.core.indexes.category + • pandas.core.indexes.datetimelike + • pandas.core.indexes.datetimes + • pandas.core.indexes.interval + • pandas.core.indexes.multi + • pandas.core.indexes.period + • pandas.core.indexes.range + • pandas.core.indexes.timedeltas + • pandas.core.interchange.utils + • pandas.core.internals.array_manager + • pandas.core.internals.base + • pandas.core.internals.blocks + • pandas.core.internals.concat + • pandas.core.internals.construction + • pandas.core.internals.managers + • pandas.core.methods.selectn + • pandas.core.methods.to_dict + • pandas.core.missing + • pandas.core.nanops + • pandas.core.ops.array_ops + • pandas.core.ops.mask_ops + • pandas.core.resample + • pandas.core.reshape.merge + • pandas.core.reshape.pivot + • pandas.core.reshape.tile + • pandas.core.sample + • pandas.core.series + • pandas.core.sorting + • pandas.core.strings.accessor + • pandas.core.strings.object_array + • pandas.core.tools.datetimes + • pandas.core.tools.numeric + • pandas.core.tools.timedeltas + • pandas.io.clipboards + • pandas.io.excel._base + • pandas.io.feather_format + • pandas.io.formats.csvs + • pandas.io.formats.format + • pandas.io.formats.html + • pandas.io.formats.style_render + • pandas.io.html + • pandas.io.json._json + • pandas.io.json._table_schema + • pandas.io.orc + • pandas.io.parquet + • pandas.io.parsers.arrow_parser_wrapper + • pandas.io.parsers.base_parser + • pandas.io.parsers.c_parser_wrapper + • pandas.io.parsers.python_parser + • pandas.io.parsers.readers + • pandas.io.pytables + • pandas.io.spss + • pandas.io.sql + • pandas.io.stata + • pandas.io.xml + • pandas.plotting._matplotlib.boxplot + • pandas.plotting._matplotlib.converter + • pandas.plotting._matplotlib.core + • pandas.tests.arrays.datetimes.test_constructors + • pandas.tests.arrays.test_datetimelike + • pandas.tests.dtypes.test_inference + • pandas.tests.dtypes.test_missing + • pandas.tests.extension.test_arrow + • pandas.tests.extension.test_period + • pandas.tests.frame.indexing.test_indexing + • pandas.tests.frame.test_constructors + • pandas.tests.frame.test_stack_unstack + • pandas.tests.groupby.test_bin_groupby + • pandas.tests.groupby.test_libgroupby + • pandas.tests.groupby.test_numeric_only + • pandas.tests.groupby.transform.test_transform + • pandas.tests.indexes.base_class.test_indexing + • pandas.tests.indexes.categorical.test_category + • pandas.tests.indexes.datetimes.test_indexing + • pandas.tests.indexes.multi.test_duplicates + • pandas.tests.indexes.multi.test_indexing + • pandas.tests.indexes.multi.test_integrity + • pandas.tests.indexes.test_engines + • pandas.tests.indexes.test_setops + • pandas.tests.indexes.timedeltas.methods.test_insert + • pandas.tests.indexing.interval.test_interval + • pandas.tests.indexing.multiindex.test_chaining_and_caching + • pandas.tests.indexing.test_loc + • pandas.tests.io.parser.common.test_chunksize + • pandas.tests.io.parser.dtypes.test_categorical + • pandas.tests.io.test_sql + • pandas.tests.libs.test_hashtable + • pandas.tests.libs.test_join + • pandas.tests.libs.test_lib + • pandas.tests.libs.test_libalgos + • pandas.tests.resample.test_datetime_index + • pandas.tests.resample.test_resample_api + • pandas.tests.reshape.test_pivot_multilevel + • pandas.tests.scalar.timedelta.methods.test_round + • pandas.tests.scalar.timedelta.test_timedelta + • pandas.tests.scalar.timestamp.methods.test_round + • pandas.tests.series.indexing.test_datetime + • pandas.tests.series.methods.test_convert_dtypes + • pandas.tests.series.test_arithmetic + • pandas.tests.series.test_constructors + • pandas.tests.series.test_missing + • pandas.tests.strings.test_string_array + • pandas.tests.test_algos + • pandas.tests.test_take + • pandas.tests.tools.test_to_datetime + • pandas.tests.tslibs.test_api + • pandas.tests.tslibs.test_array_to_datetime + • pandas.tests.tslibs.test_parse_iso8601 + • pandas.tseries.frequencies + • pandas.util._validators + +
+ +
+ + + +
+ + pandas._libs.arrays /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/arrays.cpython-312-darwin.so
+imports: + numpy + • pandas._libs + • pandas._typing + • typing + +
+ + +
+ +
+ + pandas._libs.byteswap /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/byteswap.cpython-312-darwin.so
+imports: + pandas._libs + +
+ + +
+ +
+ + pandas._libs.groupby /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/groupby.cpython-312-darwin.so
+imports: + numpy + • pandas._libs + • pandas._typing + • typing + +
+ + +
+ +
+ + pandas._libs.hashing /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/hashing.cpython-312-darwin.so
+imports: + numpy + • pandas._libs + • pandas._typing + +
+
+imported by: + entry.py + • pandas + • pandas.core.util.hashing + +
+ +
+ +
+ + pandas._libs.hashtable /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/hashtable.cpython-312-darwin.so
+imports: + numpy + • pandas._libs + • pandas._typing + • typing + +
+ + +
+ + + +
+ + pandas._libs.indexing /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/indexing.cpython-312-darwin.so
+imports: + pandas._libs + • pandas.core.indexing + • typing + +
+
+imported by: + entry.py + • pandas + • pandas.core.indexing + +
+ +
+ +
+ + pandas._libs.internals /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/internals.cpython-312-darwin.so
+imports: + numpy + • pandas + • pandas._libs + • pandas._typing + • pandas.core.internals.blocks + • typing + • weakref + +
+ + +
+ +
+ + pandas._libs.interval /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/interval.cpython-312-darwin.so
+imports: + numpy + • numpy.typing + • pandas._libs + • pandas._typing + • typing + +
+ + +
+ +
+ + pandas._libs.join /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/join.cpython-312-darwin.so
+imports: + numpy + • pandas._libs + • pandas._typing + +
+ + +
+ +
+ + pandas._libs.json /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/json.cpython-312-darwin.so
+imports: + pandas._libs + • typing + +
+ + +
+ +
+ + pandas._libs.lib /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/lib.cpython-312-darwin.so
+imports: + decimal + • enum + • numpy + • pandas._libs + • pandas._libs.interval + • pandas._libs.tslibs + • pandas._typing + • typing + +
+
+imported by: + entry.py + • pandas + • pandas._libs + • pandas._testing.asserters + • pandas.api.extensions + • pandas.api.types + • pandas.compat.numpy.function + • pandas.core._numba.extensions + • pandas.core.algorithms + • pandas.core.apply + • pandas.core.array_algos.putmask + • pandas.core.array_algos.take + • pandas.core.arraylike + • pandas.core.arrays._mixins + • pandas.core.arrays._ranges + • pandas.core.arrays._utils + • pandas.core.arrays.arrow.array + • pandas.core.arrays.base + • pandas.core.arrays.boolean + • pandas.core.arrays.categorical + • pandas.core.arrays.datetimelike + • pandas.core.arrays.datetimes + • pandas.core.arrays.interval + • pandas.core.arrays.masked + • pandas.core.arrays.numeric + • pandas.core.arrays.numpy_ + • pandas.core.arrays.period + • pandas.core.arrays.sparse.array + • pandas.core.arrays.sparse.scipy_sparse + • pandas.core.arrays.string_ + • pandas.core.arrays.string_arrow + • pandas.core.arrays.timedeltas + • pandas.core.base + • pandas.core.common + • pandas.core.construction + • pandas.core.dtypes.astype + • pandas.core.dtypes.cast + • pandas.core.dtypes.common + • pandas.core.dtypes.concat + • pandas.core.dtypes.dtypes + • pandas.core.dtypes.inference + • pandas.core.dtypes.missing + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.generic + • pandas.core.groupby.groupby + • pandas.core.groupby.grouper + • pandas.core.groupby.ops + • pandas.core.indexers.utils + • pandas.core.indexes.accessors + • pandas.core.indexes.api + • pandas.core.indexes.base + • pandas.core.indexes.datetimelike + • pandas.core.indexes.datetimes + • pandas.core.indexes.interval + • pandas.core.indexes.multi + • pandas.core.indexes.range + • pandas.core.indexes.timedeltas + • pandas.core.indexing + • pandas.core.interchange.column + • pandas.core.interchange.utils + • pandas.core.internals.array_manager + • pandas.core.internals.base + • pandas.core.internals.blocks + • pandas.core.internals.concat + • pandas.core.internals.construction + • pandas.core.internals.managers + • pandas.core.methods.to_dict + • pandas.core.missing + • pandas.core.nanops + • pandas.core.ops.array_ops + • pandas.core.ops.common + • pandas.core.ops.mask_ops + • pandas.core.resample + • pandas.core.reshape.merge + • pandas.core.reshape.pivot + • pandas.core.reshape.tile + • pandas.core.sample + • pandas.core.series + • pandas.core.sorting + • pandas.core.strings.accessor + • pandas.core.strings.object_array + • pandas.core.tools.datetimes + • pandas.core.tools.numeric + • pandas.core.tools.timedeltas + • pandas.core.tools.times + • pandas.io.clipboards + • pandas.io.excel._base + • pandas.io.feather_format + • pandas.io.formats.excel + • pandas.io.formats.format + • pandas.io.formats.html + • pandas.io.formats.style_render + • pandas.io.html + • pandas.io.json._json + • pandas.io.json._table_schema + • pandas.io.orc + • pandas.io.parquet + • pandas.io.parsers.arrow_parser_wrapper + • pandas.io.parsers.base_parser + • pandas.io.parsers.c_parser_wrapper + • pandas.io.parsers.python_parser + • pandas.io.parsers.readers + • pandas.io.pytables + • pandas.io.spss + • pandas.io.sql + • pandas.io.stata + • pandas.io.xml + • pandas.plotting._matplotlib.boxplot + • pandas.plotting._matplotlib.converter + • pandas.plotting._matplotlib.core + • pandas.tests.dtypes.test_inference + • pandas.tests.extension.test_arrow + • pandas.tests.frame.test_constructors + • pandas.tests.frame.test_stack_unstack + • pandas.tests.groupby.test_bin_groupby + • pandas.tests.groupby.test_numeric_only + • pandas.tests.groupby.transform.test_transform + • pandas.tests.indexes.test_setops + • pandas.tests.indexes.timedeltas.methods.test_insert + • pandas.tests.io.test_sql + • pandas.tests.libs.test_lib + • pandas.tests.resample.test_datetime_index + • pandas.tests.resample.test_resample_api + • pandas.tests.reshape.test_pivot_multilevel + • pandas.tests.scalar.timedelta.methods.test_round + • pandas.tests.scalar.timedelta.test_timedelta + • pandas.tests.scalar.timestamp.methods.test_round + • pandas.tests.series.methods.test_convert_dtypes + • pandas.tests.series.test_arithmetic + • pandas.tests.series.test_constructors + • pandas.tests.strings.test_string_array + • pandas.tseries.frequencies + • pandas.util._validators + +
+ +
+ + + +
+ + pandas._libs.ops /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/ops.cpython-312-darwin.so
+imports: + numpy + • pandas._libs + • pandas._typing + • typing + +
+ + +
+ +
+ + pandas._libs.ops_dispatch /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/ops_dispatch.cpython-312-darwin.so
+imports: + numpy + • pandas._libs + +
+
+imported by: + entry.py + • pandas + • pandas.core.arraylike + +
+ +
+ +
+ + pandas._libs.pandas_datetime /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/pandas_datetime.cpython-312-darwin.so
+imports: + pandas._libs + +
+
+imported by: + entry.py + • pandas + • pandas._libs + +
+ +
+ +
+ + pandas._libs.pandas_parser /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/pandas_parser.cpython-312-darwin.so
+imports: + pandas._libs + +
+
+imported by: + entry.py + • pandas + • pandas._libs + +
+ +
+ +
+ + pandas._libs.parsers /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/parsers.cpython-312-darwin.so
+imports: + numpy + • pandas._libs + • pandas._typing + • typing + +
+ + +
+ +
+ + pandas._libs.properties /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/properties.cpython-312-darwin.so
+imports: + pandas._libs + • pandas._typing + • typing + +
+ + +
+ +
+ + pandas._libs.reshape /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/reshape.cpython-312-darwin.so
+imports: + numpy + • pandas._libs + • pandas._typing + +
+
+imported by: + entry.py + • pandas + • pandas._libs + • pandas.core.reshape.reshape + • pandas.core.series + +
+ +
+ +
+ + pandas._libs.sas /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/sas.cpython-312-darwin.so
+imports: + pandas._libs + • pandas.io.sas.sas7bdat + +
+
+imported by: + entry.py + • pandas + • pandas.io.sas.sas7bdat + +
+ +
+ +
+ + pandas._libs.sparse /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/sparse.cpython-312-darwin.so
+imports: + numpy + • pandas._libs + • pandas._typing + • typing + +
+ + +
+ +
+ + pandas._libs.testing /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/testing.cpython-312-darwin.so
+imports: + pandas._libs + +
+
+imported by: + entry.py + • pandas + • pandas._testing.asserters + +
+ +
+ +
+ + pandas._libs.tslib /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslib.cpython-312-darwin.so
+imports: + datetime + • numpy + • pandas._libs + • pandas._typing + +
+ + +
+ +
+ + pandas._libs.tslibs +Package +
+imported by: + entry.py + • pandas + • pandas._libs + • pandas._libs.lib + • pandas._libs.tslibs + • pandas._libs.tslibs.base + • pandas._libs.tslibs.ccalendar + • pandas._libs.tslibs.conversion + • pandas._libs.tslibs.dtypes + • pandas._libs.tslibs.fields + • pandas._libs.tslibs.nattype + • pandas._libs.tslibs.np_datetime + • pandas._libs.tslibs.offsets + • pandas._libs.tslibs.parsing + • pandas._libs.tslibs.period + • pandas._libs.tslibs.strptime + • pandas._libs.tslibs.timedeltas + • pandas._libs.tslibs.timestamps + • pandas._libs.tslibs.timezones + • pandas._libs.tslibs.tzconversion + • pandas._libs.tslibs.vectorized + • pandas._typing + • pandas.compat.pickle_compat + • pandas.core.arrays._mixins + • pandas.core.arrays._ranges + • pandas.core.arrays.arrow.array + • pandas.core.arrays.datetimelike + • pandas.core.arrays.datetimes + • pandas.core.arrays.masked + • pandas.core.arrays.numpy_ + • pandas.core.arrays.period + • pandas.core.arrays.sparse.array + • pandas.core.arrays.timedeltas + • pandas.core.computation.ops + • pandas.core.computation.pytables + • pandas.core.computation.scope + • pandas.core.construction + • pandas.core.dtypes.cast + • pandas.core.dtypes.common + • pandas.core.dtypes.dtypes + • pandas.core.dtypes.missing + • pandas.core.generic + • pandas.core.groupby.grouper + • pandas.core.indexers.objects + • pandas.core.indexes.base + • pandas.core.indexes.datetimelike + • pandas.core.indexes.datetimes + • pandas.core.indexes.interval + • pandas.core.indexes.period + • pandas.core.indexes.timedeltas + • pandas.core.interchange.column + • pandas.core.internals.managers + • pandas.core.methods.describe + • pandas.core.ops.array_ops + • pandas.core.resample + • pandas.core.tools.datetimes + • pandas.core.tools.timedeltas + • pandas.core.window.ewm + • pandas.core.window.rolling + • pandas.errors + • pandas.io.formats.format + • pandas.io.json._json + • pandas.io.json._table_schema + • pandas.io.parsers.base_parser + • pandas.io.pytables + • pandas.plotting._matplotlib.converter + • pandas.plotting._matplotlib.timeseries + • pandas.tests.arithmetic.test_period + • pandas.tests.arrays.period.test_constructors + • pandas.tests.arrays.test_datetimes + • pandas.tests.arrays.test_period + • pandas.tests.dtypes.cast.test_promote + • pandas.tests.dtypes.test_missing + • pandas.tests.extension.test_arrow + • pandas.tests.frame.methods.test_asof + • pandas.tests.frame.methods.test_at_time + • pandas.tests.frame.methods.test_between_time + • pandas.tests.groupby.test_reductions + • pandas.tests.indexes.datetimes.methods.test_round + • pandas.tests.indexes.datetimes.methods.test_tz_convert + • pandas.tests.indexes.datetimes.test_constructors + • pandas.tests.indexes.datetimes.test_date_range + • pandas.tests.indexes.datetimes.test_scalar_compat + • pandas.tests.indexes.datetimes.test_timezones + • pandas.tests.indexes.period.test_indexing + • pandas.tests.indexes.period.test_join + • pandas.tests.indexes.period.test_searchsorted + • pandas.tests.indexes.test_old_base + • pandas.tests.interchange.test_impl + • pandas.tests.io.parser.test_parse_dates + • pandas.tests.io.pytables.test_append + • pandas.tests.io.pytables.test_put + • pandas.tests.io.pytables.test_read + • pandas.tests.io.pytables.test_round_trip + • pandas.tests.io.pytables.test_select + • pandas.tests.plotting.test_converter + • pandas.tests.plotting.test_datetimelike + • pandas.tests.scalar.period.test_period + • pandas.tests.scalar.test_nat + • pandas.tests.scalar.timedelta.methods.test_round + • pandas.tests.scalar.timedelta.test_constructors + • pandas.tests.scalar.timedelta.test_timedelta + • pandas.tests.scalar.timestamp.methods.test_normalize + • pandas.tests.scalar.timestamp.methods.test_replace + • pandas.tests.scalar.timestamp.methods.test_round + • pandas.tests.scalar.timestamp.methods.test_timestamp_method + • pandas.tests.scalar.timestamp.methods.test_tz_convert + • pandas.tests.scalar.timestamp.test_arithmetic + • pandas.tests.scalar.timestamp.test_timezones + • pandas.tests.series.indexing.test_getitem + • pandas.tests.series.methods.test_asof + • pandas.tests.series.methods.test_astype + • pandas.tests.series.methods.test_tz_localize + • pandas.tests.series.test_arithmetic + • pandas.tests.tools.test_to_datetime + • pandas.tests.tseries.frequencies.test_freq_code + • pandas.tests.tseries.frequencies.test_frequencies + • pandas.tests.tseries.offsets.test_business_hour + • pandas.tests.tseries.offsets.test_common + • pandas.tests.tseries.offsets.test_custom_business_hour + • pandas.tests.tseries.offsets.test_dst + • pandas.tests.tseries.offsets.test_month + • pandas.tests.tseries.offsets.test_offsets + • pandas.tests.tseries.offsets.test_week + • pandas.tests.tslibs.test_api + • pandas.tests.tslibs.test_ccalendar + • pandas.tests.tslibs.test_conversion + • pandas.tests.tslibs.test_fields + • pandas.tests.tslibs.test_parsing + • pandas.tests.tslibs.test_period + • pandas.tests.tslibs.test_resolution + • pandas.tests.tslibs.test_timezones + • pandas.tests.tslibs.test_to_offset + • pandas.tseries.frequencies + +
+ +
+ +
+ + pandas._libs.tslibs.base /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/base.cpython-312-darwin.so
+imports: + pandas._libs.tslibs + +
+
+imported by: + entry.py + • pandas + +
+ +
+ +
+ + pandas._libs.tslibs.ccalendar /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/ccalendar.cpython-312-darwin.so
+imports: + pandas._libs.tslibs + +
+ + +
+ +
+ + pandas._libs.tslibs.conversion /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/conversion.cpython-312-darwin.so
+imports: + datetime + • numpy + • pandas._libs.tslibs + +
+ + +
+ +
+ + pandas._libs.tslibs.dtypes /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/dtypes.cpython-312-darwin.so
+imports: + enum + • pandas._libs.tslibs + +
+ + +
+ +
+ + pandas._libs.tslibs.fields /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/fields.cpython-312-darwin.so
+imports: + numpy + • pandas._libs.tslibs + • pandas._typing + +
+ + +
+ +
+ + pandas._libs.tslibs.nattype /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/nattype.cpython-312-darwin.so
+imports: + datetime + • numpy + • pandas._libs.tslibs + • pandas._libs.tslibs.period + • pandas._typing + • typing + +
+ + +
+ +
+ + pandas._libs.tslibs.np_datetime /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/np_datetime.cpython-312-darwin.so
+imports: + numpy + • pandas._libs.tslibs + • pandas._typing + +
+ + +
+ +
+ + pandas._libs.tslibs.offsets /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/offsets.cpython-312-darwin.so + + +
+ +
+ + pandas._libs.tslibs.parsing /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/parsing.cpython-312-darwin.so
+imports: + datetime + • numpy + • pandas._libs.tslibs + • pandas._typing + +
+ + +
+ + + +
+ + pandas._libs.tslibs.strptime /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/strptime.cpython-312-darwin.so
+imports: + numpy + • pandas._libs.tslibs + • pandas._typing + +
+ + +
+ +
+ + pandas._libs.tslibs.timedeltas /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/timedeltas.cpython-312-darwin.so
+imports: + datetime + • numpy + • pandas._libs.tslibs + • pandas._typing + • typing + +
+ + +
+ +
+ + pandas._libs.tslibs.timestamps /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/timestamps.cpython-312-darwin.so
+imports: + datetime + • numpy + • pandas._libs.tslibs + • pandas._typing + • time + • typing + +
+ + +
+ +
+ + pandas._libs.tslibs.timezones /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/timezones.cpython-312-darwin.so
+imports: + datetime + • numpy + • pandas._libs.tslibs + • typing + +
+ + +
+ +
+ + pandas._libs.tslibs.tzconversion /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/tzconversion.cpython-312-darwin.so
+imports: + datetime + • numpy + • pandas._libs.tslibs + • pandas._typing + • typing + +
+ + +
+ +
+ + pandas._libs.tslibs.vectorized /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/tslibs/vectorized.cpython-312-darwin.so + + +
+ +
+ + pandas._libs.window +Package
+imports: + pandas._libs + +
+ + +
+ +
+ + pandas._libs.window.aggregations /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/window/aggregations.cpython-312-darwin.so
+imports: + numpy + • pandas._libs.window + • pandas._typing + • typing + +
+ + +
+ +
+ + pandas._libs.window.indexers /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/window/indexers.cpython-312-darwin.so
+imports: + numpy + • pandas._libs.window + • pandas._typing + +
+
+imported by: + entry.py + • pandas + • pandas.core.indexers.objects + +
+ +
+ +
+ + pandas._libs.writers /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/pandas/_libs/writers.cpython-312-darwin.so
+imports: + numpy + • pandas._libs + • pandas._typing + +
+ + +
+ +
+ + pandas._testing +Package +
+imported by: + entry.py + • pandas._testing._hypothesis + • pandas._testing._io + • pandas._testing._warnings + • pandas._testing.asserters + • pandas._testing.compat + • pandas._testing.contexts + • pandas.conftest + • pandas.testing + • pandas.tests.api.test_api + • pandas.tests.api.test_types + • pandas.tests.apply.test_frame_apply + • pandas.tests.apply.test_frame_apply_relabeling + • pandas.tests.apply.test_frame_transform + • pandas.tests.apply.test_invalid_arg + • pandas.tests.apply.test_numba + • pandas.tests.apply.test_series_apply + • pandas.tests.apply.test_series_apply_relabeling + • pandas.tests.apply.test_series_transform + • pandas.tests.apply.test_str + • pandas.tests.arithmetic.common + • pandas.tests.arithmetic.test_array_ops + • pandas.tests.arithmetic.test_categorical + • pandas.tests.arithmetic.test_datetime64 + • pandas.tests.arithmetic.test_interval + • pandas.tests.arithmetic.test_numeric + • pandas.tests.arithmetic.test_object + • pandas.tests.arithmetic.test_period + • pandas.tests.arithmetic.test_timedelta64 + • pandas.tests.arrays.boolean.test_arithmetic + • pandas.tests.arrays.boolean.test_astype + • pandas.tests.arrays.boolean.test_comparison + • pandas.tests.arrays.boolean.test_construction + • pandas.tests.arrays.boolean.test_function + • pandas.tests.arrays.boolean.test_indexing + • pandas.tests.arrays.boolean.test_logical + • pandas.tests.arrays.boolean.test_ops + • pandas.tests.arrays.categorical.test_algos + • pandas.tests.arrays.categorical.test_analytics + • pandas.tests.arrays.categorical.test_api + • pandas.tests.arrays.categorical.test_astype + • pandas.tests.arrays.categorical.test_constructors + • pandas.tests.arrays.categorical.test_dtypes + • pandas.tests.arrays.categorical.test_indexing + • pandas.tests.arrays.categorical.test_map + • pandas.tests.arrays.categorical.test_missing + • pandas.tests.arrays.categorical.test_operators + • pandas.tests.arrays.categorical.test_replace + • pandas.tests.arrays.categorical.test_sorting + • pandas.tests.arrays.categorical.test_subclass + • pandas.tests.arrays.categorical.test_take + • pandas.tests.arrays.categorical.test_warnings + • pandas.tests.arrays.datetimes.test_constructors + • pandas.tests.arrays.datetimes.test_cumulative + • pandas.tests.arrays.datetimes.test_reductions + • pandas.tests.arrays.floating.test_arithmetic + • pandas.tests.arrays.floating.test_astype + • pandas.tests.arrays.floating.test_comparison + • pandas.tests.arrays.floating.test_concat + • pandas.tests.arrays.floating.test_construction + • pandas.tests.arrays.floating.test_function + • pandas.tests.arrays.floating.test_to_numpy + • pandas.tests.arrays.integer.test_arithmetic + • pandas.tests.arrays.integer.test_comparison + • pandas.tests.arrays.integer.test_concat + • pandas.tests.arrays.integer.test_construction + • pandas.tests.arrays.integer.test_dtypes + • pandas.tests.arrays.integer.test_function + • pandas.tests.arrays.integer.test_indexing + • pandas.tests.arrays.integer.test_reduction + • pandas.tests.arrays.interval.test_astype + • pandas.tests.arrays.interval.test_interval + • pandas.tests.arrays.interval.test_interval_pyarrow + • pandas.tests.arrays.interval.test_overlaps + • pandas.tests.arrays.masked.test_arithmetic + • pandas.tests.arrays.masked.test_arrow_compat + • pandas.tests.arrays.masked.test_function + • pandas.tests.arrays.masked_shared + • pandas.tests.arrays.numpy_.test_indexing + • pandas.tests.arrays.numpy_.test_numpy + • pandas.tests.arrays.period.test_arrow_compat + • pandas.tests.arrays.period.test_astype + • pandas.tests.arrays.period.test_constructors + • pandas.tests.arrays.sparse.test_accessor + • pandas.tests.arrays.sparse.test_arithmetics + • pandas.tests.arrays.sparse.test_array + • pandas.tests.arrays.sparse.test_astype + • pandas.tests.arrays.sparse.test_combine_concat + • pandas.tests.arrays.sparse.test_constructors + • pandas.tests.arrays.sparse.test_indexing + • pandas.tests.arrays.sparse.test_libsparse + • pandas.tests.arrays.sparse.test_unary + • pandas.tests.arrays.string_.test_string + • pandas.tests.arrays.string_.test_string_arrow + • pandas.tests.arrays.test_array + • pandas.tests.arrays.test_datetimelike + • pandas.tests.arrays.test_datetimes + • pandas.tests.arrays.test_period + • pandas.tests.arrays.test_timedeltas + • pandas.tests.arrays.timedeltas.test_constructors + • pandas.tests.arrays.timedeltas.test_cumulative + • pandas.tests.arrays.timedeltas.test_reductions + • pandas.tests.base.test_constructors + • pandas.tests.base.test_conversion + • pandas.tests.base.test_fillna + • pandas.tests.base.test_misc + • pandas.tests.base.test_transpose + • pandas.tests.base.test_unique + • pandas.tests.base.test_value_counts + • pandas.tests.computation.test_eval + • pandas.tests.config.test_config + • pandas.tests.construction.test_extract_array + • pandas.tests.copy_view.index.test_datetimeindex + • pandas.tests.copy_view.index.test_index + • pandas.tests.copy_view.index.test_periodindex + • pandas.tests.copy_view.index.test_timedeltaindex + • pandas.tests.copy_view.test_array + • pandas.tests.copy_view.test_astype + • pandas.tests.copy_view.test_chained_assignment_deprecation + • pandas.tests.copy_view.test_clip + • pandas.tests.copy_view.test_constructors + • pandas.tests.copy_view.test_core_functionalities + • pandas.tests.copy_view.test_functions + • pandas.tests.copy_view.test_indexing + • pandas.tests.copy_view.test_internals + • pandas.tests.copy_view.test_interp_fillna + • pandas.tests.copy_view.test_methods + • pandas.tests.copy_view.test_replace + • pandas.tests.copy_view.test_setitem + • pandas.tests.dtypes.cast.test_construct_from_scalar + • pandas.tests.dtypes.cast.test_construct_ndarray + • pandas.tests.dtypes.cast.test_downcast + • pandas.tests.dtypes.test_common + • pandas.tests.dtypes.test_concat + • pandas.tests.dtypes.test_dtypes + • pandas.tests.dtypes.test_generic + • pandas.tests.dtypes.test_inference + • pandas.tests.dtypes.test_missing + • pandas.tests.extension.array_with_attr.test_array_with_attr + • pandas.tests.extension.base.accumulate + • pandas.tests.extension.base.casting + • pandas.tests.extension.base.constructors + • pandas.tests.extension.base.dim2 + • pandas.tests.extension.base.dtype + • pandas.tests.extension.base.getitem + • pandas.tests.extension.base.groupby + • pandas.tests.extension.base.interface + • pandas.tests.extension.base.io + • pandas.tests.extension.base.methods + • pandas.tests.extension.base.missing + • pandas.tests.extension.base.ops + • pandas.tests.extension.base.reduce + • pandas.tests.extension.base.reshaping + • pandas.tests.extension.base.setitem + • pandas.tests.extension.decimal.test_decimal + • pandas.tests.extension.json.test_json + • pandas.tests.extension.test_arrow + • pandas.tests.extension.test_categorical + • pandas.tests.extension.test_common + • pandas.tests.extension.test_datetime + • pandas.tests.extension.test_masked + • pandas.tests.extension.test_numpy + • pandas.tests.extension.test_period + • pandas.tests.extension.test_sparse + • pandas.tests.extension.test_string + • pandas.tests.frame.constructors.test_from_dict + • pandas.tests.frame.constructors.test_from_records + • pandas.tests.frame.indexing.test_coercion + • pandas.tests.frame.indexing.test_get + • pandas.tests.frame.indexing.test_getitem + • pandas.tests.frame.indexing.test_indexing + • pandas.tests.frame.indexing.test_insert + • pandas.tests.frame.indexing.test_mask + • pandas.tests.frame.indexing.test_set_value + • pandas.tests.frame.indexing.test_setitem + • pandas.tests.frame.indexing.test_take + • pandas.tests.frame.indexing.test_where + • pandas.tests.frame.indexing.test_xs + • pandas.tests.frame.methods.test_add_prefix_suffix + • pandas.tests.frame.methods.test_align + • pandas.tests.frame.methods.test_asfreq + • pandas.tests.frame.methods.test_asof + • pandas.tests.frame.methods.test_assign + • pandas.tests.frame.methods.test_astype + • pandas.tests.frame.methods.test_at_time + • pandas.tests.frame.methods.test_between_time + • pandas.tests.frame.methods.test_clip + • pandas.tests.frame.methods.test_combine + • pandas.tests.frame.methods.test_combine_first + • pandas.tests.frame.methods.test_compare + • pandas.tests.frame.methods.test_convert_dtypes + • pandas.tests.frame.methods.test_copy + • pandas.tests.frame.methods.test_count + • pandas.tests.frame.methods.test_cov_corr + • pandas.tests.frame.methods.test_describe + • pandas.tests.frame.methods.test_diff + • pandas.tests.frame.methods.test_dot + • pandas.tests.frame.methods.test_drop + • pandas.tests.frame.methods.test_drop_duplicates + • pandas.tests.frame.methods.test_droplevel + • pandas.tests.frame.methods.test_dropna + • pandas.tests.frame.methods.test_dtypes + • pandas.tests.frame.methods.test_duplicated + • pandas.tests.frame.methods.test_equals + • pandas.tests.frame.methods.test_explode + • pandas.tests.frame.methods.test_fillna + • pandas.tests.frame.methods.test_filter + • pandas.tests.frame.methods.test_first_and_last + • pandas.tests.frame.methods.test_get_numeric_data + • pandas.tests.frame.methods.test_head_tail + • pandas.tests.frame.methods.test_infer_objects + • pandas.tests.frame.methods.test_info + • pandas.tests.frame.methods.test_interpolate + • pandas.tests.frame.methods.test_isetitem + • pandas.tests.frame.methods.test_isin + • pandas.tests.frame.methods.test_join + • pandas.tests.frame.methods.test_map + • pandas.tests.frame.methods.test_matmul + • pandas.tests.frame.methods.test_nlargest + • pandas.tests.frame.methods.test_pct_change + • pandas.tests.frame.methods.test_pipe + • pandas.tests.frame.methods.test_pop + • pandas.tests.frame.methods.test_quantile + • pandas.tests.frame.methods.test_rank + • pandas.tests.frame.methods.test_reindex + • pandas.tests.frame.methods.test_reindex_like + • pandas.tests.frame.methods.test_rename + • pandas.tests.frame.methods.test_rename_axis + • pandas.tests.frame.methods.test_reorder_levels + • pandas.tests.frame.methods.test_replace + • pandas.tests.frame.methods.test_reset_index + • pandas.tests.frame.methods.test_round + • pandas.tests.frame.methods.test_sample + • pandas.tests.frame.methods.test_select_dtypes + • pandas.tests.frame.methods.test_set_axis + • pandas.tests.frame.methods.test_set_index + • pandas.tests.frame.methods.test_shift + • pandas.tests.frame.methods.test_sort_index + • pandas.tests.frame.methods.test_sort_values + • pandas.tests.frame.methods.test_swapaxes + • pandas.tests.frame.methods.test_swaplevel + • pandas.tests.frame.methods.test_to_csv + • pandas.tests.frame.methods.test_to_dict + • pandas.tests.frame.methods.test_to_dict_of_blocks + • pandas.tests.frame.methods.test_to_numpy + • pandas.tests.frame.methods.test_to_period + • pandas.tests.frame.methods.test_to_records + • pandas.tests.frame.methods.test_to_timestamp + • pandas.tests.frame.methods.test_transpose + • pandas.tests.frame.methods.test_truncate + • pandas.tests.frame.methods.test_tz_convert + • pandas.tests.frame.methods.test_tz_localize + • pandas.tests.frame.methods.test_update + • pandas.tests.frame.methods.test_value_counts + • pandas.tests.frame.methods.test_values + • pandas.tests.frame.test_alter_axes + • pandas.tests.frame.test_api + • pandas.tests.frame.test_arithmetic + • pandas.tests.frame.test_block_internals + • pandas.tests.frame.test_constructors + • pandas.tests.frame.test_cumulative + • pandas.tests.frame.test_iteration + • pandas.tests.frame.test_logical_ops + • pandas.tests.frame.test_nonunique_indexes + • pandas.tests.frame.test_npfuncs + • pandas.tests.frame.test_query_eval + • pandas.tests.frame.test_reductions + • pandas.tests.frame.test_repr + • pandas.tests.frame.test_stack_unstack + • pandas.tests.frame.test_subclass + • pandas.tests.frame.test_ufunc + • pandas.tests.frame.test_unary + • pandas.tests.generic.test_duplicate_labels + • pandas.tests.generic.test_finalize + • pandas.tests.generic.test_frame + • pandas.tests.generic.test_generic + • pandas.tests.generic.test_series + • pandas.tests.generic.test_to_xarray + • pandas.tests.groupby.aggregate.test_aggregate + • pandas.tests.groupby.aggregate.test_cython + • pandas.tests.groupby.aggregate.test_numba + • pandas.tests.groupby.aggregate.test_other + • pandas.tests.groupby.methods.test_corrwith + • pandas.tests.groupby.methods.test_describe + • pandas.tests.groupby.methods.test_groupby_shift_diff + • pandas.tests.groupby.methods.test_is_monotonic + • pandas.tests.groupby.methods.test_nlargest_nsmallest + • pandas.tests.groupby.methods.test_nth + • pandas.tests.groupby.methods.test_quantile + • pandas.tests.groupby.methods.test_rank + • pandas.tests.groupby.methods.test_sample + • pandas.tests.groupby.methods.test_size + • pandas.tests.groupby.methods.test_skew + • pandas.tests.groupby.methods.test_value_counts + • pandas.tests.groupby.test_all_methods + • pandas.tests.groupby.test_apply + • pandas.tests.groupby.test_apply_mutate + • pandas.tests.groupby.test_bin_groupby + • pandas.tests.groupby.test_categorical + • pandas.tests.groupby.test_counting + • pandas.tests.groupby.test_cumulative + • pandas.tests.groupby.test_filters + • pandas.tests.groupby.test_groupby + • pandas.tests.groupby.test_groupby_dropna + • pandas.tests.groupby.test_groupby_subclass + • pandas.tests.groupby.test_grouping + • pandas.tests.groupby.test_index_as_string + • pandas.tests.groupby.test_indexing + • pandas.tests.groupby.test_libgroupby + • pandas.tests.groupby.test_missing + • pandas.tests.groupby.test_numba + • pandas.tests.groupby.test_numeric_only + • pandas.tests.groupby.test_pipe + • pandas.tests.groupby.test_raises + • pandas.tests.groupby.test_reductions + • pandas.tests.groupby.test_timegrouper + • pandas.tests.groupby.transform.test_numba + • pandas.tests.groupby.transform.test_transform + • pandas.tests.indexes.base_class.test_constructors + • pandas.tests.indexes.base_class.test_formats + • pandas.tests.indexes.base_class.test_indexing + • pandas.tests.indexes.base_class.test_pickle + • pandas.tests.indexes.base_class.test_reshape + • pandas.tests.indexes.base_class.test_setops + • pandas.tests.indexes.base_class.test_where + • pandas.tests.indexes.categorical.test_append + • pandas.tests.indexes.categorical.test_astype + • pandas.tests.indexes.categorical.test_category + • pandas.tests.indexes.categorical.test_constructors + • pandas.tests.indexes.categorical.test_fillna + • pandas.tests.indexes.categorical.test_formats + • pandas.tests.indexes.categorical.test_indexing + • pandas.tests.indexes.categorical.test_map + • pandas.tests.indexes.categorical.test_reindex + • pandas.tests.indexes.categorical.test_setops + • pandas.tests.indexes.datetimelike_.test_drop_duplicates + • pandas.tests.indexes.datetimelike_.test_equals + • pandas.tests.indexes.datetimelike_.test_indexing + • pandas.tests.indexes.datetimelike_.test_nat + • pandas.tests.indexes.datetimelike_.test_sort_values + • pandas.tests.indexes.datetimelike_.test_value_counts + • pandas.tests.indexes.datetimes.methods.test_astype + • pandas.tests.indexes.datetimes.methods.test_delete + • pandas.tests.indexes.datetimes.methods.test_factorize + • pandas.tests.indexes.datetimes.methods.test_fillna + • pandas.tests.indexes.datetimes.methods.test_insert + • pandas.tests.indexes.datetimes.methods.test_isocalendar + • pandas.tests.indexes.datetimes.methods.test_map + • pandas.tests.indexes.datetimes.methods.test_normalize + • pandas.tests.indexes.datetimes.methods.test_repeat + • pandas.tests.indexes.datetimes.methods.test_round + • pandas.tests.indexes.datetimes.methods.test_shift + • pandas.tests.indexes.datetimes.methods.test_snap + • pandas.tests.indexes.datetimes.methods.test_to_frame + • pandas.tests.indexes.datetimes.methods.test_to_julian_date + • pandas.tests.indexes.datetimes.methods.test_to_period + • pandas.tests.indexes.datetimes.methods.test_to_pydatetime + • pandas.tests.indexes.datetimes.methods.test_to_series + • pandas.tests.indexes.datetimes.methods.test_tz_convert + • pandas.tests.indexes.datetimes.methods.test_tz_localize + • pandas.tests.indexes.datetimes.methods.test_unique + • pandas.tests.indexes.datetimes.test_arithmetic + • pandas.tests.indexes.datetimes.test_constructors + • pandas.tests.indexes.datetimes.test_date_range + • pandas.tests.indexes.datetimes.test_datetime + • pandas.tests.indexes.datetimes.test_formats + • pandas.tests.indexes.datetimes.test_indexing + • pandas.tests.indexes.datetimes.test_join + • pandas.tests.indexes.datetimes.test_npfuncs + • pandas.tests.indexes.datetimes.test_ops + • pandas.tests.indexes.datetimes.test_partial_slicing + • pandas.tests.indexes.datetimes.test_pickle + • pandas.tests.indexes.datetimes.test_reindex + • pandas.tests.indexes.datetimes.test_scalar_compat + • pandas.tests.indexes.datetimes.test_setops + • pandas.tests.indexes.datetimes.test_timezones + • pandas.tests.indexes.interval.test_astype + • pandas.tests.indexes.interval.test_constructors + • pandas.tests.indexes.interval.test_formats + • pandas.tests.indexes.interval.test_indexing + • pandas.tests.indexes.interval.test_interval + • pandas.tests.indexes.interval.test_interval_range + • pandas.tests.indexes.interval.test_interval_tree + • pandas.tests.indexes.interval.test_join + • pandas.tests.indexes.interval.test_pickle + • pandas.tests.indexes.interval.test_setops + • pandas.tests.indexes.multi.test_analytics + • pandas.tests.indexes.multi.test_astype + • pandas.tests.indexes.multi.test_compat + • pandas.tests.indexes.multi.test_constructors + • pandas.tests.indexes.multi.test_conversion + • pandas.tests.indexes.multi.test_copy + • pandas.tests.indexes.multi.test_drop + • pandas.tests.indexes.multi.test_duplicates + • pandas.tests.indexes.multi.test_equivalence + • pandas.tests.indexes.multi.test_formats + • pandas.tests.indexes.multi.test_get_level_values + • pandas.tests.indexes.multi.test_get_set + • pandas.tests.indexes.multi.test_indexing + • pandas.tests.indexes.multi.test_integrity + • pandas.tests.indexes.multi.test_isin + • pandas.tests.indexes.multi.test_join + • pandas.tests.indexes.multi.test_missing + • pandas.tests.indexes.multi.test_names + • pandas.tests.indexes.multi.test_partial_indexing + • pandas.tests.indexes.multi.test_reindex + • pandas.tests.indexes.multi.test_reshape + • pandas.tests.indexes.multi.test_setops + • pandas.tests.indexes.multi.test_sorting + • pandas.tests.indexes.multi.test_take + • pandas.tests.indexes.numeric.test_astype + • pandas.tests.indexes.numeric.test_indexing + • pandas.tests.indexes.numeric.test_join + • pandas.tests.indexes.numeric.test_numeric + • pandas.tests.indexes.numeric.test_setops + • pandas.tests.indexes.object.test_astype + • pandas.tests.indexes.object.test_indexing + • pandas.tests.indexes.period.methods.test_asfreq + • pandas.tests.indexes.period.methods.test_astype + • pandas.tests.indexes.period.methods.test_factorize + • pandas.tests.indexes.period.methods.test_fillna + • pandas.tests.indexes.period.methods.test_insert + • pandas.tests.indexes.period.methods.test_repeat + • pandas.tests.indexes.period.methods.test_shift + • pandas.tests.indexes.period.methods.test_to_timestamp + • pandas.tests.indexes.period.test_constructors + • pandas.tests.indexes.period.test_formats + • pandas.tests.indexes.period.test_freq_attr + • pandas.tests.indexes.period.test_indexing + • pandas.tests.indexes.period.test_join + • pandas.tests.indexes.period.test_partial_slicing + • pandas.tests.indexes.period.test_period + • pandas.tests.indexes.period.test_period_range + • pandas.tests.indexes.period.test_pickle + • pandas.tests.indexes.period.test_scalar_compat + • pandas.tests.indexes.period.test_searchsorted + • pandas.tests.indexes.period.test_setops + • pandas.tests.indexes.period.test_tools + • pandas.tests.indexes.ranges.test_constructors + • pandas.tests.indexes.ranges.test_indexing + • pandas.tests.indexes.ranges.test_join + • pandas.tests.indexes.ranges.test_range + • pandas.tests.indexes.ranges.test_setops + • pandas.tests.indexes.test_any_index + • pandas.tests.indexes.test_base + • pandas.tests.indexes.test_common + • pandas.tests.indexes.test_datetimelike + • pandas.tests.indexes.test_index_new + • pandas.tests.indexes.test_indexing + • pandas.tests.indexes.test_numpy_compat + • pandas.tests.indexes.test_old_base + • pandas.tests.indexes.test_setops + • pandas.tests.indexes.test_subclass + • pandas.tests.indexes.timedeltas.methods.test_astype + • pandas.tests.indexes.timedeltas.methods.test_factorize + • pandas.tests.indexes.timedeltas.methods.test_fillna + • pandas.tests.indexes.timedeltas.methods.test_insert + • pandas.tests.indexes.timedeltas.methods.test_repeat + • pandas.tests.indexes.timedeltas.methods.test_shift + • pandas.tests.indexes.timedeltas.test_arithmetic + • pandas.tests.indexes.timedeltas.test_constructors + • pandas.tests.indexes.timedeltas.test_delete + • pandas.tests.indexes.timedeltas.test_indexing + • pandas.tests.indexes.timedeltas.test_join + • pandas.tests.indexes.timedeltas.test_ops + • pandas.tests.indexes.timedeltas.test_pickle + • pandas.tests.indexes.timedeltas.test_scalar_compat + • pandas.tests.indexes.timedeltas.test_searchsorted + • pandas.tests.indexes.timedeltas.test_setops + • pandas.tests.indexes.timedeltas.test_timedelta + • pandas.tests.indexes.timedeltas.test_timedelta_range + • pandas.tests.indexing.interval.test_interval + • pandas.tests.indexing.interval.test_interval_new + • pandas.tests.indexing.multiindex.test_chaining_and_caching + • pandas.tests.indexing.multiindex.test_datetime + • pandas.tests.indexing.multiindex.test_getitem + • pandas.tests.indexing.multiindex.test_iloc + • pandas.tests.indexing.multiindex.test_indexing_slow + • pandas.tests.indexing.multiindex.test_loc + • pandas.tests.indexing.multiindex.test_multiindex + • pandas.tests.indexing.multiindex.test_partial + • pandas.tests.indexing.multiindex.test_setitem + • pandas.tests.indexing.multiindex.test_slice + • pandas.tests.indexing.multiindex.test_sorted + • pandas.tests.indexing.test_at + • pandas.tests.indexing.test_categorical + • pandas.tests.indexing.test_chaining_and_caching + • pandas.tests.indexing.test_check_indexer + • pandas.tests.indexing.test_coercion + • pandas.tests.indexing.test_datetime + • pandas.tests.indexing.test_floats + • pandas.tests.indexing.test_iat + • pandas.tests.indexing.test_iloc + • pandas.tests.indexing.test_indexing + • pandas.tests.indexing.test_loc + • pandas.tests.indexing.test_na_indexing + • pandas.tests.indexing.test_partial + • pandas.tests.indexing.test_scalar + • pandas.tests.interchange.test_impl + • pandas.tests.internals.test_api + • pandas.tests.internals.test_internals + • pandas.tests.internals.test_managers + • pandas.tests.io.excel.test_odf + • pandas.tests.io.excel.test_odswriter + • pandas.tests.io.excel.test_openpyxl + • pandas.tests.io.excel.test_readers + • pandas.tests.io.excel.test_style + • pandas.tests.io.excel.test_writers + • pandas.tests.io.excel.test_xlrd + • pandas.tests.io.excel.test_xlsxwriter + • pandas.tests.io.formats.style.test_style + • pandas.tests.io.formats.test_css + • pandas.tests.io.formats.test_to_csv + • pandas.tests.io.formats.test_to_excel + • pandas.tests.io.formats.test_to_html + • pandas.tests.io.formats.test_to_latex + • pandas.tests.io.formats.test_to_markdown + • pandas.tests.io.formats.test_to_string + • pandas.tests.io.json.test_compression + • pandas.tests.io.json.test_deprecated_kwargs + • pandas.tests.io.json.test_json_table_schema + • pandas.tests.io.json.test_json_table_schema_ext_dtype + • pandas.tests.io.json.test_normalize + • pandas.tests.io.json.test_pandas + • pandas.tests.io.json.test_readlines + • pandas.tests.io.json.test_ujson + • pandas.tests.io.parser.common.test_chunksize + • pandas.tests.io.parser.common.test_common_basic + • pandas.tests.io.parser.common.test_data_list + • pandas.tests.io.parser.common.test_decimal + • pandas.tests.io.parser.common.test_file_buffer_url + • pandas.tests.io.parser.common.test_float + • pandas.tests.io.parser.common.test_index + • pandas.tests.io.parser.common.test_inf + • pandas.tests.io.parser.common.test_ints + • pandas.tests.io.parser.common.test_iterator + • pandas.tests.io.parser.common.test_read_errors + • pandas.tests.io.parser.common.test_verbose + • pandas.tests.io.parser.conftest + • pandas.tests.io.parser.dtypes.test_categorical + • pandas.tests.io.parser.dtypes.test_dtypes_basic + • pandas.tests.io.parser.dtypes.test_empty + • pandas.tests.io.parser.test_c_parser_only + • pandas.tests.io.parser.test_comment + • pandas.tests.io.parser.test_compression + • pandas.tests.io.parser.test_concatenate_chunks + • pandas.tests.io.parser.test_converters + • pandas.tests.io.parser.test_dialect + • pandas.tests.io.parser.test_encoding + • pandas.tests.io.parser.test_header + • pandas.tests.io.parser.test_index_col + • pandas.tests.io.parser.test_mangle_dupes + • pandas.tests.io.parser.test_multi_thread + • pandas.tests.io.parser.test_na_values + • pandas.tests.io.parser.test_network + • pandas.tests.io.parser.test_parse_dates + • pandas.tests.io.parser.test_python_parser_only + • pandas.tests.io.parser.test_quoting + • pandas.tests.io.parser.test_read_fwf + • pandas.tests.io.parser.test_skiprows + • pandas.tests.io.parser.test_textreader + • pandas.tests.io.parser.test_unsupported + • pandas.tests.io.parser.test_upcast + • pandas.tests.io.parser.usecols.test_parse_dates + • pandas.tests.io.parser.usecols.test_strings + • pandas.tests.io.parser.usecols.test_usecols_basic + • pandas.tests.io.pytables.test_append + • pandas.tests.io.pytables.test_categorical + • pandas.tests.io.pytables.test_compat + • pandas.tests.io.pytables.test_complex + • pandas.tests.io.pytables.test_errors + • pandas.tests.io.pytables.test_file_handling + • pandas.tests.io.pytables.test_put + • pandas.tests.io.pytables.test_pytables_missing + • pandas.tests.io.pytables.test_read + • pandas.tests.io.pytables.test_retain_attributes + • pandas.tests.io.pytables.test_round_trip + • pandas.tests.io.pytables.test_select + • pandas.tests.io.pytables.test_store + • pandas.tests.io.pytables.test_subclass + • pandas.tests.io.pytables.test_time_series + • pandas.tests.io.pytables.test_timezones + • pandas.tests.io.sas.test_byteswap + • pandas.tests.io.sas.test_sas + • pandas.tests.io.sas.test_sas7bdat + • pandas.tests.io.sas.test_xport + • pandas.tests.io.test_clipboard + • pandas.tests.io.test_common + • pandas.tests.io.test_compression + • pandas.tests.io.test_feather + • pandas.tests.io.test_fsspec + • pandas.tests.io.test_gbq + • pandas.tests.io.test_gcs + • pandas.tests.io.test_html + • pandas.tests.io.test_http_headers + • pandas.tests.io.test_orc + • pandas.tests.io.test_parquet + • pandas.tests.io.test_pickle + • pandas.tests.io.test_spss + • pandas.tests.io.test_sql + • pandas.tests.io.test_stata + • pandas.tests.io.xml.test_to_xml + • pandas.tests.io.xml.test_xml + • pandas.tests.io.xml.test_xml_dtypes + • pandas.tests.libs.test_hashtable + • pandas.tests.libs.test_join + • pandas.tests.libs.test_lib + • pandas.tests.libs.test_libalgos + • pandas.tests.plotting.common + • pandas.tests.plotting.frame.test_frame + • pandas.tests.plotting.frame.test_frame_color + • pandas.tests.plotting.frame.test_frame_subplots + • pandas.tests.plotting.frame.test_hist_box_by + • pandas.tests.plotting.test_boxplot_method + • pandas.tests.plotting.test_converter + • pandas.tests.plotting.test_datetimelike + • pandas.tests.plotting.test_hist_method + • pandas.tests.plotting.test_misc + • pandas.tests.plotting.test_series + • pandas.tests.reductions.test_reductions + • pandas.tests.reductions.test_stat_reductions + • pandas.tests.resample.test_base + • pandas.tests.resample.test_datetime_index + • pandas.tests.resample.test_period_index + • pandas.tests.resample.test_resample_api + • pandas.tests.resample.test_resampler_grouper + • pandas.tests.resample.test_time_grouper + • pandas.tests.resample.test_timedelta + • pandas.tests.reshape.concat.test_append + • pandas.tests.reshape.concat.test_append_common + • pandas.tests.reshape.concat.test_categorical + • pandas.tests.reshape.concat.test_concat + • pandas.tests.reshape.concat.test_dataframe + • pandas.tests.reshape.concat.test_datetimes + • pandas.tests.reshape.concat.test_empty + • pandas.tests.reshape.concat.test_index + • pandas.tests.reshape.concat.test_invalid + • pandas.tests.reshape.concat.test_series + • pandas.tests.reshape.concat.test_sort + • pandas.tests.reshape.merge.test_join + • pandas.tests.reshape.merge.test_merge + • pandas.tests.reshape.merge.test_merge_asof + • pandas.tests.reshape.merge.test_merge_cross + • pandas.tests.reshape.merge.test_merge_index_as_string + • pandas.tests.reshape.merge.test_merge_ordered + • pandas.tests.reshape.merge.test_multi + • pandas.tests.reshape.test_crosstab + • pandas.tests.reshape.test_cut + • pandas.tests.reshape.test_from_dummies + • pandas.tests.reshape.test_get_dummies + • pandas.tests.reshape.test_melt + • pandas.tests.reshape.test_pivot + • pandas.tests.reshape.test_pivot_multilevel + • pandas.tests.reshape.test_qcut + • pandas.tests.reshape.test_union_categoricals + • pandas.tests.reshape.test_util + • pandas.tests.scalar.interval.test_arithmetic + • pandas.tests.scalar.period.test_asfreq + • pandas.tests.scalar.period.test_period + • pandas.tests.scalar.test_na_scalar + • pandas.tests.scalar.test_nat + • pandas.tests.scalar.timedelta.test_arithmetic + • pandas.tests.scalar.timedelta.test_constructors + • pandas.tests.scalar.timedelta.test_timedelta + • pandas.tests.scalar.timestamp.methods.test_replace + • pandas.tests.scalar.timestamp.methods.test_round + • pandas.tests.scalar.timestamp.methods.test_timestamp_method + • pandas.tests.scalar.timestamp.methods.test_to_pydatetime + • pandas.tests.scalar.timestamp.test_arithmetic + • pandas.tests.scalar.timestamp.test_comparisons + • pandas.tests.scalar.timestamp.test_timestamp + • pandas.tests.series.accessors.test_cat_accessor + • pandas.tests.series.accessors.test_dt_accessor + • pandas.tests.series.accessors.test_list_accessor + • pandas.tests.series.accessors.test_str_accessor + • pandas.tests.series.accessors.test_struct_accessor + • pandas.tests.series.indexing.test_datetime + • pandas.tests.series.indexing.test_delitem + • pandas.tests.series.indexing.test_get + • pandas.tests.series.indexing.test_getitem + • pandas.tests.series.indexing.test_indexing + • pandas.tests.series.indexing.test_mask + • pandas.tests.series.indexing.test_set_value + • pandas.tests.series.indexing.test_setitem + • pandas.tests.series.indexing.test_take + • pandas.tests.series.indexing.test_where + • pandas.tests.series.indexing.test_xs + • pandas.tests.series.methods.test_add_prefix_suffix + • pandas.tests.series.methods.test_align + • pandas.tests.series.methods.test_argsort + • pandas.tests.series.methods.test_asof + • pandas.tests.series.methods.test_astype + • pandas.tests.series.methods.test_between + • pandas.tests.series.methods.test_case_when + • pandas.tests.series.methods.test_clip + • pandas.tests.series.methods.test_combine + • pandas.tests.series.methods.test_combine_first + • pandas.tests.series.methods.test_compare + • pandas.tests.series.methods.test_convert_dtypes + • pandas.tests.series.methods.test_copy + • pandas.tests.series.methods.test_count + • pandas.tests.series.methods.test_cov_corr + • pandas.tests.series.methods.test_describe + • pandas.tests.series.methods.test_diff + • pandas.tests.series.methods.test_drop + • pandas.tests.series.methods.test_drop_duplicates + • pandas.tests.series.methods.test_dropna + • pandas.tests.series.methods.test_duplicated + • pandas.tests.series.methods.test_equals + • pandas.tests.series.methods.test_explode + • pandas.tests.series.methods.test_fillna + • pandas.tests.series.methods.test_get_numeric_data + • pandas.tests.series.methods.test_head_tail + • pandas.tests.series.methods.test_infer_objects + • pandas.tests.series.methods.test_interpolate + • pandas.tests.series.methods.test_isin + • pandas.tests.series.methods.test_isna + • pandas.tests.series.methods.test_map + • pandas.tests.series.methods.test_matmul + • pandas.tests.series.methods.test_nlargest + • pandas.tests.series.methods.test_pct_change + • pandas.tests.series.methods.test_pop + • pandas.tests.series.methods.test_quantile + • pandas.tests.series.methods.test_rank + • pandas.tests.series.methods.test_reindex + • pandas.tests.series.methods.test_reindex_like + • pandas.tests.series.methods.test_rename + • pandas.tests.series.methods.test_rename_axis + • pandas.tests.series.methods.test_repeat + • pandas.tests.series.methods.test_replace + • pandas.tests.series.methods.test_reset_index + • pandas.tests.series.methods.test_round + • pandas.tests.series.methods.test_searchsorted + • pandas.tests.series.methods.test_sort_index + • pandas.tests.series.methods.test_sort_values + • pandas.tests.series.methods.test_to_csv + • pandas.tests.series.methods.test_to_dict + • pandas.tests.series.methods.test_to_frame + • pandas.tests.series.methods.test_to_numpy + • pandas.tests.series.methods.test_truncate + • pandas.tests.series.methods.test_tz_localize + • pandas.tests.series.methods.test_unique + • pandas.tests.series.methods.test_unstack + • pandas.tests.series.methods.test_update + • pandas.tests.series.methods.test_value_counts + • pandas.tests.series.methods.test_values + • pandas.tests.series.methods.test_view + • pandas.tests.series.test_api + • pandas.tests.series.test_arithmetic + • pandas.tests.series.test_constructors + • pandas.tests.series.test_cumulative + • pandas.tests.series.test_formats + • pandas.tests.series.test_logical_ops + • pandas.tests.series.test_missing + • pandas.tests.series.test_npfuncs + • pandas.tests.series.test_reductions + • pandas.tests.series.test_subclass + • pandas.tests.series.test_ufunc + • pandas.tests.series.test_unary + • pandas.tests.strings.test_api + • pandas.tests.strings.test_case_justify + • pandas.tests.strings.test_cat + • pandas.tests.strings.test_extract + • pandas.tests.strings.test_find_replace + • pandas.tests.strings.test_get_dummies + • pandas.tests.strings.test_split_partition + • pandas.tests.strings.test_string_array + • pandas.tests.strings.test_strings + • pandas.tests.test_algos + • pandas.tests.test_common + • pandas.tests.test_downstream + • pandas.tests.test_expressions + • pandas.tests.test_multilevel + • pandas.tests.test_nanops + • pandas.tests.test_optional_dependency + • pandas.tests.test_register_accessor + • pandas.tests.test_sorting + • pandas.tests.test_take + • pandas.tests.tools.test_to_datetime + • pandas.tests.tools.test_to_numeric + • pandas.tests.tools.test_to_time + • pandas.tests.tools.test_to_timedelta + • pandas.tests.tseries.frequencies.test_inference + • pandas.tests.tseries.holiday.test_calendar + • pandas.tests.tseries.holiday.test_federal + • pandas.tests.tseries.holiday.test_holiday + • pandas.tests.tseries.offsets.test_business_day + • pandas.tests.tseries.offsets.test_business_hour + • pandas.tests.tseries.offsets.test_business_quarter + • pandas.tests.tseries.offsets.test_custom_business_day + • pandas.tests.tseries.offsets.test_custom_business_month + • pandas.tests.tseries.offsets.test_dst + • pandas.tests.tseries.offsets.test_fiscal + • pandas.tests.tseries.offsets.test_month + • pandas.tests.tseries.offsets.test_offsets + • pandas.tests.tseries.offsets.test_quarter + • pandas.tests.tseries.offsets.test_ticks + • pandas.tests.tseries.offsets.test_week + • pandas.tests.tslibs.test_array_to_datetime + • pandas.tests.tslibs.test_conversion + • pandas.tests.tslibs.test_fields + • pandas.tests.tslibs.test_np_datetime + • pandas.tests.tslibs.test_parsing + • pandas.tests.tslibs.test_period + • pandas.tests.tslibs.test_resolution + • pandas.tests.tslibs.test_strptime + • pandas.tests.tslibs.test_timedeltas + • pandas.tests.util.test_assert_almost_equal + • pandas.tests.util.test_assert_attr_equal + • pandas.tests.util.test_assert_categorical_equal + • pandas.tests.util.test_assert_extension_array_equal + • pandas.tests.util.test_assert_frame_equal + • pandas.tests.util.test_assert_index_equal + • pandas.tests.util.test_assert_interval_array_equal + • pandas.tests.util.test_assert_numpy_array_equal + • pandas.tests.util.test_assert_produces_warning + • pandas.tests.util.test_assert_series_equal + • pandas.tests.util.test_deprecate + • pandas.tests.util.test_deprecate_kwarg + • pandas.tests.util.test_deprecate_nonkeyword_arguments + • pandas.tests.util.test_hashing + • pandas.tests.util.test_rewrite_warning + • pandas.tests.util.test_shares_memory + • pandas.tests.util.test_util + • pandas.tests.window.moments.test_moments_consistency_ewm + • pandas.tests.window.moments.test_moments_consistency_expanding + • pandas.tests.window.moments.test_moments_consistency_rolling + • pandas.tests.window.test_api + • pandas.tests.window.test_apply + • pandas.tests.window.test_base_indexer + • pandas.tests.window.test_cython_aggregations + • pandas.tests.window.test_dtypes + • pandas.tests.window.test_ewm + • pandas.tests.window.test_expanding + • pandas.tests.window.test_groupby + • pandas.tests.window.test_numba + • pandas.tests.window.test_online + • pandas.tests.window.test_pairwise + • pandas.tests.window.test_rolling + • pandas.tests.window.test_rolling_functions + • pandas.tests.window.test_rolling_quantile + • pandas.tests.window.test_rolling_skew_kurt + • pandas.tests.window.test_timeseries_window + • pandas.tests.window.test_win_type + +
+ +
+ + + +
+ + pandas._testing._io +SourceModule
+imports: + __future__ + • gzip + • io + • pandas + • pandas._testing + • pandas._testing.contexts + • pandas._typing + • pandas.compat + • pandas.compat._optional + • pathlib + • pytest + • tarfile + • typing + • uuid + • zipfile + +
+
+imported by: + entry.py + • pandas._testing + +
+ +
+ +
+ + pandas._testing._warnings +SourceModule
+imports: + __future__ + • collections.abc + • contextlib + • inspect + • pandas._testing + • pandas.compat + • re + • sys + • typing + • warnings + +
+
+imported by: + entry.py + • pandas._testing + +
+ +
+ + + +
+ + pandas._testing.compat +SourceModule
+imports: + __future__ + • pandas + • pandas._testing + • pandas._typing + • typing + +
+
+imported by: + entry.py + • pandas._testing + +
+ +
+ +
+ + pandas._testing.contexts +SourceModule +
+imported by: + entry.py + • pandas._testing + • pandas._testing._io + +
+ +
+ +
+ + pandas._typing +SourceModule +
+imported by: + entry.py + • pandas._config.config + • pandas._libs.algos + • pandas._libs.arrays + • pandas._libs.groupby + • pandas._libs.hashing + • pandas._libs.hashtable + • pandas._libs.index + • pandas._libs.internals + • pandas._libs.interval + • pandas._libs.join + • pandas._libs.lib + • pandas._libs.ops + • pandas._libs.parsers + • pandas._libs.properties + • pandas._libs.reshape + • pandas._libs.sparse + • pandas._libs.tslib + • pandas._libs.tslibs.fields + • pandas._libs.tslibs.nattype + • pandas._libs.tslibs.np_datetime + • pandas._libs.tslibs.offsets + • pandas._libs.tslibs.parsing + • pandas._libs.tslibs.period + • pandas._libs.tslibs.strptime + • pandas._libs.tslibs.timedeltas + • pandas._libs.tslibs.timestamps + • pandas._libs.tslibs.tzconversion + • pandas._libs.tslibs.vectorized + • pandas._libs.window.aggregations + • pandas._libs.window.indexers + • pandas._libs.writers + • pandas._testing + • pandas._testing._io + • pandas._testing.asserters + • pandas._testing.compat + • pandas._testing.contexts + • pandas.compat + • pandas.compat.numpy.function + • pandas.core._numba.executor + • pandas.core._numba.kernels.mean_ + • pandas.core._numba.kernels.min_max_ + • pandas.core._numba.kernels.sum_ + • pandas.core._numba.kernels.var_ + • pandas.core.algorithms + • pandas.core.apply + • pandas.core.array_algos.masked_accumulations + • pandas.core.array_algos.masked_reductions + • pandas.core.array_algos.putmask + • pandas.core.array_algos.quantile + • pandas.core.array_algos.replace + • pandas.core.array_algos.take + • pandas.core.array_algos.transforms + • pandas.core.arrays._mixins + • pandas.core.arrays._ranges + • pandas.core.arrays._utils + • pandas.core.arrays.arrow.array + • pandas.core.arrays.arrow.extension_types + • pandas.core.arrays.base + • pandas.core.arrays.boolean + • pandas.core.arrays.categorical + • pandas.core.arrays.datetimelike + • pandas.core.arrays.datetimes + • pandas.core.arrays.interval + • pandas.core.arrays.masked + • pandas.core.arrays.numeric + • pandas.core.arrays.numpy_ + • pandas.core.arrays.period + • pandas.core.arrays.sparse.array + • pandas.core.arrays.sparse.scipy_sparse + • pandas.core.arrays.string_ + • pandas.core.arrays.string_arrow + • pandas.core.arrays.timedeltas + • pandas.core.base + • pandas.core.common + • pandas.core.computation.align + • pandas.core.computation.expressions + • pandas.core.computation.pytables + • pandas.core.construction + • pandas.core.dtypes.astype + • pandas.core.dtypes.base + • pandas.core.dtypes.cast + • pandas.core.dtypes.common + • pandas.core.dtypes.concat + • pandas.core.dtypes.dtypes + • pandas.core.dtypes.inference + • pandas.core.dtypes.missing + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.generic + • pandas.core.groupby.groupby + • pandas.core.groupby.grouper + • pandas.core.groupby.indexing + • pandas.core.groupby.numba_ + • pandas.core.groupby.ops + • pandas.core.indexers.utils + • pandas.core.indexes.api + • pandas.core.indexes.base + • pandas.core.indexes.category + • pandas.core.indexes.datetimelike + • pandas.core.indexes.datetimes + • pandas.core.indexes.extension + • pandas.core.indexes.frozen + • pandas.core.indexes.interval + • pandas.core.indexes.multi + • pandas.core.indexes.period + • pandas.core.indexes.range + • pandas.core.indexes.timedeltas + • pandas.core.indexing + • pandas.core.interchange.utils + • pandas.core.internals.api + • pandas.core.internals.array_manager + • pandas.core.internals.base + • pandas.core.internals.blocks + • pandas.core.internals.concat + • pandas.core.internals.construction + • pandas.core.internals.managers + • pandas.core.internals.ops + • pandas.core.methods.describe + • pandas.core.methods.selectn + • pandas.core.methods.to_dict + • pandas.core.missing + • pandas.core.nanops + • pandas.core.ops.array_ops + • pandas.core.ops.common + • pandas.core.ops.dispatch + • pandas.core.ops.invalid + • pandas.core.resample + • pandas.core.reshape.concat + • pandas.core.reshape.encoding + • pandas.core.reshape.melt + • pandas.core.reshape.merge + • pandas.core.reshape.pivot + • pandas.core.reshape.reshape + • pandas.core.reshape.tile + • pandas.core.reshape.util + • pandas.core.sample + • pandas.core.series + • pandas.core.sorting + • pandas.core.strings.accessor + • pandas.core.strings.base + • pandas.core.strings.object_array + • pandas.core.tools.datetimes + • pandas.core.tools.numeric + • pandas.core.tools.timedeltas + • pandas.core.tools.times + • pandas.core.util.hashing + • pandas.core.window.ewm + • pandas.core.window.expanding + • pandas.core.window.numba_ + • pandas.core.window.rolling + • pandas.io.clipboards + • pandas.io.common + • pandas.io.excel._base + • pandas.io.excel._calamine + • pandas.io.excel._odfreader + • pandas.io.excel._odswriter + • pandas.io.excel._openpyxl + • pandas.io.excel._pyxlsb + • pandas.io.excel._xlrd + • pandas.io.excel._xlsxwriter + • pandas.io.feather_format + • pandas.io.formats.csvs + • pandas.io.formats.excel + • pandas.io.formats.format + • pandas.io.formats.info + • pandas.io.formats.style + • pandas.io.formats.style_render + • pandas.io.formats.xml + • pandas.io.html + • pandas.io.json._json + • pandas.io.json._normalize + • pandas.io.json._table_schema + • pandas.io.orc + • pandas.io.parquet + • pandas.io.parsers.arrow_parser_wrapper + • pandas.io.parsers.base_parser + • pandas.io.parsers.c_parser_wrapper + • pandas.io.parsers.python_parser + • pandas.io.parsers.readers + • pandas.io.pickle + • pandas.io.pytables + • pandas.io.sas.sas7bdat + • pandas.io.sas.sas_xport + • pandas.io.sas.sasreader + • pandas.io.spss + • pandas.io.sql + • pandas.io.stata + • pandas.io.xml + • pandas.plotting._core + • pandas.plotting._matplotlib.boxplot + • pandas.plotting._matplotlib.converter + • pandas.plotting._matplotlib.core + • pandas.plotting._matplotlib.groupby + • pandas.plotting._matplotlib.hist + • pandas.plotting._matplotlib.style + • pandas.plotting._matplotlib.timeseries + • pandas.tests.extension.array_with_attr.array + • pandas.tests.extension.base.methods + • pandas.tests.extension.date.array + • pandas.tests.extension.decimal.array + • pandas.tests.extension.json.array + • pandas.tests.extension.list.array + • pandas.tests.frame.common + • pandas.tests.resample.test_datetime_index + • pandas.tseries.frequencies + • pandas.util._decorators + • pandas.util._print_versions + • pandas.util._test_decorators + +
+ +
+ +
+ + pandas._version +SourceModule
+imports: + errno + • functools + • os + • pandas + • re + • subprocess + • sys + • typing + +
+
+imported by: + entry.py + • pandas + • pandas.util._print_versions + +
+ +
+ +
+ + pandas._version_meson +SourceModule
+imports: + pandas + +
+
+imported by: + entry.py + • pandas + • pandas.util._print_versions + +
+ +
+ + + + + + + + + + + + + + + +
+ + pandas.compat +Package +
+imported by: + entry.py + • pandas + • pandas._testing + • pandas._testing._hypothesis + • pandas._testing._io + • pandas._testing._warnings + • pandas._testing.contexts + • pandas.compat._constants + • pandas.compat._optional + • pandas.compat.compressors + • pandas.compat.numpy + • pandas.compat.pickle_compat + • pandas.compat.pyarrow + • pandas.core.arrays._arrow_string_mixins + • pandas.core.arrays.arrow.accessors + • pandas.core.arrays.arrow.array + • pandas.core.arrays.arrow.extension_types + • pandas.core.arrays.base + • pandas.core.arrays.masked + • pandas.core.arrays.string_ + • pandas.core.arrays.string_arrow + • pandas.core.base + • pandas.core.dtypes.dtypes + • pandas.core.frame + • pandas.core.generic + • pandas.core.indexing + • pandas.core.series + • pandas.core.strings.accessor + • pandas.io.common + • pandas.io.pickle + • pandas.tests.arrays.categorical.test_analytics + • pandas.tests.arrays.categorical.test_api + • pandas.tests.arrays.floating.test_function + • pandas.tests.base.test_constructors + • pandas.tests.base.test_misc + • pandas.tests.computation.test_eval + • pandas.tests.config.test_localization + • pandas.tests.copy_view.test_chained_assignment_deprecation + • pandas.tests.extension.test_arrow + • pandas.tests.extension.test_masked + • pandas.tests.extension.test_period + • pandas.tests.frame.constructors.test_from_records + • pandas.tests.frame.methods.test_info + • pandas.tests.frame.methods.test_reindex + • pandas.tests.frame.test_iteration + • pandas.tests.frame.test_reductions + • pandas.tests.indexes.datetimes.methods.test_resolution + • pandas.tests.indexes.interval.test_interval_tree + • pandas.tests.indexes.multi.test_get_set + • pandas.tests.indexes.period.test_freq_attr + • pandas.tests.indexes.test_base + • pandas.tests.indexes.test_common + • pandas.tests.indexing.test_coercion + • pandas.tests.interchange.test_impl + • pandas.tests.internals.test_internals + • pandas.tests.io.conftest + • pandas.tests.io.excel.test_odf + • pandas.tests.io.excel.test_odswriter + • pandas.tests.io.excel.test_openpyxl + • pandas.tests.io.excel.test_readers + • pandas.tests.io.excel.test_style + • pandas.tests.io.excel.test_writers + • pandas.tests.io.excel.test_xlrd + • pandas.tests.io.excel.test_xlsxwriter + • pandas.tests.io.formats.test_to_csv + • pandas.tests.io.json.test_pandas + • pandas.tests.io.json.test_ujson + • pandas.tests.io.parser.common.test_common_basic + • pandas.tests.io.parser.common.test_float + • pandas.tests.io.parser.common.test_read_errors + • pandas.tests.io.parser.test_quoting + • pandas.tests.io.pytables.test_file_handling + • pandas.tests.io.pytables.test_read + • pandas.tests.io.pytables.test_round_trip + • pandas.tests.io.sas.test_sas7bdat + • pandas.tests.io.test_common + • pandas.tests.io.test_compression + • pandas.tests.io.test_html + • pandas.tests.io.test_parquet + • pandas.tests.io.test_pickle + • pandas.tests.io.test_sql + • pandas.tests.libs.test_lib + • pandas.tests.plotting.frame.test_frame_subplots + • pandas.tests.plotting.test_series + • pandas.tests.resample.test_datetime_index + • pandas.tests.resample.test_resampler_grouper + • pandas.tests.scalar.timestamp.test_constructors + • pandas.tests.scalar.timestamp.test_timestamp + • pandas.tests.series.accessors.test_list_accessor + • pandas.tests.series.methods.test_info + • pandas.tests.tools.test_to_time + • pandas.tests.tools.test_to_timedelta + • pandas.tests.tseries.frequencies.test_inference + • pandas.tests.tseries.offsets.test_common + • pandas.tests.tslibs.test_parsing + • pandas.tests.tslibs.test_timezones + • pandas.tests.util.test_util + • pandas.tests.window.test_pairwise + • pandas.tests.window.test_rolling + • pandas.util._test_decorators + +
+ +
+ + + +
+ + pandas.compat._optional +SourceModule
+imports: + __future__ + • importlib + • pandas.compat + • pandas.util._exceptions + • pandas.util.version + • sys + • types + • typing + • warnings + +
+
+imported by: + entry.py + • pandas._testing._io + • pandas.core._numba.executor + • pandas.core.apply + • pandas.core.arrays.sparse.accessor + • pandas.core.computation.check + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.numba_ + • pandas.core.interchange.from_dataframe + • pandas.core.missing + • pandas.core.nanops + • pandas.core.series + • pandas.core.util.numba_ + • pandas.core.window.numba_ + • pandas.core.window.online + • pandas.core.window.rolling + • pandas.io._util + • pandas.io.common + • pandas.io.excel._base + • pandas.io.excel._calamine + • pandas.io.excel._odfreader + • pandas.io.excel._openpyxl + • pandas.io.excel._pyxlsb + • pandas.io.excel._util + • pandas.io.excel._xlrd + • pandas.io.feather_format + • pandas.io.formats.style + • pandas.io.formats.style_render + • pandas.io.gbq + • pandas.io.html + • pandas.io.json._json + • pandas.io.orc + • pandas.io.parquet + • pandas.io.parsers.arrow_parser_wrapper + • pandas.io.parsers.base_parser + • pandas.io.parsers.c_parser_wrapper + • pandas.io.pytables + • pandas.io.spss + • pandas.io.sql + • pandas.io.xml + • pandas.tests.computation.test_compat + • pandas.tests.io.excel.test_writers + • pandas.tests.io.parser.conftest + • pandas.tests.io.test_parquet + • pandas.tests.io.test_pickle + • pandas.tests.io.test_sql + • pandas.tests.io.xml.test_xml + • pandas.tests.test_optional_dependency + • pandas.util._print_versions + • pandas.util._test_decorators + • pandas.util._tester + +
+ +
+ +
+ + pandas.compat.compressors +SourceModule
+imports: + __future__ + • bz2 + • lzma + • pandas.compat + • pandas.compat._constants + • pickle + +
+
+imported by: + entry.py + • pandas.compat + • pandas.tests.io.test_pickle + +
+ +
+ +
+ + pandas.compat.numpy +Package +
+imported by: + entry.py + • pandas.compat + • pandas.compat.numpy.function + • pandas.core.arrays.base + • pandas.core.arrays.categorical + • pandas.core.arrays.datetimelike + • pandas.core.arrays.interval + • pandas.core.arrays.masked + • pandas.core.arrays.numpy_ + • pandas.core.arrays.sparse.array + • pandas.core.arrays.string_ + • pandas.core.arrays.timedeltas + • pandas.core.base + • pandas.core.common + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.groupby + • pandas.core.indexes.base + • pandas.core.indexes.datetimelike + • pandas.core.indexes.multi + • pandas.core.indexes.range + • pandas.core.resample + • pandas.core.series + • pandas.tests.apply.test_frame_apply_relabeling + • pandas.tests.arrays.test_datetimelike + • pandas.tests.dtypes.test_inference + • pandas.tests.dtypes.test_missing + • pandas.tests.extension.test_masked + • pandas.tests.extension.test_period + • pandas.tests.frame.methods.test_compare + • pandas.tests.frame.methods.test_reindex + • pandas.tests.frame.test_constructors + • pandas.tests.frame.test_reductions + • pandas.tests.frame.test_unary + • pandas.tests.indexes.datetimes.test_datetime + • pandas.tests.indexes.datetimes.test_indexing + • pandas.tests.indexes.test_common + • pandas.tests.indexing.test_coercion + • pandas.tests.indexing.test_loc + • pandas.tests.interchange.test_impl + • pandas.tests.io.parser.test_c_parser_only + • pandas.tests.plotting.frame.test_frame_subplots + • pandas.tests.plotting.test_series + • pandas.tests.scalar.test_nat + • pandas.tests.series.indexing.test_setitem + • pandas.tests.series.methods.test_describe + • pandas.tests.series.methods.test_equals + • pandas.tests.series.test_constructors + +
+ +
+ + + +
+ + pandas.compat.pickle_compat +SourceModule
+imports: + __future__ + • collections.abc + • contextlib + • copy + • io + • numpy + • pandas + • pandas._libs.arrays + • pandas._libs.tslibs + • pandas.compat + • pandas.core.arrays + • pandas.core.internals + • pickle + • typing + +
+
+imported by: + entry.py + • pandas.io.pickle + • pandas.io.pytables + +
+ +
+ + + +
+ + pandas.conftest +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.core +Package +
+imported by: + entry.py + • pandas.conftest + • pandas.core._numba + • pandas.core.accessor + • pandas.core.algorithms + • pandas.core.api + • pandas.core.apply + • pandas.core.array_algos + • pandas.core.arraylike + • pandas.core.arrays + • pandas.core.arrays._mixins + • pandas.core.arrays.arrow.array + • pandas.core.arrays.base + • pandas.core.arrays.boolean + • pandas.core.arrays.categorical + • pandas.core.arrays.datetimelike + • pandas.core.arrays.masked + • pandas.core.arrays.numpy_ + • pandas.core.arrays.sparse.array + • pandas.core.arrays.string_ + • pandas.core.arrays.timedeltas + • pandas.core.base + • pandas.core.common + • pandas.core.computation + • pandas.core.computation.expressions + • pandas.core.config_init + • pandas.core.construction + • pandas.core.dtypes + • pandas.core.flags + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby + • pandas.core.groupby.generic + • pandas.core.groupby.groupby + • pandas.core.groupby.grouper + • pandas.core.indexers + • pandas.core.indexes + • pandas.core.indexes.base + • pandas.core.indexes.range + • pandas.core.indexing + • pandas.core.interchange + • pandas.core.internals + • pandas.core.internals.blocks + • pandas.core.internals.construction + • pandas.core.methods + • pandas.core.methods.to_dict + • pandas.core.missing + • pandas.core.nanops + • pandas.core.ops + • pandas.core.ops.array_ops + • pandas.core.ops.missing + • pandas.core.resample + • pandas.core.reshape + • pandas.core.reshape.merge + • pandas.core.roperator + • pandas.core.sample + • pandas.core.series + • pandas.core.shared_docs + • pandas.core.sorting + • pandas.core.sparse + • pandas.core.strings + • pandas.core.tools + • pandas.core.util + • pandas.core.window + • pandas.core.window.ewm + • pandas.io.parsers.base_parser + • pandas.tests.arithmetic.test_datetime64 + • pandas.tests.arithmetic.test_numeric + • pandas.tests.arithmetic.test_object + • pandas.tests.arithmetic.test_period + • pandas.tests.arrays.integer.test_arithmetic + • pandas.tests.arrays.timedeltas.test_reductions + • pandas.tests.extension.base.ops + • pandas.tests.extension.decimal.array + • pandas.tests.frame.test_reductions + • pandas.tests.internals.test_api + • pandas.tests.reductions.test_reductions + • pandas.tests.scalar.test_nat + • pandas.tests.scalar.timedelta.test_arithmetic + • pandas.tests.series.methods.test_isin + • pandas.tests.series.test_arithmetic + • pandas.tests.series.test_logical_ops + • pandas.tests.test_common + • pandas.tests.test_nanops + • pandas.tests.test_register_accessor + +
+ +
+ + + +
+ + pandas.core._numba.executor +SourceModule
+imports: + __future__ + • functools + • numba + • numpy + • pandas._typing + • pandas.compat._optional + • pandas.core._numba + • typing + +
+ + +
+ + + + + + + +
+ + pandas.core._numba.kernels.min_max_ +SourceModule
+imports: + __future__ + • numba + • numpy + • pandas._typing + • pandas.core._numba.kernels + • typing + +
+
+imported by: + pandas.core._numba.kernels + +
+ +
+ + + + + +
+ + pandas.core._numba.kernels.var_ +SourceModule +
+imported by: + pandas.core._numba.kernels + +
+ +
+ + + +
+ + pandas.core.algorithms +SourceModule +
+imported by: + entry.py + • pandas.api.extensions + • pandas.core + • pandas.core.api + • pandas.core.arrays._mixins + • pandas.core.arrays.arrow.array + • pandas.core.arrays.base + • pandas.core.arrays.categorical + • pandas.core.arrays.datetimelike + • pandas.core.arrays.interval + • pandas.core.arrays.masked + • pandas.core.arrays.sparse.array + • pandas.core.arrays.sparse.scipy_sparse + • pandas.core.arrays.string_ + • pandas.core.base + • pandas.core.dtypes.concat + • pandas.core.dtypes.missing + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.categorical + • pandas.core.groupby.generic + • pandas.core.groupby.groupby + • pandas.core.groupby.grouper + • pandas.core.indexes.api + • pandas.core.indexes.base + • pandas.core.indexes.interval + • pandas.core.indexes.multi + • pandas.core.indexing + • pandas.core.internals.array_manager + • pandas.core.internals.blocks + • pandas.core.internals.construction + • pandas.core.internals.managers + • pandas.core.resample + • pandas.core.reshape.melt + • pandas.core.reshape.merge + • pandas.core.reshape.reshape + • pandas.core.reshape.tile + • pandas.core.series + • pandas.core.tools.datetimes + • pandas.core.window.rolling + • pandas.io.parsers.base_parser + • pandas.tests.extension.decimal.array + • pandas.tests.frame.test_reductions + • pandas.tests.indexes.base_class.test_setops + • pandas.tests.indexes.test_old_base + • pandas.tests.internals.test_internals + • pandas.tests.libs.test_hashtable + • pandas.tests.series.methods.test_isin + • pandas.tests.test_algos + • pandas.tests.test_sorting + • pandas.tests.test_take + • pandas.tests.window.test_pairwise + • pandas.tseries.frequencies + +
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ + pandas.core.array_algos.transforms +SourceModule
+imports: + __future__ + • numpy + • pandas._typing + • pandas.core.array_algos + • typing + +
+ + +
+ + + +
+ + pandas.core.arrays +Package +
+imported by: + entry.py + • pandas._libs.index + • pandas._testing + • pandas._testing.asserters + • pandas.api.extensions + • pandas.arrays + • pandas.compat.pickle_compat + • pandas.core.algorithms + • pandas.core.api + • pandas.core.array_algos.putmask + • pandas.core.arrays._arrow_string_mixins + • pandas.core.arrays._mixins + • pandas.core.arrays._ranges + • pandas.core.arrays._utils + • pandas.core.arrays.arrow + • pandas.core.arrays.base + • pandas.core.arrays.boolean + • pandas.core.arrays.categorical + • pandas.core.arrays.datetimelike + • pandas.core.arrays.datetimes + • pandas.core.arrays.floating + • pandas.core.arrays.integer + • pandas.core.arrays.interval + • pandas.core.arrays.masked + • pandas.core.arrays.numeric + • pandas.core.arrays.numpy_ + • pandas.core.arrays.period + • pandas.core.arrays.sparse + • pandas.core.arrays.sparse.array + • pandas.core.arrays.string_ + • pandas.core.arrays.string_arrow + • pandas.core.arrays.timedeltas + • pandas.core.base + • pandas.core.construction + • pandas.core.dtypes.astype + • pandas.core.dtypes.base + • pandas.core.dtypes.cast + • pandas.core.dtypes.concat + • pandas.core.dtypes.dtypes + • pandas.core.dtypes.generic + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.groupby + • pandas.core.groupby.grouper + • pandas.core.indexes.accessors + • pandas.core.indexes.base + • pandas.core.indexes.datetimelike + • pandas.core.indexes.extension + • pandas.core.indexes.multi + • pandas.core.internals.api + • pandas.core.internals.array_manager + • pandas.core.internals.blocks + • pandas.core.internals.construction + • pandas.core.internals.managers + • pandas.core.ops.array_ops + • pandas.core.resample + • pandas.core.reshape.encoding + • pandas.core.reshape.merge + • pandas.core.reshape.reshape + • pandas.core.series + • pandas.core.sorting + • pandas.core.strings.accessor + • pandas.core.tools.datetimes + • pandas.core.tools.numeric + • pandas.core.window.rolling + • pandas.io.formats.format + • pandas.io.parsers.base_parser + • pandas.io.pytables + • pandas.io.sql + • pandas.tests.arithmetic.common + • pandas.tests.arithmetic.test_interval + • pandas.tests.arithmetic.test_period + • pandas.tests.arithmetic.test_timedelta64 + • pandas.tests.arrays.datetimes.test_constructors + • pandas.tests.arrays.datetimes.test_cumulative + • pandas.tests.arrays.datetimes.test_reductions + • pandas.tests.arrays.floating.test_arithmetic + • pandas.tests.arrays.floating.test_comparison + • pandas.tests.arrays.floating.test_construction + • pandas.tests.arrays.floating.test_to_numpy + • pandas.tests.arrays.integer.test_arithmetic + • pandas.tests.arrays.integer.test_construction + • pandas.tests.arrays.integer.test_function + • pandas.tests.arrays.interval.test_formats + • pandas.tests.arrays.interval.test_interval + • pandas.tests.arrays.interval.test_interval_pyarrow + • pandas.tests.arrays.interval.test_overlaps + • pandas.tests.arrays.masked.test_function + • pandas.tests.arrays.period.test_arrow_compat + • pandas.tests.arrays.period.test_astype + • pandas.tests.arrays.period.test_constructors + • pandas.tests.arrays.period.test_reductions + • pandas.tests.arrays.sparse.test_unary + • pandas.tests.arrays.test_array + • pandas.tests.arrays.test_datetimelike + • pandas.tests.arrays.test_datetimes + • pandas.tests.arrays.test_ndarray_backed + • pandas.tests.arrays.test_period + • pandas.tests.arrays.test_timedeltas + • pandas.tests.arrays.timedeltas.test_constructors + • pandas.tests.arrays.timedeltas.test_cumulative + • pandas.tests.arrays.timedeltas.test_reductions + • pandas.tests.base.test_conversion + • pandas.tests.copy_view.util + • pandas.tests.dtypes.test_inference + • pandas.tests.extension.array_with_attr.array + • pandas.tests.extension.base.io + • pandas.tests.extension.decimal.array + • pandas.tests.extension.list.array + • pandas.tests.extension.test_common + • pandas.tests.extension.test_datetime + • pandas.tests.extension.test_extension + • pandas.tests.extension.test_interval + • pandas.tests.extension.test_period + • pandas.tests.extension.test_string + • pandas.tests.frame.indexing.test_getitem + • pandas.tests.frame.indexing.test_setitem + • pandas.tests.frame.methods.test_get_numeric_data + • pandas.tests.frame.methods.test_select_dtypes + • pandas.tests.frame.methods.test_to_dict_of_blocks + • pandas.tests.groupby.test_groupby + • pandas.tests.indexes.datetimes.test_constructors + • pandas.tests.indexes.datetimes.test_iter + • pandas.tests.indexes.datetimes.test_scalar_compat + • pandas.tests.indexes.interval.test_constructors + • pandas.tests.indexes.numeric.test_indexing + • pandas.tests.indexes.period.test_constructors + • pandas.tests.indexes.test_numpy_compat + • pandas.tests.indexes.test_old_base + • pandas.tests.indexes.timedeltas.methods.test_astype + • pandas.tests.internals.test_internals + • pandas.tests.io.excel.test_readers + • pandas.tests.io.json.test_pandas + • pandas.tests.io.parser.dtypes.test_dtypes_basic + • pandas.tests.io.parser.test_concatenate_chunks + • pandas.tests.io.parser.test_read_fwf + • pandas.tests.io.parser.test_upcast + • pandas.tests.io.test_clipboard + • pandas.tests.io.test_feather + • pandas.tests.io.test_html + • pandas.tests.io.test_orc + • pandas.tests.io.test_sql + • pandas.tests.io.xml.test_xml + • pandas.tests.reshape.concat.test_concat + • pandas.tests.scalar.test_nat + • pandas.tests.series.accessors.test_dt_accessor + • pandas.tests.series.methods.test_fillna + • pandas.tests.series.methods.test_isin + • pandas.tests.series.methods.test_replace + • pandas.tests.series.test_constructors + • pandas.tests.test_algos + • pandas.tests.test_downstream + • pandas.tests.tools.test_to_datetime + • pandas.tests.tools.test_to_timedelta + • pandas.tests.tseries.frequencies.test_inference + +
+ +
+ + + + + + + + + + + + + + + +
+ + pandas.core.arrays.arrow.array +SourceModule + + +
+ + + + + + + +
+ + pandas.core.arrays.categorical +SourceModule + + +
+ +
+ + pandas.core.arrays.datetimelike +SourceModule + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ + pandas.core.arrays.string_ +SourceModule + + +
+ + + + + + + +
+ + pandas.core.common +SourceModule +
+imported by: + entry.py + • pandas.core.apply + • pandas.core.arrays.arrow.array + • pandas.core.arrays.categorical + • pandas.core.arrays.datetimelike + • pandas.core.arrays.datetimes + • pandas.core.arrays.interval + • pandas.core.arrays.period + • pandas.core.arrays.sparse.array + • pandas.core.arrays.timedeltas + • pandas.core.computation.align + • pandas.core.computation.expr + • pandas.core.computation.ops + • pandas.core.computation.pytables + • pandas.core.construction + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.generic + • pandas.core.groupby.groupby + • pandas.core.groupby.grouper + • pandas.core.indexes.base + • pandas.core.indexes.datetimelike + • pandas.core.indexes.datetimes + • pandas.core.indexes.interval + • pandas.core.indexes.multi + • pandas.core.indexes.period + • pandas.core.indexes.range + • pandas.core.indexes.timedeltas + • pandas.core.indexing + • pandas.core.internals.blocks + • pandas.core.internals.construction + • pandas.core.methods.to_dict + • pandas.core.resample + • pandas.core.reshape.concat + • pandas.core.reshape.merge + • pandas.core.reshape.pivot + • pandas.core.series + • pandas.core.window.ewm + • pandas.core.window.rolling + • pandas.io.formats.excel + • pandas.io.formats.format + • pandas.io.formats.style + • pandas.io.formats.style_render + • pandas.io.json._table_schema + • pandas.io.pytables + • pandas.io.sql + • pandas.plotting._matplotlib.boxplot + • pandas.plotting._matplotlib.converter + • pandas.plotting._matplotlib.core + • pandas.plotting._matplotlib.style + • pandas.tests.arrays.categorical.test_indexing + • pandas.tests.frame.methods.test_sample + • pandas.tests.frame.methods.test_to_csv + • pandas.tests.groupby.aggregate.test_cython + • pandas.tests.groupby.test_groupby + • pandas.tests.indexes.interval.test_constructors + • pandas.tests.indexes.interval.test_interval + • pandas.tests.test_algos + • pandas.tests.test_common + • pandas.tests.test_sorting + +
+ +
+ + + + + +
+ + pandas.core.computation.api +SourceModule +
+imported by: + entry.py + • pandas + +
+ +
+ + + + + + + + + + + + + + + +
+ + pandas.core.computation.parsing +SourceModule
+imports: + __future__ + • collections.abc + • io + • keyword + • pandas.core.computation + • token + • tokenize + • typing + +
+ + +
+ + + + + + + +
+ + pandas.core.construction +SourceModule + + +
+ + + + + + + + + +
+ + pandas.core.dtypes.cast +SourceModule +
+imported by: + entry.py + • pandas.core.algorithms + • pandas.core.apply + • pandas.core.array_algos.putmask + • pandas.core.array_algos.take + • pandas.core.arrays._utils + • pandas.core.arrays.arrow.array + • pandas.core.arrays.base + • pandas.core.arrays.categorical + • pandas.core.arrays.datetimelike + • pandas.core.arrays.interval + • pandas.core.arrays.numpy_ + • pandas.core.arrays.sparse.accessor + • pandas.core.arrays.sparse.array + • pandas.core.base + • pandas.core.common + • pandas.core.computation.common + • pandas.core.construction + • pandas.core.dtypes.concat + • pandas.core.dtypes.dtypes + • pandas.core.frame + • pandas.core.groupby.groupby + • pandas.core.groupby.ops + • pandas.core.indexes.api + • pandas.core.indexes.base + • pandas.core.indexes.interval + • pandas.core.indexes.multi + • pandas.core.indexing + • pandas.core.internals.array_manager + • pandas.core.internals.base + • pandas.core.internals.blocks + • pandas.core.internals.concat + • pandas.core.internals.construction + • pandas.core.internals.managers + • pandas.core.methods.to_dict + • pandas.core.missing + • pandas.core.ops.array_ops + • pandas.core.reshape.merge + • pandas.core.reshape.pivot + • pandas.core.reshape.reshape + • pandas.core.series + • pandas.core.tools.numeric + • pandas.tests.dtypes.cast.test_can_hold_element + • pandas.tests.dtypes.cast.test_construct_from_scalar + • pandas.tests.dtypes.cast.test_construct_object_arr + • pandas.tests.dtypes.cast.test_dict_compat + • pandas.tests.dtypes.cast.test_downcast + • pandas.tests.dtypes.cast.test_find_common_type + • pandas.tests.dtypes.cast.test_infer_dtype + • pandas.tests.dtypes.cast.test_maybe_box_native + • pandas.tests.dtypes.cast.test_promote + • pandas.tests.dtypes.test_inference + • pandas.tests.extension.base.interface + • pandas.tests.extension.json.array + • pandas.tests.frame.methods.test_combine_first + • pandas.tests.indexes.multi.test_constructors + • pandas.tests.indexes.multi.test_integrity + • pandas.tests.indexes.test_setops + +
+ +
+ +
+ + pandas.core.dtypes.common +SourceModule +
+imported by: + entry.py + • pandas._testing + • pandas._testing.asserters + • pandas.core.algorithms + • pandas.core.apply + • pandas.core.array_algos.putmask + • pandas.core.array_algos.replace + • pandas.core.array_algos.take + • pandas.core.arrays._mixins + • pandas.core.arrays._utils + • pandas.core.arrays.arrow.accessors + • pandas.core.arrays.arrow.array + • pandas.core.arrays.base + • pandas.core.arrays.boolean + • pandas.core.arrays.categorical + • pandas.core.arrays.datetimelike + • pandas.core.arrays.datetimes + • pandas.core.arrays.floating + • pandas.core.arrays.integer + • pandas.core.arrays.interval + • pandas.core.arrays.masked + • pandas.core.arrays.numeric + • pandas.core.arrays.numpy_ + • pandas.core.arrays.period + • pandas.core.arrays.sparse.array + • pandas.core.arrays.string_ + • pandas.core.arrays.string_arrow + • pandas.core.arrays.timedeltas + • pandas.core.base + • pandas.core.common + • pandas.core.computation.common + • pandas.core.computation.eval + • pandas.core.computation.ops + • pandas.core.computation.pytables + • pandas.core.construction + • pandas.core.dtypes.api + • pandas.core.dtypes.astype + • pandas.core.dtypes.cast + • pandas.core.dtypes.dtypes + • pandas.core.dtypes.missing + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.generic + • pandas.core.groupby.groupby + • pandas.core.groupby.grouper + • pandas.core.groupby.indexing + • pandas.core.groupby.ops + • pandas.core.indexers.objects + • pandas.core.indexers.utils + • pandas.core.indexes.accessors + • pandas.core.indexes.base + • pandas.core.indexes.category + • pandas.core.indexes.datetimelike + • pandas.core.indexes.datetimes + • pandas.core.indexes.interval + • pandas.core.indexes.multi + • pandas.core.indexes.period + • pandas.core.indexes.range + • pandas.core.indexes.timedeltas + • pandas.core.indexing + • pandas.core.internals.api + • pandas.core.internals.array_manager + • pandas.core.internals.blocks + • pandas.core.internals.concat + • pandas.core.internals.construction + • pandas.core.internals.managers + • pandas.core.internals.ops + • pandas.core.methods.describe + • pandas.core.methods.selectn + • pandas.core.missing + • pandas.core.nanops + • pandas.core.ops.array_ops + • pandas.core.reshape.concat + • pandas.core.reshape.encoding + • pandas.core.reshape.melt + • pandas.core.reshape.merge + • pandas.core.reshape.pivot + • pandas.core.reshape.reshape + • pandas.core.reshape.tile + • pandas.core.reshape.util + • pandas.core.series + • pandas.core.sorting + • pandas.core.strings.accessor + • pandas.core.tools.datetimes + • pandas.core.tools.numeric + • pandas.core.tools.timedeltas + • pandas.core.util.hashing + • pandas.core.window.ewm + • pandas.core.window.rolling + • pandas.io.common + • pandas.io.excel._base + • pandas.io.excel._util + • pandas.io.formats.excel + • pandas.io.formats.format + • pandas.io.formats.style_render + • pandas.io.formats.xml + • pandas.io.html + • pandas.io.json._json + • pandas.io.json._table_schema + • pandas.io.parsers.arrow_parser_wrapper + • pandas.io.parsers.base_parser + • pandas.io.parsers.c_parser_wrapper + • pandas.io.parsers.python_parser + • pandas.io.parsers.readers + • pandas.io.pytables + • pandas.io.sql + • pandas.io.stata + • pandas.io.xml + • pandas.plotting._core + • pandas.plotting._matplotlib.boxplot + • pandas.plotting._matplotlib.converter + • pandas.plotting._matplotlib.core + • pandas.plotting._matplotlib.hist + • pandas.plotting._matplotlib.style + • pandas.plotting._matplotlib.tools + • pandas.tests.apply.test_str + • pandas.tests.arithmetic.test_interval + • pandas.tests.arrays.categorical.test_constructors + • pandas.tests.arrays.masked.test_function + • pandas.tests.arrays.numpy_.test_indexing + • pandas.tests.arrays.string_.test_string + • pandas.tests.base.test_misc + • pandas.tests.computation.test_eval + • pandas.tests.copy_view.test_indexing + • pandas.tests.dtypes.cast.test_find_common_type + • pandas.tests.dtypes.cast.test_infer_dtype + • pandas.tests.dtypes.cast.test_promote + • pandas.tests.dtypes.test_common + • pandas.tests.dtypes.test_dtypes + • pandas.tests.dtypes.test_inference + • pandas.tests.dtypes.test_missing + • pandas.tests.extension.base.dim2 + • pandas.tests.extension.base.groupby + • pandas.tests.extension.base.interface + • pandas.tests.extension.base.methods + • pandas.tests.extension.base.ops + • pandas.tests.extension.decimal.array + • pandas.tests.extension.json.array + • pandas.tests.extension.test_common + • pandas.tests.extension.test_masked + • pandas.tests.frame.indexing.test_indexing + • pandas.tests.frame.indexing.test_set_value + • pandas.tests.frame.indexing.test_setitem + • pandas.tests.frame.indexing.test_where + • pandas.tests.frame.methods.test_combine_first + • pandas.tests.frame.methods.test_reset_index + • pandas.tests.frame.test_constructors + • pandas.tests.generic.test_generic + • pandas.tests.groupby.aggregate.test_aggregate + • pandas.tests.groupby.aggregate.test_cython + • pandas.tests.groupby.methods.test_size + • pandas.tests.groupby.test_groupby + • pandas.tests.groupby.test_libgroupby + • pandas.tests.groupby.test_reductions + • pandas.tests.groupby.transform.test_transform + • pandas.tests.indexes.interval.test_constructors + • pandas.tests.indexes.interval.test_interval_range + • pandas.tests.indexes.multi.test_equivalence + • pandas.tests.indexes.ranges.test_range + • pandas.tests.indexes.test_base + • pandas.tests.indexes.test_common + • pandas.tests.indexes.test_indexing + • pandas.tests.indexes.test_old_base + • pandas.tests.indexing.test_indexing + • pandas.tests.internals.test_internals + • pandas.tests.resample.test_base + • pandas.tests.reshape.merge.test_merge + • pandas.tests.reshape.test_get_dummies + • pandas.tests.scalar.test_na_scalar + • pandas.tests.series.accessors.test_dt_accessor + • pandas.tests.series.indexing.test_getitem + • pandas.tests.series.indexing.test_setitem + • pandas.tests.series.indexing.test_where + • pandas.tests.series.methods.test_describe + • pandas.tests.series.methods.test_equals + • pandas.tests.series.methods.test_quantile + • pandas.tests.test_algos + • pandas.tests.test_nanops + • pandas.tests.tools.test_to_datetime + • pandas.tests.util.test_assert_attr_equal + • pandas.tests.window.test_dtypes + • pandas.tseries.frequencies + • pandas.util._validators + +
+ +
+ + + +
+ + pandas.core.dtypes.dtypes +SourceModule +
+imported by: + entry.py + • pandas + • pandas._testing.asserters + • pandas._typing + • pandas.api.types + • pandas.conftest + • pandas.core.algorithms + • pandas.core.api + • pandas.core.apply + • pandas.core.arrays._mixins + • pandas.core.arrays.arrow.accessors + • pandas.core.arrays.arrow.array + • pandas.core.arrays.arrow.extension_types + • pandas.core.arrays.base + • pandas.core.arrays.boolean + • pandas.core.arrays.categorical + • pandas.core.arrays.datetimelike + • pandas.core.arrays.datetimes + • pandas.core.arrays.interval + • pandas.core.arrays.masked + • pandas.core.arrays.numpy_ + • pandas.core.arrays.period + • pandas.core.arrays.sparse.accessor + • pandas.core.arrays.sparse.array + • pandas.core.arrays.timedeltas + • pandas.core.base + • pandas.core.construction + • pandas.core.dtypes.astype + • pandas.core.dtypes.cast + • pandas.core.dtypes.common + • pandas.core.dtypes.concat + • pandas.core.dtypes.missing + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.generic + • pandas.core.groupby.grouper + • pandas.core.indexers.utils + • pandas.core.indexes.accessors + • pandas.core.indexes.base + • pandas.core.indexes.category + • pandas.core.indexes.datetimelike + • pandas.core.indexes.datetimes + • pandas.core.indexes.interval + • pandas.core.indexes.multi + • pandas.core.indexes.period + • pandas.core.indexing + • pandas.core.interchange.column + • pandas.core.interchange.utils + • pandas.core.internals.api + • pandas.core.internals.array_manager + • pandas.core.internals.base + • pandas.core.internals.blocks + • pandas.core.internals.concat + • pandas.core.internals.construction + • pandas.core.internals.managers + • pandas.core.methods.describe + • pandas.core.methods.selectn + • pandas.core.methods.to_dict + • pandas.core.missing + • pandas.core.resample + • pandas.core.reshape.encoding + • pandas.core.reshape.merge + • pandas.core.reshape.pivot + • pandas.core.reshape.reshape + • pandas.core.reshape.tile + • pandas.core.series + • pandas.core.sparse.api + • pandas.core.strings.accessor + • pandas.core.tools.datetimes + • pandas.core.tools.numeric + • pandas.core.tools.timedeltas + • pandas.core.util.hashing + • pandas.core.window.ewm + • pandas.core.window.rolling + • pandas.io.formats.format + • pandas.io.json._json + • pandas.io.json._table_schema + • pandas.io.parsers.base_parser + • pandas.io.parsers.c_parser_wrapper + • pandas.io.pytables + • pandas.io.sql + • pandas.io.stata + • pandas.plotting._matplotlib.core + • pandas.tests.apply.test_frame_apply + • pandas.tests.arrays.categorical.test_constructors + • pandas.tests.arrays.categorical.test_dtypes + • pandas.tests.arrays.categorical.test_missing + • pandas.tests.arrays.datetimes.test_constructors + • pandas.tests.arrays.datetimes.test_reductions + • pandas.tests.arrays.numpy_.test_numpy + • pandas.tests.arrays.period.test_arrow_compat + • pandas.tests.arrays.period.test_astype + • pandas.tests.arrays.test_datetimes + • pandas.tests.arrays.test_period + • pandas.tests.base.test_conversion + • pandas.tests.dtypes.cast.test_construct_from_scalar + • pandas.tests.dtypes.cast.test_find_common_type + • pandas.tests.dtypes.cast.test_promote + • pandas.tests.dtypes.test_common + • pandas.tests.dtypes.test_dtypes + • pandas.tests.dtypes.test_missing + • pandas.tests.extension.base.interface + • pandas.tests.extension.base.methods + • pandas.tests.extension.date.array + • pandas.tests.extension.test_arrow + • pandas.tests.extension.test_common + • pandas.tests.extension.test_datetime + • pandas.tests.extension.test_interval + • pandas.tests.extension.test_numpy + • pandas.tests.extension.test_period + • pandas.tests.frame.indexing.test_setitem + • pandas.tests.frame.methods.test_dtypes + • pandas.tests.frame.methods.test_select_dtypes + • pandas.tests.frame.test_constructors + • pandas.tests.indexes.interval.test_astype + • pandas.tests.indexes.interval.test_constructors + • pandas.tests.indexes.multi.test_astype + • pandas.tests.indexes.multi.test_get_set + • pandas.tests.indexes.period.test_constructors + • pandas.tests.indexes.test_old_base + • pandas.tests.io.json.test_json_table_schema + • pandas.tests.io.parser.dtypes.test_categorical + • pandas.tests.reshape.concat.test_categorical + • pandas.tests.reshape.merge.test_merge + • pandas.tests.series.test_constructors + • pandas.tests.strings.test_extract + • pandas.tests.test_algos + • pandas.tseries.frequencies + +
+ +
+ +
+ + pandas.core.dtypes.generic +SourceModule
+imports: + __future__ + • pandas + • pandas.core.arrays + • pandas.core.dtypes + • pandas.core.generic + • typing + +
+
+imported by: + entry.py + • pandas.core.algorithms + • pandas.core.apply + • pandas.core.arraylike + • pandas.core.arrays.base + • pandas.core.arrays.categorical + • pandas.core.arrays.datetimelike + • pandas.core.arrays.interval + • pandas.core.arrays.period + • pandas.core.arrays.sparse.array + • pandas.core.base + • pandas.core.common + • pandas.core.computation.align + • pandas.core.construction + • pandas.core.dtypes.base + • pandas.core.dtypes.cast + • pandas.core.dtypes.common + • pandas.core.dtypes.concat + • pandas.core.dtypes.dtypes + • pandas.core.dtypes.missing + • pandas.core.generic + • pandas.core.indexers.utils + • pandas.core.indexes.accessors + • pandas.core.indexes.base + • pandas.core.indexes.datetimes + • pandas.core.indexes.extension + • pandas.core.indexes.multi + • pandas.core.indexes.period + • pandas.core.indexes.range + • pandas.core.indexes.timedeltas + • pandas.core.indexing + • pandas.core.internals.array_manager + • pandas.core.internals.blocks + • pandas.core.internals.construction + • pandas.core.internals.managers + • pandas.core.ops.array_ops + • pandas.core.ops.common + • pandas.core.ops.dispatch + • pandas.core.resample + • pandas.core.reshape.concat + • pandas.core.reshape.merge + • pandas.core.reshape.pivot + • pandas.core.reshape.tile + • pandas.core.sample + • pandas.core.series + • pandas.core.sorting + • pandas.core.strings.accessor + • pandas.core.tools.datetimes + • pandas.core.tools.numeric + • pandas.core.tools.timedeltas + • pandas.core.tools.times + • pandas.core.util.hashing + • pandas.core.window.common + • pandas.core.window.ewm + • pandas.core.window.rolling + • pandas.io.clipboards + • pandas.io.common + • pandas.io.formats.csvs + • pandas.io.formats.style_render + • pandas.plotting._core + • pandas.plotting._matplotlib.boxplot + • pandas.plotting._matplotlib.core + • pandas.plotting._matplotlib.hist + • pandas.plotting._matplotlib.timeseries + • pandas.plotting._matplotlib.tools + • pandas.tests.arrays.integer.test_dtypes + • pandas.tests.dtypes.test_generic + • pandas.tseries.frequencies + +
+ +
+ + + +
+ + pandas.core.dtypes.missing +SourceModule +
+imported by: + entry.py + • pandas._testing.asserters + • pandas.core.algorithms + • pandas.core.api + • pandas.core.array_algos.datetimelike_accumulations + • pandas.core.array_algos.quantile + • pandas.core.array_algos.replace + • pandas.core.array_algos.take + • pandas.core.arrays._mixins + • pandas.core.arrays.arrow.array + • pandas.core.arrays.base + • pandas.core.arrays.boolean + • pandas.core.arrays.categorical + • pandas.core.arrays.datetimelike + • pandas.core.arrays.datetimes + • pandas.core.arrays.interval + • pandas.core.arrays.masked + • pandas.core.arrays.numpy_ + • pandas.core.arrays.period + • pandas.core.arrays.sparse.array + • pandas.core.arrays.sparse.scipy_sparse + • pandas.core.arrays.string_arrow + • pandas.core.arrays.timedeltas + • pandas.core.base + • pandas.core.config_init + • pandas.core.construction + • pandas.core.dtypes.cast + • pandas.core.dtypes.dtypes + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.generic + • pandas.core.groupby.groupby + • pandas.core.groupby.ops + • pandas.core.indexes.base + • pandas.core.indexes.category + • pandas.core.indexes.datetimes + • pandas.core.indexes.interval + • pandas.core.indexes.multi + • pandas.core.indexes.period + • pandas.core.indexing + • pandas.core.internals.array_manager + • pandas.core.internals.blocks + • pandas.core.internals.concat + • pandas.core.internals.managers + • pandas.core.missing + • pandas.core.nanops + • pandas.core.ops.array_ops + • pandas.core.reshape.concat + • pandas.core.reshape.melt + • pandas.core.reshape.merge + • pandas.core.reshape.reshape + • pandas.core.reshape.tile + • pandas.core.series + • pandas.core.sorting + • pandas.core.strings.accessor + • pandas.core.strings.object_array + • pandas.core.tools.times + • pandas.core.window.ewm + • pandas.core.window.rolling + • pandas.io.formats.csvs + • pandas.io.formats.excel + • pandas.io.formats.format + • pandas.io.formats.xml + • pandas.io.parsers.base_parser + • pandas.io.pytables + • pandas.io.sql + • pandas.plotting._matplotlib.boxplot + • pandas.plotting._matplotlib.core + • pandas.plotting._matplotlib.groupby + • pandas.plotting._matplotlib.hist + • pandas.plotting._matplotlib.misc + • pandas.tests.dtypes.cast.test_promote + • pandas.tests.dtypes.test_common + • pandas.tests.dtypes.test_missing + • pandas.tests.extension.base.methods + • pandas.tests.generic.test_label_or_level_utils + • pandas.tests.groupby.test_groupby_dropna + • pandas.tests.groupby.test_reductions + • pandas.tests.internals.test_managers + +
+ +
+ +
+ + pandas.core.flags +SourceModule
+imports: + __future__ + • pandas.core + • pandas.core.generic + • typing + • weakref + +
+
+imported by: + entry.py + • pandas.core.api + • pandas.core.generic + +
+ +
+ +
+ + pandas.core.frame +SourceModule
+imports: + __future__ + • collections + • collections.abc + • datetime + • functools + • inspect + • io + • itertools + • numpy + • numpy.ma + • numpy.ma.mrecords + • operator + • pandas + • pandas._config + • pandas._config.config + • pandas._libs + • pandas._libs.algos + • pandas._libs.hashtable + • pandas._libs.internals + • pandas._libs.lib + • pandas._libs.properties + • pandas._typing + • pandas.compat + • pandas.compat._constants + • pandas.compat._optional + • pandas.compat.numpy + • pandas.compat.numpy.function + • pandas.core + • pandas.core.accessor + • pandas.core.algorithms + • pandas.core.apply + • pandas.core.array_algos.take + • pandas.core.arraylike + • pandas.core.arrays + • pandas.core.arrays.arrow.array + • pandas.core.arrays.masked + • pandas.core.arrays.sparse + • pandas.core.common + • pandas.core.computation + • pandas.core.computation.eval + • pandas.core.computation.expressions + • pandas.core.construction + • pandas.core.dtypes.cast + • pandas.core.dtypes.common + • pandas.core.dtypes.concat + • pandas.core.dtypes.dtypes + • pandas.core.dtypes.missing + • pandas.core.generic + • pandas.core.groupby.generic + • pandas.core.indexers + • pandas.core.indexes.api + • pandas.core.indexes.multi + • pandas.core.indexing + • pandas.core.interchange.dataframe + • pandas.core.interchange.dataframe_protocol + • pandas.core.internals + • pandas.core.internals.construction + • pandas.core.methods + • pandas.core.methods.selectn + • pandas.core.methods.to_dict + • pandas.core.nanops + • pandas.core.ops + • pandas.core.reshape.concat + • pandas.core.reshape.melt + • pandas.core.reshape.merge + • pandas.core.reshape.pivot + • pandas.core.reshape.reshape + • pandas.core.roperator + • pandas.core.series + • pandas.core.shared_docs + • pandas.core.sorting + • pandas.errors + • pandas.io + • pandas.io.common + • pandas.io.feather_format + • pandas.io.formats + • pandas.io.formats.console + • pandas.io.formats.format + • pandas.io.formats.info + • pandas.io.formats.style + • pandas.io.formats.xml + • pandas.io.gbq + • pandas.io.orc + • pandas.io.parquet + • pandas.io.stata + • pandas.plotting + • pandas.util._decorators + • pandas.util._exceptions + • pandas.util._validators + • sys + • textwrap + • typing + • warnings + +
+ + +
+ +
+ + pandas.core.generic +SourceModule
+imports: + __future__ + • collections + • collections.abc + • copy + • datetime + • functools + • gc + • json + • numpy + • operator + • pandas + • pandas._config + • pandas._config.config + • pandas._libs + • pandas._libs.lib + • pandas._libs.tslibs + • pandas._libs.tslibs.dtypes + • pandas._typing + • pandas.compat + • pandas.compat._constants + • pandas.compat._optional + • pandas.compat.numpy + • pandas.compat.numpy.function + • pandas.core + • pandas.core.algorithms + • pandas.core.array_algos.replace + • pandas.core.arraylike + • pandas.core.arrays + • pandas.core.base + • pandas.core.common + • pandas.core.computation.parsing + • pandas.core.construction + • pandas.core.dtypes.astype + • pandas.core.dtypes.common + • pandas.core.dtypes.dtypes + • pandas.core.dtypes.generic + • pandas.core.dtypes.inference + • pandas.core.dtypes.missing + • pandas.core.flags + • pandas.core.indexers.objects + • pandas.core.indexes.api + • pandas.core.indexing + • pandas.core.internals + • pandas.core.internals.construction + • pandas.core.methods.describe + • pandas.core.missing + • pandas.core.nanops + • pandas.core.resample + • pandas.core.reshape.concat + • pandas.core.sample + • pandas.core.series + • pandas.core.shared_docs + • pandas.core.sorting + • pandas.core.tools.datetimes + • pandas.core.window + • pandas.errors + • pandas.io + • pandas.io.clipboards + • pandas.io.formats.excel + • pandas.io.formats.format + • pandas.io.formats.printing + • pandas.io.formats.style + • pandas.io.json + • pandas.io.pickle + • pandas.io.pytables + • pandas.io.sql + • pandas.util._decorators + • pandas.util._exceptions + • pandas.util._validators + • pickle + • re + • sys + • typing + • warnings + • weakref + +
+ + +
+ + + + + + + + + +
+ + pandas.core.groupby.groupby +SourceModule + + +
+ + + + + +
+ + pandas.core.groupby.numba_ +SourceModule
+imports: + __future__ + • functools + • inspect + • numba + • numpy + • pandas._typing + • pandas.compat._optional + • pandas.core.groupby + • pandas.core.util.numba_ + • typing + +
+
+imported by: + entry.py + • pandas.core.groupby + • pandas.core.groupby.groupby + +
+ +
+ + + + + + + + + + + + + +
+ + pandas.core.indexes.api +SourceModule + + +
+ +
+ + pandas.core.indexes.base +SourceModule
+imports: + __future__ + • collections + • collections.abc + • copy + • datetime + • functools + • itertools + • numpy + • operator + • pandas + • pandas._config + • pandas._libs + • pandas._libs.algos + • pandas._libs.index + • pandas._libs.internals + • pandas._libs.join + • pandas._libs.lib + • pandas._libs.tslibs + • pandas._libs.writers + • pandas._typing + • pandas.compat.numpy + • pandas.compat.numpy.function + • pandas.core + • pandas.core.accessor + • pandas.core.algorithms + • pandas.core.array_algos.putmask + • pandas.core.arraylike + • pandas.core.arrays + • pandas.core.arrays.numpy_ + • pandas.core.arrays.string_ + • pandas.core.base + • pandas.core.common + • pandas.core.construction + • pandas.core.dtypes.astype + • pandas.core.dtypes.cast + • pandas.core.dtypes.common + • pandas.core.dtypes.concat + • pandas.core.dtypes.dtypes + • pandas.core.dtypes.generic + • pandas.core.dtypes.inference + • pandas.core.dtypes.missing + • pandas.core.indexers + • pandas.core.indexes + • pandas.core.indexes.frozen + • pandas.core.indexes.multi + • pandas.core.indexes.period + • pandas.core.indexes.range + • pandas.core.missing + • pandas.core.nanops + • pandas.core.ops + • pandas.core.ops.invalid + • pandas.core.reshape.merge + • pandas.core.sorting + • pandas.core.strings.accessor + • pandas.errors + • pandas.io.formats.format + • pandas.io.formats.printing + • pandas.util._decorators + • pandas.util._exceptions + • pyarrow + • typing + • warnings + +
+ + +
+ + + + + +
+ + pandas.core.indexes.datetimes +SourceModule + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + pandas.core.internals.Block +MissingModule
+imported by: + pandas.core.internals + • pandas.io.pytables + +
+ +
+ + + + + + + +
+ + pandas.core.internals.blocks +SourceModule + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + pandas.core.ops.dispatch +SourceModule +
+imported by: + entry.py + • pandas.core.ops.array_ops + +
+ +
+ +
+ + pandas.core.ops.docstrings +SourceModule
+imports: + __future__ + • pandas.core.ops + +
+
+imported by: + entry.py + • pandas.core.ops + +
+ +
+ + + +
+ + pandas.core.ops.mask_ops +SourceModule
+imports: + __future__ + • numpy + • pandas._libs + • pandas._libs.lib + • pandas._libs.missing + • pandas.core.ops + +
+ + +
+ +
+ + pandas.core.ops.missing +SourceModule
+imports: + __future__ + • numpy + • operator + • pandas.core + • pandas.core.ops + • pandas.core.roperator + +
+
+imported by: + entry.py + • pandas.core.ops + • pandas.core.ops.array_ops + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ + pandas.core.sample +SourceModule + + +
+ +
+ + pandas.core.series +SourceModule
+imports: + __future__ + • collections.abc + • numpy + • operator + • pandas._config + • pandas._config.config + • pandas._libs + • pandas._libs.internals + • pandas._libs.lib + • pandas._libs.properties + • pandas._libs.reshape + • pandas._typing + • pandas.compat + • pandas.compat._constants + • pandas.compat._optional + • pandas.compat.numpy + • pandas.compat.numpy.function + • pandas.core + • pandas.core.accessor + • pandas.core.algorithms + • pandas.core.apply + • pandas.core.arrays + • pandas.core.arrays.arrow + • pandas.core.arrays.categorical + • pandas.core.arrays.sparse + • pandas.core.arrays.string_ + • pandas.core.base + • pandas.core.common + • pandas.core.construction + • pandas.core.dtypes.astype + • pandas.core.dtypes.cast + • pandas.core.dtypes.common + • pandas.core.dtypes.dtypes + • pandas.core.dtypes.generic + • pandas.core.dtypes.inference + • pandas.core.dtypes.missing + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.generic + • pandas.core.indexers + • pandas.core.indexes.accessors + • pandas.core.indexes.api + • pandas.core.indexes.base + • pandas.core.indexes.multi + • pandas.core.indexing + • pandas.core.internals + • pandas.core.methods + • pandas.core.methods.selectn + • pandas.core.missing + • pandas.core.nanops + • pandas.core.ops + • pandas.core.reshape.concat + • pandas.core.reshape.reshape + • pandas.core.roperator + • pandas.core.shared_docs + • pandas.core.sorting + • pandas.core.strings.accessor + • pandas.core.tools.datetimes + • pandas.errors + • pandas.io.formats.format + • pandas.io.formats.info + • pandas.plotting + • pandas.util._decorators + • pandas.util._exceptions + • pandas.util._validators + • sys + • textwrap + • typing + • warnings + • weakref + +
+ + +
+ + + + + +
+ + pandas.core.sparse +Package
+imports: + pandas.core + +
+
+imported by: + entry.py + • pandas.core.sparse.api + +
+ +
+ +
+ + pandas.core.sparse.api +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.core.strings.base +SourceModule
+imports: + __future__ + • abc + • collections.abc + • numpy + • pandas + • pandas._typing + • pandas.core.strings + • re + • typing + +
+ + +
+ + + + + + + + + + + + + +
+ + pandas.core.util +Package
+imports: + pandas.core + +
+ + +
+ + + + + + + +
+ + pandas.core.window.common +SourceModule + + +
+ + + + + + + +
+ + pandas.core.window.numba_ +SourceModule + + +
+ +
+ + pandas.core.window.online +SourceModule
+imports: + __future__ + • numba + • numpy + • pandas.compat._optional + • pandas.core.window + • typing + +
+
+imported by: + entry.py + • pandas.core.window.ewm + +
+ +
+ + + +
+ + pandas.errors +Package +
+imported by: + entry.py + • pandas + • pandas._testing.contexts + • pandas.compat.numpy.function + • pandas.core.apply + • pandas.core.arrays._mixins + • pandas.core.arrays._utils + • pandas.core.arrays.arrow._arrow_utils + • pandas.core.arrays.base + • pandas.core.arrays.datetimelike + • pandas.core.arrays.datetimes + • pandas.core.arrays.interval + • pandas.core.arrays.masked + • pandas.core.arrays.numeric + • pandas.core.arrays.sparse.array + • pandas.core.base + • pandas.core.computation.align + • pandas.core.computation.engines + • pandas.core.computation.expr + • pandas.core.computation.pytables + • pandas.core.computation.scope + • pandas.core.dtypes.astype + • pandas.core.dtypes.base + • pandas.core.dtypes.cast + • pandas.core.dtypes.dtypes + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.generic + • pandas.core.groupby.groupby + • pandas.core.groupby.grouper + • pandas.core.groupby.ops + • pandas.core.indexes.api + • pandas.core.indexes.base + • pandas.core.indexes.datetimelike + • pandas.core.indexes.interval + • pandas.core.indexes.multi + • pandas.core.indexing + • pandas.core.interchange.column + • pandas.core.interchange.from_dataframe + • pandas.core.internals.base + • pandas.core.internals.blocks + • pandas.core.internals.managers + • pandas.core.resample + • pandas.core.reshape.merge + • pandas.core.reshape.reshape + • pandas.core.series + • pandas.core.util.numba_ + • pandas.core.window.rolling + • pandas.io.clipboard + • pandas.io.excel._base + • pandas.io.formats.css + • pandas.io.formats.xml + • pandas.io.html + • pandas.io.json._json + • pandas.io.parquet + • pandas.io.parsers.arrow_parser_wrapper + • pandas.io.parsers.base_parser + • pandas.io.parsers.c_parser_wrapper + • pandas.io.parsers.python_parser + • pandas.io.parsers.readers + • pandas.io.pytables + • pandas.io.sas.sas7bdat + • pandas.io.sql + • pandas.io.stata + • pandas.io.xml + • pandas.plotting._matplotlib.core + • pandas.tests.apply.test_invalid_arg + • pandas.tests.arithmetic.test_datetime64 + • pandas.tests.arithmetic.test_period + • pandas.tests.arithmetic.test_timedelta64 + • pandas.tests.computation.test_eval + • pandas.tests.copy_view.test_chained_assignment_deprecation + • pandas.tests.copy_view.test_indexing + • pandas.tests.copy_view.test_methods + • pandas.tests.extension.test_sparse + • pandas.tests.frame.indexing.test_indexing + • pandas.tests.frame.indexing.test_insert + • pandas.tests.frame.indexing.test_xs + • pandas.tests.frame.methods.test_drop + • pandas.tests.frame.methods.test_interpolate + • pandas.tests.frame.methods.test_join + • pandas.tests.frame.methods.test_to_csv + • pandas.tests.frame.test_block_internals + • pandas.tests.frame.test_constructors + • pandas.tests.frame.test_query_eval + • pandas.tests.frame.test_stack_unstack + • pandas.tests.groupby.aggregate.test_aggregate + • pandas.tests.groupby.aggregate.test_numba + • pandas.tests.groupby.aggregate.test_other + • pandas.tests.groupby.test_cumulative + • pandas.tests.groupby.test_groupby + • pandas.tests.groupby.transform.test_numba + • pandas.tests.indexes.categorical.test_indexing + • pandas.tests.indexes.datetimes.methods.test_shift + • pandas.tests.indexes.datetimes.test_date_range + • pandas.tests.indexes.interval.test_indexing + • pandas.tests.indexes.multi.test_drop + • pandas.tests.indexes.multi.test_indexing + • pandas.tests.indexes.multi.test_sorting + • pandas.tests.indexes.numeric.test_indexing + • pandas.tests.indexes.period.test_indexing + • pandas.tests.indexes.test_any_index + • pandas.tests.indexes.test_base + • pandas.tests.indexes.test_indexing + • pandas.tests.indexes.timedeltas.methods.test_shift + • pandas.tests.indexing.multiindex.test_chaining_and_caching + • pandas.tests.indexing.multiindex.test_loc + • pandas.tests.indexing.multiindex.test_multiindex + • pandas.tests.indexing.multiindex.test_setitem + • pandas.tests.indexing.multiindex.test_slice + • pandas.tests.indexing.test_at + • pandas.tests.indexing.test_chaining_and_caching + • pandas.tests.indexing.test_iloc + • pandas.tests.indexing.test_indexing + • pandas.tests.indexing.test_loc + • pandas.tests.io.formats.test_css + • pandas.tests.io.formats.test_to_excel + • pandas.tests.io.parser.common.test_chunksize + • pandas.tests.io.parser.common.test_common_basic + • pandas.tests.io.parser.common.test_file_buffer_url + • pandas.tests.io.parser.common.test_read_errors + • pandas.tests.io.parser.dtypes.test_dtypes_basic + • pandas.tests.io.parser.test_c_parser_only + • pandas.tests.io.parser.test_concatenate_chunks + • pandas.tests.io.parser.test_dialect + • pandas.tests.io.parser.test_header + • pandas.tests.io.parser.test_python_parser_only + • pandas.tests.io.parser.test_quoting + • pandas.tests.io.parser.test_read_fwf + • pandas.tests.io.parser.test_skiprows + • pandas.tests.io.parser.test_textreader + • pandas.tests.io.parser.test_unsupported + • pandas.tests.io.parser.usecols.test_usecols_basic + • pandas.tests.io.pytables.test_file_handling + • pandas.tests.io.pytables.test_retain_attributes + • pandas.tests.io.sas.test_sas7bdat + • pandas.tests.io.test_clipboard + • pandas.tests.io.xml.test_xml + • pandas.tests.io.xml.test_xml_dtypes + • pandas.tests.resample.test_period_index + • pandas.tests.resample.test_resample_api + • pandas.tests.reshape.concat.test_concat + • pandas.tests.reshape.concat.test_index + • pandas.tests.reshape.test_pivot + • pandas.tests.scalar.period.test_asfreq + • pandas.tests.scalar.timedelta.methods.test_as_unit + • pandas.tests.scalar.timedelta.methods.test_round + • pandas.tests.scalar.timedelta.test_arithmetic + • pandas.tests.scalar.timedelta.test_timedelta + • pandas.tests.scalar.timestamp.methods.test_as_unit + • pandas.tests.scalar.timestamp.methods.test_tz_localize + • pandas.tests.scalar.timestamp.test_constructors + • pandas.tests.series.accessors.test_dt_accessor + • pandas.tests.series.indexing.test_indexing + • pandas.tests.series.indexing.test_setitem + • pandas.tests.series.test_constructors + • pandas.tests.strings.test_find_replace + • pandas.tests.test_downstream + • pandas.tests.test_errors + • pandas.tests.tools.test_to_datetime + • pandas.tests.tools.test_to_timedelta + • pandas.tests.tseries.offsets.test_dst + • pandas.tests.tseries.offsets.test_offsets + • pandas.tests.tseries.offsets.test_ticks + • pandas.tests.util.test_assert_produces_warning + • pandas.tests.window.test_api + • pandas.tests.window.test_dtypes + • pandas.tests.window.test_numba + • pandas.tseries.holiday + +
+ +
+ + + + + + + +
+ + pandas.io.clipboard +Package
+imports: + AppKit + • Foundation + • PyQt4 + • contextlib + • ctypes + • ctypes.wintypes + • os + • pandas.errors + • pandas.io + • pandas.util._exceptions + • platform + • qtpy + • shutil + • subprocess + • time + • warnings + +
+ + +
+ +
+ + pandas.io.clipboards +SourceModule +
+imported by: + entry.py + • pandas.core.generic + • pandas.io + • pandas.io.api + +
+ +
+ +
+ + pandas.io.common +SourceModule
+imports: + __future__ + • abc + • botocore + • codecs + • collections + • collections.abc + • dataclasses + • functools + • gzip + • io + • mmap + • os + • pandas + • pandas._typing + • pandas.compat + • pandas.compat._optional + • pandas.core.dtypes.common + • pandas.core.dtypes.generic + • pandas.core.shared_docs + • pandas.io + • pandas.util._decorators + • pandas.util._exceptions + • pathlib + • re + • tarfile + • types + • typing + • urllib.parse + • urllib.request + • warnings + • zipfile + +
+ + +
+ + + + + + + + + +
+ + pandas.io.excel._odswriter +SourceModule +
+imported by: + entry.py + • pandas.io.excel + +
+ +
+ + + + + + + +
+ + pandas.io.excel._xlrd +SourceModule +
+imported by: + entry.py + • pandas.io.excel._base + +
+ +
+ +
+ + pandas.io.excel._xlsxwriter +SourceModule +
+imported by: + entry.py + • pandas.io.excel + +
+ +
+ + + + + +
+ + pandas.io.formats._color_data +SourceModule
+imports: + __future__ + • pandas.io.formats + +
+
+imported by: + entry.py + • pandas.io.formats.excel + +
+ +
+ + + +
+ + pandas.io.formats.css +SourceModule
+imports: + __future__ + • collections.abc + • pandas.errors + • pandas.io.formats + • pandas.util._exceptions + • re + • typing + • warnings + +
+ + +
+ + + + + +
+ + pandas.io.formats.format +SourceModule + + +
+ + + +
+ + pandas.io.formats.info +SourceModule +
+imported by: + entry.py + • pandas.core.frame + • pandas.core.series + +
+ +
+ +
+ + pandas.io.formats.printing +SourceModule + + +
+ +
+ + pandas.io.formats.string +SourceModule +
+imported by: + entry.py + • pandas.io.formats.format + +
+ +
+ + + + + + + +
+ + pandas.io.gbq +SourceModule
+imports: + 'google.auth' + • __future__ + • pandas + • pandas.compat._optional + • pandas.io + • pandas.util._exceptions + • typing + • warnings + +
+
+imported by: + entry.py + • pandas.core.frame + • pandas.io + • pandas.io.api + +
+ +
+ + + + + + + +
+ + pandas.io.json._normalize +SourceModule
+imports: + __future__ + • collections + • collections.abc + • copy + • numpy + • pandas + • pandas._libs.writers + • pandas._typing + • pandas.io.json + • typing + +
+ + +
+ + + +
+ + pandas.io.orc +SourceModule +
+imported by: + entry.py + • pandas.core.frame + • pandas.io.api + +
+ +
+ + + + + + + + + + + + + + + +
+ + pandas.io.pickle +SourceModule +
+imported by: + entry.py + • pandas.core.generic + • pandas.io.api + +
+ +
+ + + + + + + +
+ + pandas.io.sas.sas_constants +SourceModule
+imports: + __future__ + • pandas.io.sas + • typing + +
+
+imported by: + entry.py + • pandas.io.sas.sas7bdat + +
+ +
+ +
+ + pandas.io.sas.sas_xport +SourceModule +
+imported by: + entry.py + • pandas.io.sas.sasreader + +
+ +
+ + + +
+ + pandas.io.spss +SourceModule +
+imported by: + entry.py + • pandas.io.api + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + pandas.plotting._misc +SourceModule +
+imported by: + entry.py + • pandas.plotting + +
+ +
+ +
+ + pandas.testing +SourceModule
+imports: + pandas + • pandas._testing + +
+
+imported by: + entry.py + • pandas + • pandas.tests.api.test_api + +
+ +
+ + + +
+ + pandas.tests.api +Package
+imports: + pandas.tests + +
+ + +
+ + + +
+ + pandas.tests.api.test_types +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.apply.test_frame_apply +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.apply.test_frame_apply_relabeling +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.compat.numpy + • pandas.tests.apply + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.apply.test_frame_transform +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.apply.test_invalid_arg +SourceModule
+imports: + itertools + • numpy + • pandas + • pandas._testing + • pandas.errors + • pandas.tests.apply + • pyarrow + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.apply.test_numba +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.apply + • pandas.util._test_decorators + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.apply.test_series_apply +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.apply + • pandas.tests.apply.common + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.apply.test_series_apply_relabeling +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.apply + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.apply.test_series_transform +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.apply + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.apply.test_str +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.arithmetic.conftest +SourceModule
+imports: + numpy + • pandas + • pandas.tests.arithmetic + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arithmetic.test_array_ops +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arithmetic.test_categorical +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.arithmetic + +
+
+imported by: + entry.py + +
+ +
+ + + + + + + +
+ + pandas.tests.arithmetic.test_object +SourceModule
+imports: + datetime + • decimal + • numpy + • operator + • pandas + • pandas._config + • pandas._testing + • pandas.core + • pandas.core.ops + • pandas.tests.arithmetic + • pandas.util._test_decorators + • pyarrow + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.arithmetic.test_timedelta64 +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.arrays.boolean.test_arithmetic +SourceModule
+imports: + numpy + • operator + • pandas + • pandas._testing + • pandas.tests.arrays.boolean + • pyarrow + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.boolean.test_astype +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.arrays.boolean + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.boolean.test_comparison +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.boolean.test_construction +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.boolean.test_function +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.arrays.boolean + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.boolean.test_indexing +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.arrays.boolean + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.arrays.boolean.test_ops +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.arrays.boolean + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.boolean.test_reduction +SourceModule
+imports: + numpy + • pandas + • pandas.tests.arrays.boolean + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.boolean.test_repr +SourceModule
+imports: + pandas + • pandas.tests.arrays.boolean + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.arrays.categorical.test_algos +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.arrays.categorical + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.categorical.test_analytics +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.api.types + • pandas.compat + • pandas.tests.arrays.categorical + • pytest + • re + • sys + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.categorical.test_api +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.categorical.test_astype +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.arrays.categorical + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.arrays.categorical.test_dtypes +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.categorical.test_indexing +SourceModule
+imports: + math + • numpy + • pandas + • pandas._testing + • pandas.core.common + • pandas.tests.arrays.categorical + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.categorical.test_map +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.arrays.categorical + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.categorical.test_missing +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.categorical.test_operators +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.arrays.categorical + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.categorical.test_replace +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.arrays.categorical + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.categorical.test_repr +SourceModule
+imports: + numpy + • pandas + • pandas._config + • pandas.tests.arrays.categorical + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.categorical.test_sorting +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.arrays.categorical + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.categorical.test_subclass +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.categorical.test_take +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.arrays.categorical + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.categorical.test_warnings +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.arrays.datetimes.test_cumulative +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.datetimes.test_reductions +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.arrays.floating.conftest +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.floating.test_arithmetic +SourceModule
+imports: + numpy + • operator + • pandas + • pandas._testing + • pandas.core.arrays + • pandas.tests.arrays.floating + • pyarrow + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.floating.test_astype +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.arrays.floating + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.arrays.floating.test_concat +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.arrays.floating + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.arrays.floating.test_contains +SourceModule
+imports: + numpy + • pandas + • pandas.tests.arrays.floating + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.floating.test_function +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.compat + • pandas.tests.arrays.floating + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.floating.test_repr +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.floating.test_to_numpy +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.core.arrays + • pandas.tests.arrays.floating + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.arrays.integer.conftest +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.integer.test_arithmetic +SourceModule
+imports: + numpy + • operator + • pandas + • pandas._testing + • pandas.core + • pandas.core.arrays + • pandas.core.ops + • pandas.tests.arrays.integer + • pyarrow + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.arrays.integer.test_concat +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.arrays.integer + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.arrays.integer.test_function +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.core.arrays + • pandas.tests.arrays.integer + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.integer.test_indexing +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.arrays.integer + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.integer.test_reduction +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.arrays.integer + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.integer.test_repr +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.arrays.interval.test_astype +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.arrays.interval + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.interval.test_formats +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.interval.test_interval +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.core.arrays + • pandas.tests.arrays.interval + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.arrays.interval.test_overlaps +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.core.arrays + • pandas.tests.arrays.interval + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.arrays.masked.test_arithmetic +SourceModule
+imports: + __future__ + • numpy + • pandas + • pandas._testing + • pandas.tests.arrays.masked + • pytest + • typing + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.masked.test_arrow_compat +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.masked.test_function +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.masked.test_indexing +SourceModule
+imports: + numpy + • pandas + • pandas.tests.arrays.masked + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.arrays.numpy_.test_indexing +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.numpy_.test_numpy +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.arrays.period.test_astype +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.arrays.period.test_reductions +SourceModule
+imports: + pandas + • pandas.core.arrays + • pandas.tests.arrays.period + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.arrays.sparse.test_accessor +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.core.arrays.sparse + • pandas.tests.arrays.sparse + • pytest + • string + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.sparse.test_arithmetics +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.sparse.test_array +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.sparse.test_astype +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.sparse.test_combine_concat +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.sparse.test_constructors +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.sparse.test_dtype +SourceModule
+imports: + numpy + • pandas + • pandas.tests.arrays.sparse + • pytest + • re + • warnings + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.sparse.test_indexing +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.arrays.sparse.test_reductions +SourceModule
+imports: + numpy + • pandas + • pandas.core.arrays.sparse + • pandas.tests.arrays.sparse + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.sparse.test_unary +SourceModule
+imports: + numpy + • operator + • pandas + • pandas._testing + • pandas.core.arrays + • pandas.tests.arrays.sparse + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + + + + + +
+ + pandas.tests.arrays.test_array +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.test_datetimelike +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.test_datetimes +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.test_ndarray_backed +SourceModule
+imports: + numpy + • pandas + • pandas.core.arrays + • pandas.tests.arrays + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.arrays.test_timedeltas +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.core.arrays + • pandas.tests.arrays + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.arrays.timedeltas.test_constructors +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.timedeltas.test_cumulative +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.arrays.timedeltas.test_reductions +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.base.test_constructors +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.compat + • pandas.core.accessor + • pandas.core.base + • pandas.tests.base + • pytest + • sys + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.base.test_conversion +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.base.test_fillna +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.base + • pandas.tests.base.common + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.base.test_misc +SourceModule
+imports: + numpy + • pandas + • pandas._config + • pandas._testing + • pandas.compat + • pandas.core.dtypes.common + • pandas.tests.base + • pytest + • sys + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.base.test_transpose +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.base + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.base.test_unique +SourceModule
+imports: + numpy + • pandas + • pandas._config + • pandas._testing + • pandas.tests.base + • pandas.tests.base.common + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.base.test_value_counts +SourceModule
+imports: + collections + • datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.base + • pandas.tests.base.common + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + + + + + +
+ + pandas.tests.config +Package
+imports: + pandas.tests + +
+ + +
+ +
+ + pandas.tests.config.test_config +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.config.test_localization +SourceModule
+imports: + codecs + • locale + • os + • pandas + • pandas._config.localization + • pandas.compat + • pandas.tests.config + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.construction +Package
+imports: + pandas.tests + +
+ + +
+ +
+ + pandas.tests.construction.test_extract_array +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.copy_view.index.test_datetimeindex +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.copy_view.index + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.copy_view.index.test_index +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.copy_view.index.test_periodindex +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.copy_view.index + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.copy_view.index.test_timedeltaindex +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.copy_view.index + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.copy_view.test_array +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.copy_view.test_astype +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.copy_view.test_chained_assignment_deprecation +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.compat + • pandas.errors + • pandas.tests.copy_view + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.copy_view.test_clip +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.copy_view.test_constructors +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.copy_view.test_core_functionalities +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.copy_view.test_functions +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.copy_view.test_indexing +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.copy_view.test_internals +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.copy_view.test_interp_fillna +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.copy_view.test_methods +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.copy_view.test_replace +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.copy_view.test_setitem +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.copy_view.test_util +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + + + +
+ + pandas.tests.dtypes.cast.test_can_hold_element +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.dtypes.cast.test_construct_ndarray +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.dtypes.cast.test_construct_object_arr +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.dtypes.cast.test_dict_compat +SourceModule
+imports: + numpy + • pandas + • pandas.core.dtypes.cast + • pandas.tests.dtypes.cast + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.dtypes.cast.test_downcast +SourceModule
+imports: + decimal + • numpy + • pandas + • pandas._testing + • pandas.core.dtypes.cast + • pandas.tests.dtypes.cast + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.dtypes.cast.test_infer_datetimelike +SourceModule
+imports: + numpy + • pandas + • pandas.tests.dtypes.cast + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.dtypes.cast.test_infer_dtype +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.dtypes.cast.test_maybe_box_native +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas.core.dtypes.cast + • pandas.tests.dtypes.cast + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.dtypes.test_concat +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.dtypes.test_generic +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.core.dtypes + • pandas.core.dtypes.generic + • pandas.tests.dtypes + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ + + + + + + + + + + + + +
+ + pandas.tests.extension.base +Package + + +
+ +
+ + pandas.tests.extension.base.accumulate +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.extension.base + • pytest + +
+
+imported by: + pandas.tests.extension.base + +
+ +
+ + + + + + + +
+ + pandas.tests.extension.base.dtype +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.api.types + • pandas.tests.extension.base + • pytest + +
+
+imported by: + pandas.tests.extension.base + +
+ +
+ +
+ + pandas.tests.extension.base.getitem +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.extension.base + • pytest + +
+
+imported by: + pandas.tests.extension.base + +
+ +
+ +
+ + pandas.tests.extension.base.groupby +SourceModule +
+imported by: + pandas.tests.extension.base + +
+ +
+ +
+ + pandas.tests.extension.base.index +SourceModule
+imports: + pandas + • pandas.tests.extension.base + +
+
+imported by: + pandas.tests.extension.base + +
+ +
+ + + +
+ + pandas.tests.extension.base.io +SourceModule
+imports: + io + • numpy + • pandas + • pandas._testing + • pandas.core.arrays + • pandas.tests.extension.base + • pytest + +
+
+imported by: + pandas.tests.extension.base + +
+ +
+ + + +
+ + pandas.tests.extension.base.missing +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.extension.base + • pytest + +
+
+imported by: + pandas.tests.extension.base + +
+ +
+ +
+ + pandas.tests.extension.base.ops +SourceModule +
+imported by: + pandas.tests.extension.base + +
+ +
+ +
+ + pandas.tests.extension.base.printing +SourceModule
+imports: + io + • pandas + • pandas.tests.extension.base + • pytest + +
+
+imported by: + pandas.tests.extension.base + +
+ +
+ +
+ + pandas.tests.extension.base.reduce +SourceModule
+imports: + pandas + • pandas._testing + • pandas.api.types + • pandas.tests.extension.base + • pytest + • typing + +
+
+imported by: + pandas.tests.extension.base + +
+ +
+ + + +
+ + pandas.tests.extension.base.setitem +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.extension.base + • pytest + +
+
+imported by: + pandas.tests.extension.base + +
+ +
+ +
+ + pandas.tests.extension.conftest +SourceModule
+imports: + operator + • pandas + • pandas._config.config + • pandas.tests.extension + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ + pandas.tests.extension.list.test_list +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.extension.test_categorical +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.extension.test_datetime +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.extension.test_extension +SourceModule
+imports: + numpy + • pandas.core.arrays + • pandas.tests.extension + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.extension.test_interval +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + + + +
+ + pandas.tests.extension.test_sparse +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.extension.test_string +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.frame.conftest +SourceModule
+imports: + numpy + • pandas + • pandas.tests.frame + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.frame.constructors.test_from_dict +SourceModule
+imports: + collections + • numpy + • pandas + • pandas._config + • pandas._testing + • pandas.tests.frame.constructors + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.constructors.test_from_records +SourceModule
+imports: + collections.abc + • datetime + • decimal + • numpy + • pandas + • pandas._config + • pandas._testing + • pandas.compat + • pandas.tests.frame.constructors + • pytest + • pytz + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.frame.indexing.test_coercion +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.indexing + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.indexing.test_delitem +SourceModule
+imports: + numpy + • pandas + • pandas.tests.frame.indexing + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.indexing.test_get +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.frame.indexing + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.indexing.test_get_value +SourceModule
+imports: + pandas + • pandas.tests.frame.indexing + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.indexing.test_getitem +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.core.arrays + • pandas.tests.frame.indexing + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.indexing.test_indexing +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.indexing.test_insert +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.errors + • pandas.tests.frame.indexing + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.indexing.test_mask +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.indexing + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.indexing.test_set_value +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.frame.indexing.test_take +SourceModule
+imports: + pandas._testing + • pandas.tests.frame.indexing + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.indexing.test_where +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.indexing.test_xs +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.errors + • pandas.tests.frame.indexing + • pandas.tseries.offsets + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods +Package
+imports: + pandas.tests.frame + +
+
+imported by: + entry.py + • pandas.tests.frame.methods.test_add_prefix_suffix + • pandas.tests.frame.methods.test_align + • pandas.tests.frame.methods.test_asfreq + • pandas.tests.frame.methods.test_asof + • pandas.tests.frame.methods.test_assign + • pandas.tests.frame.methods.test_astype + • pandas.tests.frame.methods.test_at_time + • pandas.tests.frame.methods.test_between_time + • pandas.tests.frame.methods.test_clip + • pandas.tests.frame.methods.test_combine + • pandas.tests.frame.methods.test_combine_first + • pandas.tests.frame.methods.test_compare + • pandas.tests.frame.methods.test_convert_dtypes + • pandas.tests.frame.methods.test_copy + • pandas.tests.frame.methods.test_count + • pandas.tests.frame.methods.test_cov_corr + • pandas.tests.frame.methods.test_describe + • pandas.tests.frame.methods.test_diff + • pandas.tests.frame.methods.test_dot + • pandas.tests.frame.methods.test_drop + • pandas.tests.frame.methods.test_drop_duplicates + • pandas.tests.frame.methods.test_droplevel + • pandas.tests.frame.methods.test_dropna + • pandas.tests.frame.methods.test_dtypes + • pandas.tests.frame.methods.test_duplicated + • pandas.tests.frame.methods.test_equals + • pandas.tests.frame.methods.test_explode + • pandas.tests.frame.methods.test_fillna + • pandas.tests.frame.methods.test_filter + • pandas.tests.frame.methods.test_first_and_last + • pandas.tests.frame.methods.test_first_valid_index + • pandas.tests.frame.methods.test_get_numeric_data + • pandas.tests.frame.methods.test_head_tail + • pandas.tests.frame.methods.test_infer_objects + • pandas.tests.frame.methods.test_info + • pandas.tests.frame.methods.test_interpolate + • pandas.tests.frame.methods.test_is_homogeneous_dtype + • pandas.tests.frame.methods.test_isetitem + • pandas.tests.frame.methods.test_isin + • pandas.tests.frame.methods.test_iterrows + • pandas.tests.frame.methods.test_join + • pandas.tests.frame.methods.test_map + • pandas.tests.frame.methods.test_matmul + • pandas.tests.frame.methods.test_nlargest + • pandas.tests.frame.methods.test_pct_change + • pandas.tests.frame.methods.test_pipe + • pandas.tests.frame.methods.test_pop + • pandas.tests.frame.methods.test_quantile + • pandas.tests.frame.methods.test_rank + • pandas.tests.frame.methods.test_reindex + • pandas.tests.frame.methods.test_reindex_like + • pandas.tests.frame.methods.test_rename + • pandas.tests.frame.methods.test_rename_axis + • pandas.tests.frame.methods.test_reorder_levels + • pandas.tests.frame.methods.test_replace + • pandas.tests.frame.methods.test_reset_index + • pandas.tests.frame.methods.test_round + • pandas.tests.frame.methods.test_sample + • pandas.tests.frame.methods.test_select_dtypes + • pandas.tests.frame.methods.test_set_axis + • pandas.tests.frame.methods.test_set_index + • pandas.tests.frame.methods.test_shift + • pandas.tests.frame.methods.test_size + • pandas.tests.frame.methods.test_sort_index + • pandas.tests.frame.methods.test_sort_values + • pandas.tests.frame.methods.test_swapaxes + • pandas.tests.frame.methods.test_swaplevel + • pandas.tests.frame.methods.test_to_csv + • pandas.tests.frame.methods.test_to_dict + • pandas.tests.frame.methods.test_to_dict_of_blocks + • pandas.tests.frame.methods.test_to_numpy + • pandas.tests.frame.methods.test_to_period + • pandas.tests.frame.methods.test_to_records + • pandas.tests.frame.methods.test_to_timestamp + • pandas.tests.frame.methods.test_transpose + • pandas.tests.frame.methods.test_truncate + • pandas.tests.frame.methods.test_tz_convert + • pandas.tests.frame.methods.test_tz_localize + • pandas.tests.frame.methods.test_update + • pandas.tests.frame.methods.test_value_counts + • pandas.tests.frame.methods.test_values + +
+ +
+ +
+ + pandas.tests.frame.methods.test_add_prefix_suffix +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_align +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_asfreq +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_asof +SourceModule
+imports: + numpy + • pandas + • pandas._libs.tslibs + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_assign +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_astype +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pandas.util._test_decorators + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_at_time +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.frame.methods.test_clip +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_combine +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_combine_first +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_compare +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.compat.numpy + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_convert_dtypes +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_copy +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_count +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.frame.methods + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_cov_corr +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_describe +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_diff +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_dot +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_drop +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.errors + • pandas.tests.frame.methods + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_drop_duplicates +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_droplevel +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_dropna +SourceModule
+imports: + datetime + • dateutil + • numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_dtypes +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_duplicated +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + • re + • sys + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_equals +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_explode +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.frame.methods.test_filter +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_first_and_last +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_first_valid_index +SourceModule
+imports: + numpy + • pandas + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_get_numeric_data +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_head_tail +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_infer_objects +SourceModule
+imports: + datetime + • pandas + • pandas._testing + • pandas.tests.frame.methods + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_info +SourceModule
+imports: + io + • numpy + • pandas + • pandas._testing + • pandas.compat + • pandas.tests.frame.methods + • pytest + • re + • string + • sys + • textwrap + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_interpolate +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_is_homogeneous_dtype +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_isetitem +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_isin +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_iterrows +SourceModule
+imports: + pandas + • pandas.tests.frame.methods + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_join +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_map +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pandas.tseries.offsets + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_matmul +SourceModule
+imports: + numpy + • operator + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_nlargest +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pandas.util.version + • pytest + • string + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_pct_change +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_pipe +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_pop +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_quantile +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_rank +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._libs.algos + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.frame.methods.test_reindex_like +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_rename +SourceModule
+imports: + collections + • inspect + • numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_rename_axis +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_reorder_levels +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_replace +SourceModule
+imports: + __future__ + • datetime + • numpy + • pandas + • pandas._config + • pandas._testing + • pandas.tests.frame.methods + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_reset_index +SourceModule
+imports: + datetime + • itertools + • numpy + • pandas + • pandas._testing + • pandas.core.dtypes.common + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_round +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_sample +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.core.common + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_select_dtypes +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_set_axis +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_set_index +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_shift +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_size +SourceModule
+imports: + numpy + • pandas + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_sort_index +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_sort_values +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pandas.util.version + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_swapaxes +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_swaplevel +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_to_csv +SourceModule
+imports: + csv + • io + • numpy + • os + • pandas + • pandas._testing + • pandas.core.common + • pandas.errors + • pandas.io.common + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_to_dict +SourceModule
+imports: + collections + • datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + • pytz + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.frame.methods.test_to_numpy +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_to_period +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_to_records +SourceModule
+imports: + collections + • collections.abc + • email + • email.parser + • numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_to_timestamp +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_transpose +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_truncate +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_tz_convert +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_tz_localize +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_update +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_value_counts +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.methods.test_values +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.test_alter_axes +SourceModule
+imports: + datetime + • pandas + • pandas._testing + • pandas.tests.frame + • pytz + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.test_api +SourceModule
+imports: + 'IPython.core' + • copy + • inspect + • numpy + • pandas + • pandas._config + • pandas._config.config + • pandas._testing + • pandas.tests.frame + • pydoc + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.frame.test_arrow_interface +SourceModule
+imports: + ctypes + • pandas + • pandas.tests.frame + • pandas.util._test_decorators + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.test_block_internals +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.frame.test_cumulative +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.test_iteration +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.compat + • pandas.tests.frame + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.test_logical_ops +SourceModule
+imports: + numpy + • operator + • pandas + • pandas._testing + • pandas.tests.frame + • pyarrow + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.test_nonunique_indexes +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.test_npfuncs +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.test_query_eval +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.test_reductions +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.test_repr +SourceModule
+imports: + datetime + • io + • numpy + • pandas + • pandas._config + • pandas._testing + • pandas.tests.frame + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.test_stack_unstack +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.test_subclass +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.frame + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.test_ufunc +SourceModule
+imports: + functools + • numpy + • pandas + • pandas._testing + • pandas.api.types + • pandas.tests.frame + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.test_unary +SourceModule
+imports: + decimal + • numpy + • pandas + • pandas._testing + • pandas.compat.numpy + • pandas.tests.frame + • pyarrow + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.frame.test_validate +SourceModule
+imports: + pandas.core.frame + • pandas.tests.frame + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.generic.test_duplicate_labels +SourceModule
+imports: + numpy + • operator + • pandas + • pandas._testing + • pandas.tests.generic + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.generic.test_finalize +SourceModule
+imports: + numpy + • operator + • pandas + • pandas._testing + • pandas.tests.generic + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.generic.test_frame +SourceModule
+imports: + copy + • numpy + • operator + • pandas + • pandas._testing + • pandas.tests.generic + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.generic.test_generic +SourceModule
+imports: + copy + • numpy + • pandas + • pandas._testing + • pandas.core.dtypes.common + • pandas.tests.generic + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.generic.test_label_or_level_utils +SourceModule
+imports: + pandas + • pandas.core.dtypes.missing + • pandas.tests.generic + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.generic.test_series +SourceModule
+imports: + numpy + • operator + • pandas + • pandas._testing + • pandas.tests.generic + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.generic.test_to_xarray +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.generic + • pytest + • xarray + +
+
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.groupby.aggregate.test_aggregate +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.aggregate.test_cython +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.aggregate.test_numba +SourceModule
+imports: + numba + • numpy + • pandas + • pandas._testing + • pandas.errors + • pandas.tests.groupby.aggregate + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.groupby.conftest +SourceModule
+imports: + numpy + • pandas + • pandas.core.groupby.base + • pandas.tests.groupby + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.groupby.methods.test_corrwith +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.groupby.methods + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.methods.test_describe +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.groupby.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.methods.test_groupby_shift_diff +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.groupby.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.methods.test_is_monotonic +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.groupby.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.methods.test_nlargest_nsmallest +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.groupby.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.methods.test_nth +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.groupby.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.methods.test_quantile +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.groupby.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.methods.test_rank +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.groupby.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.methods.test_sample +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.groupby.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.groupby.methods.test_skew +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.groupby.methods + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.groupby.test_all_methods +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.groupby + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.test_api +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.test_apply +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.groupby + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.test_apply_mutate +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.groupby + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.test_bin_groupby +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.test_categorical +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.api.typing + • pandas.tests.groupby + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.test_counting +SourceModule
+imports: + itertools + • numpy + • pandas + • pandas._testing + • pandas.tests.groupby + • pytest + • string + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.test_cumulative +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.test_filters +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.groupby + • pytest + • string + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.test_groupby +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.test_groupby_dropna +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.test_groupby_subclass +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.groupby + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.test_grouping +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.core.groupby.grouper + • pandas.tests.groupby + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.test_index_as_string +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.groupby + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.test_indexing +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.groupby + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.test_libgroupby +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.test_missing +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.groupby + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.test_numba +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.groupby + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.test_numeric_only +SourceModule
+imports: + numpy + • pandas + • pandas._libs + • pandas._libs.lib + • pandas._testing + • pandas.tests.groupby + • pyarrow + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.test_pipe +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.groupby + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.groupby.test_raises +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.groupby + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.groupby.test_timegrouper +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.groupby.transform.test_numba +SourceModule
+imports: + numba + • numpy + • pandas + • pandas._testing + • pandas.errors + • pandas.tests.groupby.transform + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + + + + + +
+ + pandas.tests.indexes.base_class.test_constructors +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.base_class + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.base_class.test_formats +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.base_class.test_indexing +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.base_class.test_pickle +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.base_class.test_reshape +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.base_class + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.base_class.test_setops +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.base_class.test_where +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.base_class + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.indexes.categorical.test_append +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.categorical.test_astype +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.indexes.categorical + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.indexes.categorical.test_constructors +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.categorical + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.categorical.test_equals +SourceModule
+imports: + numpy + • pandas + • pandas.tests.indexes.categorical + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.categorical.test_fillna +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.categorical + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.categorical.test_formats +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.categorical.test_indexing +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.errors + • pandas.tests.indexes.categorical + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.categorical.test_map +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.categorical + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.categorical.test_reindex +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.categorical + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.categorical.test_setops +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.categorical + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.conftest +SourceModule
+imports: + numpy + • pandas + • pandas.tests.indexes + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.indexes.datetimelike_.test_drop_duplicates +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.datetimelike_ + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.datetimelike_.test_equals +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.indexes.datetimelike_ + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.datetimelike_.test_indexing +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.datetimelike_ + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.datetimelike_.test_is_monotonic +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.datetimelike_.test_nat +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.datetimelike_ + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.datetimelike_.test_sort_values +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.datetimelike_ + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.datetimelike_.test_value_counts +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.indexes.datetimes.methods.test_asof +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.datetimes.methods.test_astype +SourceModule
+imports: + datetime + • dateutil + • numpy + • pandas + • pandas._testing + • pandas.tests.indexes.datetimes.methods + • pytest + • pytz + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.datetimes.methods.test_delete +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.datetimes.methods.test_factorize +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.datetimes.methods.test_fillna +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.datetimes.methods.test_insert +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.indexes.datetimes.methods + • pytest + • pytz + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.indexes.datetimes.methods.test_map +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.indexes.datetimes.methods.test_repeat +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.datetimes.methods.test_resolution +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.indexes.datetimes.methods.test_shift +SourceModule
+imports: + datetime + • pandas + • pandas._testing + • pandas.errors + • pandas.tests.indexes.datetimes.methods + • pytest + • pytz + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.datetimes.methods.test_snap +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + + + + + +
+ + pandas.tests.indexes.datetimes.methods.test_to_series +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.indexes.datetimes.methods.test_tz_localize +SourceModule
+imports: + datetime + • dateutil.tz + • numpy + • pandas + • pandas._testing + • pandas.tests.indexes.datetimes.methods + • pytest + • pytz + • zoneinfo + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.datetimes.methods.test_unique +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.datetimes.test_arithmetic +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.indexes.datetimes + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.indexes.datetimes.test_datetime +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.compat.numpy + • pandas.tests.indexes.datetimes + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.datetimes.test_formats +SourceModule
+imports: + datetime + • dateutil.tz + • numpy + • pandas + • pandas._testing + • pandas.tests.indexes.datetimes + • pytest + • pytz + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.datetimes.test_freq_attr +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.indexes.datetimes.test_iter +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.datetimes.test_join +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.datetimes.test_npfuncs +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.datetimes + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.datetimes.test_ops +SourceModule
+imports: + datetime + • pandas + • pandas._testing + • pandas.tests.indexes.datetimes + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.datetimes.test_partial_slicing +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.indexes.datetimes + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.datetimes.test_pickle +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.indexes.datetimes + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.datetimes.test_reindex +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.indexes.datetimes + +
+
+imported by: + entry.py + +
+ +
+ + + + + + + + + +
+ + pandas.tests.indexes.interval.test_astype +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.core.dtypes.dtypes + • pandas.tests.indexes.interval + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.indexes.interval.test_equals +SourceModule
+imports: + numpy + • pandas + • pandas.tests.indexes.interval + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.interval.test_formats +SourceModule
+imports: + numpy + • pandas + • pandas._config + • pandas._testing + • pandas.tests.indexes.interval + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.interval.test_indexing +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.errors + • pandas.tests.indexes.interval + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.interval.test_interval +SourceModule
+imports: + itertools + • numpy + • pandas + • pandas._testing + • pandas.core.common + • pandas.tests.indexes.interval + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.indexes.interval.test_interval_tree +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.interval.test_join +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.indexes.interval + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.interval.test_pickle +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.indexes.interval + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.interval.test_setops +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.interval + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.indexes.multi.conftest +SourceModule
+imports: + numpy + • pandas + • pandas.tests.indexes.multi + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_analytics +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.multi + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_astype +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_compat +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.multi + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_constructors +SourceModule
+imports: + datetime + • itertools + • numpy + • pandas + • pandas._testing + • pandas.core.dtypes.cast + • pandas.tests.indexes.multi + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_conversion +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.multi + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_copy +SourceModule
+imports: + copy + • pandas + • pandas._testing + • pandas.tests.indexes.multi + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_drop +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.errors + • pandas.tests.indexes.multi + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_duplicates +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_equivalence +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_formats +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.multi + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_get_level_values +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.multi + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_get_set +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_indexing +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._libs + • pandas._libs.index + • pandas._testing + • pandas.errors + • pandas.tests.indexes.multi + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_integrity +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_isin +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.multi + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_join +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.multi + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_lexsort +SourceModule
+imports: + pandas + • pandas.tests.indexes.multi + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_missing +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.multi + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_monotonic +SourceModule
+imports: + numpy + • pandas + • pandas.tests.indexes.multi + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_names +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.indexes.multi + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_partial_indexing +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.multi + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_pickle +SourceModule
+imports: + pandas + • pandas.tests.indexes.multi + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_reindex +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.multi + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_reshape +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.indexes.multi + • pytest + • pytz + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_setops +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.api.types + • pandas.tests.indexes.multi + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_sorting +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.multi.test_take +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.multi + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.indexes.numeric.test_astype +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.numeric + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.numeric.test_indexing +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.numeric.test_join +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.numeric.test_numeric +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.numeric + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.numeric.test_setops +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.indexes.object.test_astype +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.indexes.object + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.object.test_indexing +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.indexes.period.methods.test_asfreq +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.period.methods.test_astype +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.period.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.period.methods.test_factorize +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.period.methods.test_fillna +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.period.methods.test_insert +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.period.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.period.methods.test_is_full +SourceModule
+imports: + pandas + • pandas.tests.indexes.period.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.period.methods.test_repeat +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.period.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.period.methods.test_shift +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.period.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.period.methods.test_to_timestamp +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.indexes.period.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.indexes.period.test_formats +SourceModule
+imports: + contextlib + • datetime + • locale + • numpy + • pandas + • pandas._testing + • pandas.tests.indexes.period + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.period.test_freq_attr +SourceModule
+imports: + pandas + • pandas._testing + • pandas.compat + • pandas.tests.indexes.period + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.period.test_indexing +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.period.test_join +SourceModule
+imports: + numpy + • pandas + • pandas._libs.tslibs + • pandas._testing + • pandas.tests.indexes.period + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.period.test_monotonic +SourceModule
+imports: + pandas + • pandas.tests.indexes.period + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.period.test_partial_slicing +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.period + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.period.test_period +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.period + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.period.test_period_range +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.period + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.period.test_pickle +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.period.test_resolution +SourceModule
+imports: + pandas + • pandas.tests.indexes.period + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.period.test_scalar_compat +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.indexes.period + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.period.test_searchsorted +SourceModule
+imports: + numpy + • pandas + • pandas._libs.tslibs + • pandas._testing + • pandas.tests.indexes.period + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.period.test_setops +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.period + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.period.test_tools +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.period + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.indexes.ranges.test_constructors +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.indexes.ranges + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.ranges.test_indexing +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.ranges + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.ranges.test_join +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.ranges + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.ranges.test_range +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.ranges.test_setops +SourceModule
+imports: + datetime + • hypothesis + • numpy + • pandas + • pandas._testing + • pandas.tests.indexes.ranges + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.test_any_index +SourceModule
+imports: + numpy + • pandas._testing + • pandas.errors + • pandas.tests.indexes + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.test_base +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.test_common +SourceModule
+imports: + copy + • numpy + • pandas + • pandas._testing + • pandas.compat + • pandas.compat.numpy + • pandas.core.dtypes.common + • pandas.tests.indexes + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.test_datetimelike +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.test_engines +SourceModule
+imports: + numpy + • pandas + • pandas._libs + • pandas._libs.index + • pandas.tests.indexes + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.test_frozen +SourceModule
+imports: + pandas.core.indexes.frozen + • pandas.tests.indexes + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.test_index_new +SourceModule
+imports: + datetime + • decimal + • numpy + • pandas + • pandas._libs.tslibs.timezones + • pandas._testing + • pandas.tests.indexes + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.test_indexing +SourceModule
+imports: + enum + • numpy + • pandas + • pandas._testing + • pandas.core.dtypes.common + • pandas.errors + • pandas.tests.indexes + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.test_numpy_compat +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.indexes.test_setops +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.test_subclass +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes + +
+
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.indexes.timedeltas.methods.test_astype +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.indexes.timedeltas.methods.test_insert +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.timedeltas.methods.test_repeat +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.indexes.timedeltas.test_arithmetic +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.timedeltas + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.timedeltas.test_constructors +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.timedeltas.test_delete +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.timedeltas.test_formats +SourceModule
+imports: + pandas + • pandas.tests.indexes.timedeltas + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.timedeltas.test_freq_attr +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.timedeltas.test_indexing +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.indexes.timedeltas + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.timedeltas.test_join +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.timedeltas + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.timedeltas.test_ops +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.timedeltas.test_pickle +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.indexes.timedeltas.test_searchsorted +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.timedeltas + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.timedeltas.test_setops +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.timedeltas.test_timedelta +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexes.timedeltas + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexes.timedeltas.test_timedelta_range +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.indexing.conftest +SourceModule
+imports: + numpy + • pandas + • pandas.tests.indexing + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.indexing.interval.test_interval +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexing.interval.test_interval_new +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexing.interval + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.indexing.multiindex.test_datetime +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.indexing.multiindex + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexing.multiindex.test_getitem +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexing.multiindex.test_iloc +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexing.multiindex + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexing.multiindex.test_indexing_slow +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexing.multiindex + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexing.multiindex.test_loc +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.errors + • pandas.tests.indexing.multiindex + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.indexing.multiindex.test_partial +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.indexing.multiindex.test_slice +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexing.multiindex.test_sorted +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexing.multiindex + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexing.test_at +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.errors + • pandas.tests.indexing + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexing.test_categorical +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexing + • pandas.util._test_decorators + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexing.test_chaining_and_caching +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.errors + • pandas.tests.indexing + • pandas.util._test_decorators + • pytest + • string + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexing.test_check_indexer +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.api.indexers + • pandas.tests.indexing + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexing.test_coercion +SourceModule
+imports: + __future__ + • datetime + • itertools + • numpy + • pandas + • pandas._config + • pandas._testing + • pandas.compat + • pandas.compat.numpy + • pandas.tests.indexing + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexing.test_datetime +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.indexing + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexing.test_floats +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexing + • pytest + +
+
+imported by: + entry.py + • pandas.tests.indexing.test_indexing + +
+ +
+ +
+ + pandas.tests.indexing.test_iat +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexing + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexing.test_iloc +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexing.test_indexers +SourceModule
+imports: + numpy + • pandas.core.indexers + • pandas.tests.indexing + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexing.test_indexing +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.indexing.test_na_indexing +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.indexing + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexing.test_partial +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.indexing + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.indexing.test_scalar +SourceModule
+imports: + datetime + • itertools + • numpy + • pandas + • pandas._testing + • pandas.tests.indexing + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.interchange.test_spec_conformance +SourceModule
+imports: + ctypes + • math + • pandas + • pandas.tests.interchange + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.interchange.test_utils +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.internals.test_api +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.internals.test_managers +SourceModule
+imports: + os + • pandas + • pandas._testing + • pandas.core.dtypes.missing + • pandas.core.internals + • pandas.tests.internals + • pytest + • subprocess + • sys + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.io.conftest +SourceModule
+imports: + boto3 + • pandas.compat + • pandas.io.common + • pandas.io.parsers + • pandas.tests.io + • pandas.util._test_decorators + • pytest + • shlex + • subprocess + • time + • uuid + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.io.excel.test_odf +SourceModule
+imports: + functools + • numpy + • pandas + • pandas._testing + • pandas.compat + • pandas.tests.io.excel + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.excel.test_odswriter +SourceModule
+imports: + 'odf.namespaces' + • 'odf.table' + • datetime + • pandas + • pandas._testing + • pandas.compat + • pandas.io.excel + • pandas.tests.io.excel + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.excel.test_openpyxl +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.excel.test_readers +SourceModule
+imports: + __future__ + • datetime + • functools + • io + • numpy + • os + • pandas + • pandas._config + • pandas._testing + • pandas.arrays + • pandas.compat + • pandas.core.arrays + • pandas.tests.io.excel + • pandas.util._test_decorators + • pathlib + • platform + • py + • pyarrow + • pytest + • python_calamine + • re + • s3fs + • urllib.error + • xlrd + • zipfile + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.excel.test_style +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.excel.test_writers +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.excel.test_xlrd +SourceModule
+imports: + io + • numpy + • pandas + • pandas._testing + • pandas.compat + • pandas.io.excel + • pandas.io.excel._base + • pandas.tests.io.excel + • pytest + • xlrd.biffh + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.excel.test_xlsxwriter +SourceModule
+imports: + contextlib + • pandas + • pandas._testing + • pandas.compat + • pandas.io.excel + • pandas.tests.io.excel + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.io.formats.style.test_bar +SourceModule
+imports: + io + • numpy + • pandas + • pandas.tests.io.formats.style + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.formats.style.test_exceptions +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.io.formats.style.test_highlight +SourceModule
+imports: + numpy + • pandas + • pandas.io.formats.style + • pandas.tests.io.formats.style + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.formats.style.test_html +SourceModule
+imports: + numpy + • pandas + • pandas.io.formats.style + • pandas.tests.io.formats.style + • pytest + • textwrap + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.formats.style.test_matplotlib +SourceModule
+imports: + gc + • matplotlib + • numpy + • pandas + • pandas.io.formats.style + • pandas.tests.io.formats.style + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.formats.style.test_non_unique +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.formats.style.test_style +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.io.formats.style.test_to_string +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.formats.style.test_tooltip +SourceModule
+imports: + numpy + • pandas + • pandas.io.formats.style + • pandas.tests.io.formats.style + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.formats.test_console +SourceModule
+imports: + locale + • pandas._config + • pandas.tests.io.formats + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.formats.test_css +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.formats.test_eng_formatting +SourceModule
+imports: + numpy + • pandas + • pandas.io.formats.format + • pandas.tests.io.formats + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.formats.test_format +SourceModule
+imports: + datetime + • io + • numpy + • pandas + • pandas._config + • pandas.io.formats + • pandas.io.formats.format + • pandas.io.formats.printing + • pandas.tests.io.formats + • pathlib + • pytest + • re + • shutil + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.formats.test_ipython_compat +SourceModule
+imports: + numpy + • pandas + • pandas._config.config + • pandas.tests.io.formats + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.io.formats.test_to_csv +SourceModule
+imports: + _csv + • io + • numpy + • os + • pandas + • pandas._testing + • pandas.compat + • pandas.tests.io.formats + • pytest + • sys + • zipfile + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.formats.test_to_excel +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.formats.test_to_html +SourceModule
+imports: + datetime + • io + • itertools + • numpy + • pandas + • pandas._testing + • pandas.io.formats.format + • pandas.tests.io.formats + • pytest + • re + • textwrap + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.formats.test_to_latex +SourceModule
+imports: + codecs + • datetime + • pandas + • pandas._testing + • pandas.tests.io.formats + • pytest + • textwrap + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.formats.test_to_markdown +SourceModule
+imports: + io + • pandas + • pandas._testing + • pandas.tests.io.formats + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.formats.test_to_string +SourceModule
+imports: + datetime + • io + • numpy + • pandas + • pandas._config + • pandas._testing + • pandas.tests.io.formats + • pytest + • re + • sys + • textwrap + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.generate_legacy_storage_files +SourceModule
+imports: + datetime + • numpy + • os + • pandas + • pandas.arrays + • pandas.tests.io + • pandas.tseries.offsets + • pickle + • platform + • sys + +
+
+imported by: + entry.py + • pandas.tests.io.test_pickle + +
+ +
+ + + +
+ + pandas.tests.io.json.conftest +SourceModule
+imports: + pandas.tests.io.json + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.json.test_compression +SourceModule
+imports: + io + • pandas + • pandas._testing + • pandas.tests.io.json + • pandas.util._test_decorators + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.json.test_deprecated_kwargs +SourceModule
+imports: + io + • pandas + • pandas._testing + • pandas.io.json + • pandas.tests.io.json + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.json.test_json_table_schema +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.io.json.test_normalize +SourceModule
+imports: + json + • numpy + • pandas + • pandas._testing + • pandas.io.json._normalize + • pandas.tests.io.json + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.json.test_pandas +SourceModule
+imports: + datetime + • decimal + • io + • json + • numpy + • os + • pandas + • pandas._config + • pandas._testing + • pandas.arrays + • pandas.compat + • pandas.core.arrays + • pandas.core.arrays.string_arrow + • pandas.io.json + • pandas.tests.io.json + • pandas.util._test_decorators + • pytest + • sys + • time + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.json.test_readlines +SourceModule
+imports: + collections.abc + • io + • numpy + • pandas + • pandas._testing + • pandas.io.json._json + • pandas.tests.io.json + • pathlib + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.json.test_ujson +SourceModule
+imports: + calendar + • datetime + • dateutil + • decimal + • json + • locale + • math + • numpy + • pandas + • pandas._libs.json + • pandas._testing + • pandas.compat + • pandas.tests.io.json + • pytest + • pytz + • re + • time + +
+
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.io.parser.common.test_chunksize +SourceModule
+imports: + io + • numpy + • pandas + • pandas._libs + • pandas._libs.parsers + • pandas._testing + • pandas.errors + • pandas.tests.io.parser.common + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.common.test_common_basic +SourceModule
+imports: + datetime + • inspect + • io + • numpy + • os + • pandas + • pandas._testing + • pandas.compat + • pandas.errors + • pandas.io.parsers + • pandas.io.parsers.c_parser_wrapper + • pandas.tests.io.parser.common + • pathlib + • pytest + • sys + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.common.test_data_list +SourceModule
+imports: + csv + • io + • pandas + • pandas._testing + • pandas.io.parsers + • pandas.tests.io.parser.common + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.common.test_decimal +SourceModule
+imports: + io + • pandas + • pandas._testing + • pandas.tests.io.parser.common + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.common.test_file_buffer_url +SourceModule
+imports: + io + • numpy + • os + • pandas + • pandas._testing + • pandas.errors + • pandas.tests.io.parser.common + • pandas.util._test_decorators + • platform + • pytest + • urllib.error + • uuid + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.common.test_float +SourceModule
+imports: + io + • numpy + • pandas + • pandas._testing + • pandas.compat + • pandas.tests.io.parser.common + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.common.test_index +SourceModule
+imports: + datetime + • io + • os + • pandas + • pandas._testing + • pandas.tests.io.parser.common + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.common.test_inf +SourceModule
+imports: + io + • numpy + • pandas + • pandas._testing + • pandas.tests.io.parser.common + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.common.test_ints +SourceModule
+imports: + io + • numpy + • pandas + • pandas._testing + • pandas.tests.io.parser.common + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.common.test_iterator +SourceModule
+imports: + io + • pandas + • pandas._testing + • pandas.tests.io.parser.common + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.common.test_read_errors +SourceModule
+imports: + codecs + • csv + • io + • numpy + • os + • pandas + • pandas._testing + • pandas.compat + • pandas.errors + • pandas.tests.io.parser.common + • pathlib + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.common.test_verbose +SourceModule
+imports: + io + • pandas._testing + • pandas.tests.io.parser.common + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.conftest +SourceModule
+imports: + __future__ + • os + • pandas + • pandas._testing + • pandas.compat._optional + • pandas.tests.io.parser + • pyarrow + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.io.parser.dtypes.test_categorical +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.dtypes.test_dtypes_basic +SourceModule
+imports: + collections + • io + • numpy + • pandas + • pandas._testing + • pandas.core.arrays + • pandas.errors + • pandas.tests.io.parser.dtypes + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.dtypes.test_empty +SourceModule
+imports: + io + • numpy + • pandas + • pandas._testing + • pandas.tests.io.parser.dtypes + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.test_c_parser_only +SourceModule
+imports: + decimal + • io + • mmap + • numpy + • os + • pandas + • pandas._testing + • pandas.compat.numpy + • pandas.errors + • pandas.tests.io.parser + • pandas.util._test_decorators + • pytest + • tarfile + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.test_comment +SourceModule
+imports: + io + • numpy + • pandas + • pandas._testing + • pandas.tests.io.parser + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.test_compression +SourceModule
+imports: + os + • pandas + • pandas._testing + • pandas.tests.io.parser + • pathlib + • pytest + • tarfile + • zipfile + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.io.parser.test_converters +SourceModule
+imports: + dateutil.parser + • io + • numpy + • pandas + • pandas._testing + • pandas.tests.io.parser + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.test_dialect +SourceModule
+imports: + csv + • io + • pandas + • pandas._testing + • pandas.errors + • pandas.io.parsers.base_parser + • pandas.tests.io.parser + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.test_encoding +SourceModule
+imports: + io + • numpy + • os + • pandas + • pandas._testing + • pandas.tests.io.parser + • pytest + • tempfile + • uuid + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.test_header +SourceModule
+imports: + collections + • io + • numpy + • pandas + • pandas._testing + • pandas.errors + • pandas.tests.io.parser + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.test_index_col +SourceModule
+imports: + io + • numpy + • pandas + • pandas._testing + • pandas.tests.io.parser + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.test_mangle_dupes +SourceModule
+imports: + io + • pandas + • pandas._testing + • pandas.tests.io.parser + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.test_multi_thread +SourceModule
+imports: + contextlib + • io + • multiprocessing.pool + • numpy + • pandas + • pandas._testing + • pandas.tests.io.parser + • pandas.util.version + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.test_na_values +SourceModule
+imports: + io + • numpy + • pandas + • pandas._libs.parsers + • pandas._testing + • pandas.tests.io.parser + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.test_network +SourceModule
+imports: + botocore + • io + • logging + • numpy + • pandas + • pandas._testing + • pandas.io.feather_format + • pandas.io.parsers + • pandas.tests.io.parser + • pandas.util._test_decorators + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.io.parser.test_python_parser_only +SourceModule
+imports: + __future__ + • collections.abc + • csv + • io + • numpy + • pandas + • pandas._testing + • pandas.errors + • pandas.tests.io.parser + • pytest + • typing + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.test_quoting +SourceModule
+imports: + csv + • io + • pandas + • pandas._testing + • pandas.compat + • pandas.errors + • pandas.tests.io.parser + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.test_read_fwf +SourceModule
+imports: + datetime + • io + • numpy + • pandas + • pandas._testing + • pandas.arrays + • pandas.core.arrays + • pandas.errors + • pandas.io.common + • pandas.io.parsers + • pandas.tests.io.parser + • pathlib + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.test_skiprows +SourceModule
+imports: + datetime + • io + • numpy + • pandas + • pandas._testing + • pandas.errors + • pandas.tests.io.parser + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.test_textreader +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.test_unsupported +SourceModule
+imports: + io + • os + • pandas._testing + • pandas.errors + • pandas.io.parsers + • pandas.io.parsers.readers + • pandas.tests.io.parser + • pathlib + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.test_upcast +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.io.parser.usecols.test_parse_dates +SourceModule
+imports: + io + • pandas + • pandas._testing + • pandas.tests.io.parser.usecols + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.usecols.test_strings +SourceModule
+imports: + io + • pandas + • pandas._testing + • pandas.tests.io.parser.usecols + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.parser.usecols.test_usecols_basic +SourceModule
+imports: + io + • numpy + • pandas + • pandas._testing + • pandas.errors + • pandas.tests.io.parser.usecols + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.io.pytables.conftest +SourceModule
+imports: + pandas.tests.io.pytables + • pytest + • uuid + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.pytables.test_append +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.pytables.test_categorical +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.pytables.test_compat +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.io.pytables + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.pytables.test_complex +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.pytables.test_errors +SourceModule
+imports: + datetime + • io + • numpy + • pandas + • pandas._testing + • pandas.io.pytables + • pandas.tests.io.pytables + • pandas.tests.io.pytables.common + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.pytables.test_file_handling +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.pytables.test_keys +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.pytables.test_put +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.pytables.test_pytables_missing +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + + + +
+ + pandas.tests.io.pytables.test_select +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.pytables.test_store +SourceModule
+imports: + contextlib + • datetime + • hashlib + • numpy + • pandas + • pandas._testing + • pandas.io.pytables + • pandas.tests.io.pytables + • pandas.tests.io.pytables.common + • pytest + • tempfile + • time + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.pytables.test_subclass +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.io.pytables + • pandas.tests.io.pytables + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.pytables.test_time_series +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.io.sas.test_byteswap +SourceModule
+imports: + hypothesis + • numpy + • pandas._libs.byteswap + • pandas._testing + • pandas.tests.io.sas + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.sas.test_sas +SourceModule
+imports: + io + • pandas + • pandas._testing + • pandas.tests.io.sas + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.sas.test_sas7bdat +SourceModule
+imports: + 'py.path' + • contextlib + • datetime + • io + • numpy + • os + • pandas + • pandas._testing + • pandas.compat + • pandas.errors + • pandas.io.sas.sas7bdat + • pandas.tests.io.sas + • pandas.util._test_decorators + • pathlib + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.sas.test_xport +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.io.sas.sasreader + • pandas.tests.io.sas + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.test_clipboard +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.arrays + • pandas.core.arrays + • pandas.errors + • pandas.io.clipboard + • pandas.tests.io + • pytest + • textwrap + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.test_common +SourceModule
+imports: + 'py.path' + • codecs + • errno + • functools + • io + • mmap + • numpy + • os + • pandas + • pandas._testing + • pandas.compat + • pandas.io.common + • pandas.tests.io + • pandas.util._test_decorators + • pathlib + • pickle + • pytest + • tempfile + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.test_compression +SourceModule
+imports: + gzip + • io + • numpy + • os + • pandas + • pandas._testing + • pandas.compat + • pandas.io.common + • pandas.tests.io + • pathlib + • pytest + • subprocess + • sys + • tarfile + • textwrap + • time + • zipfile + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.test_feather +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.test_fsspec +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.test_gbq +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.io + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.test_gcs +SourceModule
+imports: + fsspec + • io + • numpy + • os + • pandas + • pandas._testing + • pandas.compat.pyarrow + • pandas.tests.io + • pandas.util + • pandas.util._test_decorators + • pathlib + • pytest + • tarfile + • zipfile + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.test_html +SourceModule
+imports: + collections.abc + • functools + • io + • numpy + • os + • pandas + • pandas._testing + • pandas.arrays + • pandas.compat + • pandas.core.arrays + • pandas.io.common + • pandas.io.html + • pandas.tests.io + • pandas.util._test_decorators + • pathlib + • pyarrow + • pytest + • re + • threading + • urllib.error + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.test_http_headers +SourceModule
+imports: + fsspec + • functools + • gzip + • io + • pandas + • pandas._testing + • pandas.tests.io + • pandas.util._test_decorators + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.test_orc +SourceModule
+imports: + datetime + • decimal + • io + • numpy + • os + • pandas + • pandas._testing + • pandas.core.arrays + • pandas.tests.io + • pathlib + • pyarrow + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.test_parquet +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.test_pickle +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.test_s3 +SourceModule
+imports: + 'botocore.response' + • io + • pandas + • pandas.tests.io + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.test_spss +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.arrays + • pandas.tests.io + • pandas.util.version + • pathlib + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.io.test_stata +SourceModule
+imports: + bz2 + • datetime + • gzip + • io + • numpy + • os + • pandas + • pandas._testing + • pandas.core.frame + • pandas.io.parsers + • pandas.io.stata + • pandas.tests.io + • pandas.util._test_decorators + • pytest + • struct + • tarfile + • zipfile + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.io.xml.conftest +SourceModule
+imports: + pandas.tests.io.xml + • pathlib + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.io.xml.test_to_xml +SourceModule
+imports: + __future__ + • io + • numpy + • os + • pandas + • pandas._testing + • pandas.io.common + • pandas.io.xml + • pandas.tests.io.xml + • pandas.util._test_decorators + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.io.xml.test_xml_dtypes +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.libs.test_hashtable +SourceModule
+imports: + collections.abc + • contextlib + • numpy + • pandas + • pandas._libs + • pandas._libs.hashtable + • pandas._testing + • pandas.core.algorithms + • pandas.tests.libs + • pytest + • re + • struct + • tracemalloc + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.libs.test_join +SourceModule
+imports: + numpy + • pandas._libs + • pandas._libs.join + • pandas._testing + • pandas.tests.libs + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.libs.test_lib +SourceModule
+imports: + numpy + • pandas + • pandas._libs + • pandas._libs.lib + • pandas._libs.writers + • pandas._testing + • pandas.compat + • pandas.tests.libs + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.libs.test_libalgos +SourceModule
+imports: + datetime + • itertools + • numpy + • pandas._libs + • pandas._libs.algos + • pandas._testing + • pandas.tests.libs + +
+
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.plotting.conftest +SourceModule
+imports: + gc + • numpy + • pandas + • pandas.tests.plotting + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + + + + + +
+ + pandas.tests.plotting.frame.test_frame_groupby +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.plotting.frame.test_hist_box_by +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.plotting.common + • pandas.tests.plotting.frame + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.plotting.test_backend +SourceModule
+imports: + pandas + • pandas.tests.plotting + • pandas.util._test_decorators + • pytest + • sys + • types + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.plotting.test_common +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.plotting.test_groupby +SourceModule
+imports: + numpy + • pandas + • pandas.tests.plotting + • pandas.tests.plotting.common + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + + + + + +
+ + pandas.tests.plotting.test_style +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.reductions.test_reductions +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.reductions.test_stat_reductions +SourceModule
+imports: + inspect + • numpy + • pandas + • pandas._testing + • pandas.tests.reductions + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.resample.conftest +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas.tests.resample + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + + + + + +
+ + pandas.tests.resample.test_resample_api +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.resample.test_resampler_grouper +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.resample.test_time_grouper +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.resample.test_timedelta +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.reshape.concat.conftest +SourceModule
+imports: + pandas.tests.reshape.concat + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.reshape.concat.test_append +SourceModule
+imports: + datetime + • dateutil + • itertools + • numpy + • pandas + • pandas._testing + • pandas.tests.reshape.concat + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.reshape.concat.test_append_common +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.reshape.concat + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.reshape.concat.test_categorical +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.reshape.concat.test_dataframe +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.reshape.concat + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.reshape.concat.test_datetimes +SourceModule
+imports: + datetime + • dateutil + • numpy + • pandas + • pandas._testing + • pandas.tests.reshape.concat + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.reshape.concat.test_empty +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.reshape.concat + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.reshape.concat.test_index +SourceModule
+imports: + copy + • numpy + • pandas + • pandas._testing + • pandas.errors + • pandas.tests.reshape.concat + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.reshape.concat.test_invalid +SourceModule
+imports: + io + • numpy + • pandas + • pandas._testing + • pandas.tests.reshape.concat + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.reshape.concat.test_series +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.reshape.concat + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.reshape.concat.test_sort +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.reshape.concat + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.reshape.merge.test_join +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.reshape.merge + • pandas.util._test_decorators + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.reshape.merge.test_merge_asof +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.reshape.merge.test_merge_cross +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.reshape.merge.test_merge_index_as_string +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.reshape.merge + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.reshape.merge.test_merge_ordered +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.reshape.merge + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.reshape.test_crosstab +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.reshape + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.reshape.test_cut +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.reshape.test_from_dummies +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.reshape + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.reshape.test_get_dummies +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.reshape.test_melt +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.reshape + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.reshape.test_pivot +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.reshape.test_pivot_multilevel +SourceModule
+imports: + numpy + • pandas + • pandas._libs + • pandas._libs.lib + • pandas._testing + • pandas.tests.reshape + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.reshape.test_qcut +SourceModule
+imports: + numpy + • os + • pandas + • pandas._testing + • pandas.api.types + • pandas.tests.reshape + • pandas.tseries.offsets + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.reshape.test_union_categoricals +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.core.dtypes.concat + • pandas.tests.reshape + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.reshape.test_util +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.core.reshape.util + • pandas.tests.reshape + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.scalar.interval.test_arithmetic +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.scalar.interval + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.scalar.interval.test_constructors +SourceModule
+imports: + pandas + • pandas.tests.scalar.interval + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.scalar.interval.test_contains +SourceModule
+imports: + pandas + • pandas.tests.scalar.interval + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.scalar.interval.test_formats +SourceModule
+imports: + pandas + • pandas.tests.scalar.interval + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.scalar.interval.test_interval +SourceModule
+imports: + numpy + • pandas + • pandas.tests.scalar.interval + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.scalar.interval.test_overlaps +SourceModule
+imports: + pandas + • pandas.tests.scalar.interval + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.scalar.period.test_arithmetic +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._libs.tslibs.period + • pandas.tests.scalar.period + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.scalar.period.test_asfreq +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.scalar.test_na_scalar +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._libs.missing + • pandas._testing + • pandas.core.dtypes.common + • pandas.tests.scalar + • pickle + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.scalar.test_nat +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + + + + + +
+ + pandas.tests.scalar.timedelta.test_arithmetic +SourceModule
+imports: + datetime + • numpy + • operator + • pandas + • pandas._testing + • pandas.core + • pandas.core.ops + • pandas.errors + • pandas.tests.scalar.timedelta + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.scalar.timedelta.test_constructors +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.scalar.timedelta.test_formats +SourceModule
+imports: + pandas + • pandas.tests.scalar.timedelta + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.scalar.timedelta.test_timedelta +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ + pandas.tests.scalar.timestamp.methods.test_tz_localize +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.scalar.timestamp.test_arithmetic +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.scalar.timestamp.test_comparisons +SourceModule
+imports: + datetime + • numpy + • operator + • pandas + • pandas._testing + • pandas.tests.scalar.timestamp + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.scalar.timestamp.test_constructors +SourceModule
+imports: + calendar + • datetime + • dateutil.tz + • numpy + • pandas + • pandas._libs.tslibs.dtypes + • pandas.compat + • pandas.errors + • pandas.tests.scalar.timestamp + • pytest + • pytz + • zoneinfo + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.scalar.timestamp.test_formats +SourceModule
+imports: + datetime + • dateutil.tz + • pandas + • pandas.tests.scalar.timestamp + • pprint + • pytest + • pytz + +
+
+imported by: + entry.py + +
+ +
+ + + + + + + + + + + + + +
+ + pandas.tests.series.accessors.test_list_accessor +SourceModule
+imports: + pandas + • pandas._testing + • pandas.compat + • pandas.tests.series.accessors + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.accessors.test_sparse_accessor +SourceModule
+imports: + pandas + • pandas.tests.series.accessors + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.accessors.test_str_accessor +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.series.accessors + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.accessors.test_struct_accessor +SourceModule
+imports: + pandas + • pandas._testing + • pandas.compat.pyarrow + • pandas.tests.series.accessors + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.series.indexing.test_datetime +SourceModule
+imports: + datetime + • dateutil.tz + • numpy + • pandas + • pandas._libs + • pandas._libs.index + • pandas._testing + • pandas.tests.series.indexing + • pytest + • pytz + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.indexing.test_delitem +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.series.indexing + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.indexing.test_get +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.indexing + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.series.indexing.test_indexing +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.errors + • pandas.tests.series.indexing + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.indexing.test_mask +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.indexing + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.indexing.test_set_value +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.series.indexing + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.indexing.test_setitem +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.indexing.test_take +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.series.indexing + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.indexing.test_where +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.indexing.test_xs +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.indexing + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods +Package
+imports: + pandas.tests.series + +
+
+imported by: + entry.py + • pandas.tests.series.methods.test_add_prefix_suffix + • pandas.tests.series.methods.test_align + • pandas.tests.series.methods.test_argsort + • pandas.tests.series.methods.test_asof + • pandas.tests.series.methods.test_astype + • pandas.tests.series.methods.test_autocorr + • pandas.tests.series.methods.test_between + • pandas.tests.series.methods.test_case_when + • pandas.tests.series.methods.test_clip + • pandas.tests.series.methods.test_combine + • pandas.tests.series.methods.test_combine_first + • pandas.tests.series.methods.test_compare + • pandas.tests.series.methods.test_convert_dtypes + • pandas.tests.series.methods.test_copy + • pandas.tests.series.methods.test_count + • pandas.tests.series.methods.test_cov_corr + • pandas.tests.series.methods.test_describe + • pandas.tests.series.methods.test_diff + • pandas.tests.series.methods.test_drop + • pandas.tests.series.methods.test_drop_duplicates + • pandas.tests.series.methods.test_dropna + • pandas.tests.series.methods.test_dtypes + • pandas.tests.series.methods.test_duplicated + • pandas.tests.series.methods.test_equals + • pandas.tests.series.methods.test_explode + • pandas.tests.series.methods.test_fillna + • pandas.tests.series.methods.test_get_numeric_data + • pandas.tests.series.methods.test_head_tail + • pandas.tests.series.methods.test_infer_objects + • pandas.tests.series.methods.test_info + • pandas.tests.series.methods.test_interpolate + • pandas.tests.series.methods.test_is_monotonic + • pandas.tests.series.methods.test_is_unique + • pandas.tests.series.methods.test_isin + • pandas.tests.series.methods.test_isna + • pandas.tests.series.methods.test_item + • pandas.tests.series.methods.test_map + • pandas.tests.series.methods.test_matmul + • pandas.tests.series.methods.test_nlargest + • pandas.tests.series.methods.test_nunique + • pandas.tests.series.methods.test_pct_change + • pandas.tests.series.methods.test_pop + • pandas.tests.series.methods.test_quantile + • pandas.tests.series.methods.test_rank + • pandas.tests.series.methods.test_reindex + • pandas.tests.series.methods.test_reindex_like + • pandas.tests.series.methods.test_rename + • pandas.tests.series.methods.test_rename_axis + • pandas.tests.series.methods.test_repeat + • pandas.tests.series.methods.test_replace + • pandas.tests.series.methods.test_reset_index + • pandas.tests.series.methods.test_round + • pandas.tests.series.methods.test_searchsorted + • pandas.tests.series.methods.test_set_name + • pandas.tests.series.methods.test_size + • pandas.tests.series.methods.test_sort_index + • pandas.tests.series.methods.test_sort_values + • pandas.tests.series.methods.test_to_csv + • pandas.tests.series.methods.test_to_dict + • pandas.tests.series.methods.test_to_frame + • pandas.tests.series.methods.test_to_numpy + • pandas.tests.series.methods.test_tolist + • pandas.tests.series.methods.test_truncate + • pandas.tests.series.methods.test_tz_localize + • pandas.tests.series.methods.test_unique + • pandas.tests.series.methods.test_unstack + • pandas.tests.series.methods.test_update + • pandas.tests.series.methods.test_value_counts + • pandas.tests.series.methods.test_values + • pandas.tests.series.methods.test_view + +
+ +
+ +
+ + pandas.tests.series.methods.test_add_prefix_suffix +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_align +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_argsort +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_asof +SourceModule
+imports: + numpy + • pandas + • pandas._libs.tslibs + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_astype +SourceModule
+imports: + datetime + • importlib + • numpy + • pandas + • pandas._libs.tslibs + • pandas._testing + • pandas.tests.series.methods + • pandas.util._test_decorators + • pytest + • string + • sys + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_autocorr +SourceModule
+imports: + numpy + • pandas.tests.series.methods + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_between +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_case_when +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_clip +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_combine +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.series.methods + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_combine_first +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_compare +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_convert_dtypes +SourceModule
+imports: + itertools + • numpy + • pandas + • pandas._libs + • pandas._libs.lib + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_copy +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_count +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_cov_corr +SourceModule
+imports: + math + • numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_describe +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_diff +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_drop +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_drop_duplicates +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_dropna +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_dtypes +SourceModule
+imports: + numpy + • pandas.tests.series.methods + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_duplicated +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_equals +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_explode +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_fillna +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.core.arrays + • pandas.tests.series.methods + • pytest + • pytz + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_get_numeric_data +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.series.methods + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_head_tail +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_infer_objects +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_info +SourceModule
+imports: + io + • numpy + • pandas + • pandas.compat + • pandas.tests.series.methods + • pytest + • string + • textwrap + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_interpolate +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_is_monotonic +SourceModule
+imports: + numpy + • pandas + • pandas.tests.series.methods + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_is_unique +SourceModule
+imports: + numpy + • pandas + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_isin +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_isna +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_item +SourceModule
+imports: + pandas + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_map +SourceModule
+imports: + collections + • decimal + • math + • numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_matmul +SourceModule
+imports: + numpy + • operator + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_nlargest +SourceModule
+imports: + itertools + • numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_nunique +SourceModule
+imports: + numpy + • pandas + • pandas.tests.series.methods + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_pct_change +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_pop +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.series.methods + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.series.methods.test_rank +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_reindex +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_reindex_like +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_rename +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_rename_axis +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_repeat +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_replace +SourceModule
+imports: + numpy + • pandas + • pandas._config + • pandas._testing + • pandas.core.arrays + • pandas.tests.series.methods + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_reset_index +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_round +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_searchsorted +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.api.types + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_set_name +SourceModule
+imports: + datetime + • pandas + • pandas.tests.series.methods + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_size +SourceModule
+imports: + pandas + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_sort_index +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_sort_values +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_to_csv +SourceModule
+imports: + datetime + • io + • numpy + • pandas + • pandas._testing + • pandas.io.common + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_to_dict +SourceModule
+imports: + collections + • numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_to_frame +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_to_numpy +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_tolist +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_truncate +SourceModule
+imports: + datetime + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_tz_localize +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_unique +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_unstack +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_update +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_value_counts +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_values +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.methods.test_view +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series.methods + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.test_api +SourceModule
+imports: + inspect + • numpy + • pandas + • pandas._testing + • pandas.tests.series + • pydoc + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.series.test_cumulative +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.test_formats +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._config + • pandas._testing + • pandas.tests.series + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.test_iteration +SourceModule
+imports: + pandas.tests.series + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.test_logical_ops +SourceModule
+imports: + datetime + • numpy + • operator + • pandas + • pandas._testing + • pandas.core + • pandas.core.ops + • pandas.tests.series + • pyarrow + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.test_missing +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._libs + • pandas._testing + • pandas.tests.series + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.test_npfuncs +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series + • pandas.util._test_decorators + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.test_reductions +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.test_subclass +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.series + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.test_ufunc +SourceModule
+imports: + collections + • numpy + • pandas + • pandas._testing + • pandas.arrays + • pandas.tests.series + • pandas.util._test_decorators + • pytest + • re + • string + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.test_unary +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.series + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.series.test_validate +SourceModule
+imports: + pandas.tests.series + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.strings.conftest +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.strings.test_api +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.strings.test_case_justify +SourceModule
+imports: + datetime + • numpy + • operator + • pandas + • pandas._testing + • pandas.tests.strings + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.strings.test_cat +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.strings + • pandas.util._test_decorators + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.strings.test_extract +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.core.dtypes.dtypes + • pandas.tests.strings + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.strings.test_find_replace +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.errors + • pandas.tests.strings + • pandas.util._test_decorators + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.strings.test_get_dummies +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.strings + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.strings.test_split_partition +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests.strings + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.strings.test_string_array +SourceModule
+imports: + numpy + • pandas + • pandas._libs + • pandas._libs.lib + • pandas._testing + • pandas.tests.strings + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.strings.test_strings +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.core.strings.accessor + • pandas.tests.strings + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.test_aggregation +SourceModule
+imports: + numpy + • pandas.core.apply + • pandas.tests + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.test_common +SourceModule
+imports: + collections + • functools + • numpy + • pandas + • pandas._testing + • pandas.core + • pandas.core.common + • pandas.core.ops + • pandas.tests + • pandas.util.version + • pytest + • string + • subprocess + • sys + • textwrap + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.test_downstream +SourceModule
+imports: + array + • dask + • numpy + • pandas + • pandas._testing + • pandas.core.arrays + • pandas.errors + • pandas.tests + • pandas.util._test_decorators + • pytest + • sklearn + • subprocess + • sys + • xarray + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.test_errors +SourceModule
+imports: + pandas + • pandas.errors + • pandas.tests + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.test_expressions +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.test_flags +SourceModule
+imports: + pandas + • pandas.tests + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.test_multilevel +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.tests + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.test_nanops +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.test_optional_dependency +SourceModule
+imports: + pandas._testing + • pandas.compat._optional + • pandas.tests + • pytest + • sys + • types + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.test_register_accessor +SourceModule
+imports: + collections.abc + • contextlib + • pandas + • pandas._testing + • pandas.core + • pandas.core.accessor + • pandas.tests + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.test_sorting +SourceModule
+imports: + collections + • datetime + • itertools + • numpy + • pandas + • pandas._testing + • pandas.core.algorithms + • pandas.core.common + • pandas.core.sorting + • pandas.tests + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.test_take +SourceModule
+imports: + datetime + • numpy + • pandas._libs + • pandas._testing + • pandas.core.algorithms + • pandas.tests + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.tools.test_to_numeric +SourceModule
+imports: + decimal + • numpy + • pandas + • pandas._testing + • pandas.tests.tools + • pandas.util._test_decorators + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.tools.test_to_time +SourceModule
+imports: + datetime + • locale + • numpy + • pandas + • pandas._testing + • pandas.compat + • pandas.core.tools.times + • pandas.tests.tools + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.tools.test_to_timedelta +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas._testing + • pandas.compat + • pandas.core.arrays + • pandas.errors + • pandas.tests.tools + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.tseries.frequencies.test_freq_code +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + + + +
+ + pandas.tests.tseries.holiday.test_calendar +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.tseries.holiday.test_federal +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.tseries.holiday.test_holiday +SourceModule
+imports: + datetime + • pandas + • pandas._testing + • pandas.tests.tseries.holiday + • pandas.tseries.holiday + • pytest + • pytz + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.tseries.holiday.test_observance +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + pandas.tests.tseries.offsets.test_index +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + +
+ + pandas.tests.tseries.offsets.test_offsets_properties +SourceModule +
+imported by: + entry.py + +
+ +
+ + + + + + + +
+ + pandas.tests.tseries.offsets.test_year +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.tslibs.test_api +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.tslibs.test_ccalendar +SourceModule +
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.tslibs.test_fields +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.tslibs.test_libfrequencies +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.tslibs.test_liboffsets +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.tslibs.test_np_datetime +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.tslibs.test_npy_units +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.tslibs.test_parse_iso8601 +SourceModule
+imports: + datetime + • pandas + • pandas._libs + • pandas._libs.tslib + • pandas.tests.tslibs + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.tslibs.test_period +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.tslibs.test_resolution +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.tslibs.test_strptime +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.tslibs.test_timedeltas +SourceModule
+imports: + numpy + • pandas + • pandas._libs.tslibs.timedeltas + • pandas._testing + • pandas.tests.tslibs + • pytest + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.tslibs.test_timezones +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.tslibs.test_to_offset +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.tslibs.test_tzconversion +SourceModule
+imports: + numpy + • pandas._libs.tslibs.tzconversion + • pandas.tests.tslibs + • pytest + • pytz + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.util.conftest +SourceModule
+imports: + pandas.tests.util + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_assert_almost_equal +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.util + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_assert_attr_equal +SourceModule
+imports: + pandas._testing + • pandas.core.dtypes.common + • pandas.tests.util + • pytest + • types + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_assert_categorical_equal +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.util + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_assert_extension_array_equal +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.core.arrays.sparse + • pandas.tests.util + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_assert_frame_equal +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.util + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_assert_index_equal +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.util + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_assert_interval_array_equal +SourceModule
+imports: + pandas + • pandas._testing + • pandas.tests.util + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_assert_numpy_array_equal +SourceModule
+imports: + copy + • numpy + • pandas + • pandas._testing + • pandas.tests.util + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_assert_produces_warning +SourceModule
+imports: + pandas._testing + • pandas.errors + • pandas.tests.util + • pytest + • warnings + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_assert_series_equal +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.util + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_deprecate +SourceModule
+imports: + pandas._testing + • pandas.tests.util + • pandas.util._decorators + • pytest + • textwrap + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_deprecate_kwarg +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_deprecate_nonkeyword_arguments +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_doc +SourceModule
+imports: + pandas.tests.util + • pandas.util._decorators + • textwrap + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_hashing +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_numba +SourceModule
+imports: + pandas + • pandas.tests.util + • pandas.util._test_decorators + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_rewrite_warning +SourceModule
+imports: + pandas._testing + • pandas.tests.util + • pandas.util._exceptions + • pytest + • warnings + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_shares_memory +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_show_versions +SourceModule
+imports: + json + • os + • pandas + • pandas.tests.util + • pandas.util._print_versions + • re + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_util +SourceModule
+imports: + numpy + • os + • pandas + • pandas._testing + • pandas.compat + • pandas.tests.util + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_validate_args +SourceModule
+imports: + pandas.tests.util + • pandas.util._validators + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_validate_args_and_kwargs +SourceModule
+imports: + pandas.tests.util + • pandas.util._validators + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_validate_inclusive +SourceModule
+imports: + numpy + • pandas + • pandas.tests.util + • pandas.util._validators + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.util.test_validate_kwargs +SourceModule
+imports: + pandas.tests.util + • pandas.util._validators + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.window.conftest +SourceModule
+imports: + datetime + • numpy + • pandas + • pandas.tests.window + • pandas.util._test_decorators + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tests.window.moments.conftest +SourceModule
+imports: + itertools + • numpy + • pandas + • pandas.tests.window.moments + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.window.moments.test_moments_consistency_ewm +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.window.moments + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.window.moments.test_moments_consistency_expanding +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.window.moments + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.window.moments.test_moments_consistency_rolling +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.window.moments + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.window.test_api +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.errors + • pandas.tests.window + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.window.test_apply +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.window + • pandas.tseries + • pandas.tseries.offsets + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.window.test_base_indexer +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.window.test_cython_aggregations +SourceModule
+imports: + functools + • numpy + • pandas + • pandas._libs.window.aggregations + • pandas._testing + • pandas.tests.window + • pytest + • sys + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.window.test_dtypes +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.core.dtypes.common + • pandas.errors + • pandas.tests.window + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.window.test_ewm +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.window + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.window.test_expanding +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.window + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.window.test_groupby +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.window.test_numba +SourceModule
+imports: + numba + • numpy + • pandas + • pandas._testing + • pandas.errors + • pandas.tests.window + • pandas.util._test_decorators + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.window.test_online +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.tests.window + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.window.test_pairwise +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.compat + • pandas.core.algorithms + • pandas.tests.window + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.window.test_rolling +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.window.test_rolling_functions +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.window.test_rolling_quantile +SourceModule
+imports: + functools + • numpy + • pandas + • pandas._testing + • pandas.tests.window + • pandas.tseries + • pandas.tseries.offsets + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.window.test_rolling_skew_kurt +SourceModule
+imports: + functools + • numpy + • pandas + • pandas._testing + • pandas.tests.window + • pandas.tseries + • pandas.tseries.offsets + • pytest + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.window.test_timeseries_window +SourceModule +
+imported by: + entry.py + +
+ +
+ +
+ + pandas.tests.window.test_win_type +SourceModule
+imports: + numpy + • pandas + • pandas._testing + • pandas.api.indexers + • pandas.tests.window + • pytest + +
+
+imported by: + entry.py + +
+ +
+ + + +
+ + pandas.tseries.api +SourceModule +
+imported by: + entry.py + • pandas + +
+ +
+ + + + + +
+ + pandas.tseries.offsets +SourceModule +
+imported by: + entry.py + • pandas + • pandas._testing._hypothesis + • pandas.core.api + • pandas.core.arrays.datetimes + • pandas.core.indexers.objects + • pandas.core.resample + • pandas.tests.frame.indexing.test_setitem + • pandas.tests.frame.indexing.test_xs + • pandas.tests.frame.methods.test_asfreq + • pandas.tests.frame.methods.test_map + • pandas.tests.indexes.datetimes.test_freq_attr + • pandas.tests.indexes.datetimes.test_join + • pandas.tests.indexes.datetimes.test_setops + • pandas.tests.indexes.interval.test_interval_range + • pandas.tests.indexes.period.methods.test_asfreq + • pandas.tests.indexes.period.test_pickle + • pandas.tests.indexes.timedeltas.test_freq_attr + • pandas.tests.indexes.timedeltas.test_setops + • pandas.tests.indexes.timedeltas.test_timedelta_range + • pandas.tests.io.generate_legacy_storage_files + • pandas.tests.io.test_pickle + • pandas.tests.plotting.test_converter + • pandas.tests.plotting.test_datetimelike + • pandas.tests.plotting.test_series + • pandas.tests.resample.test_datetime_index + • pandas.tests.resample.test_period_index + • pandas.tests.reshape.test_qcut + • pandas.tests.scalar.timestamp.test_timestamp + • pandas.tests.series.indexing.test_getitem + • pandas.tests.series.indexing.test_setitem + • pandas.tests.tseries.frequencies.test_inference + • pandas.tests.tseries.offsets.test_business_day + • pandas.tests.tseries.offsets.test_business_month + • pandas.tests.tseries.offsets.test_business_quarter + • pandas.tests.tseries.offsets.test_business_year + • pandas.tests.tseries.offsets.test_common + • pandas.tests.tseries.offsets.test_custom_business_month + • pandas.tests.tseries.offsets.test_easter + • pandas.tests.tseries.offsets.test_fiscal + • pandas.tests.tseries.offsets.test_index + • pandas.tests.tseries.offsets.test_offsets + • pandas.tests.tseries.offsets.test_quarter + • pandas.tests.tseries.offsets.test_ticks + • pandas.tests.tseries.offsets.test_year + • pandas.tests.tslibs.test_libfrequencies + • pandas.tests.window.test_apply + • pandas.tests.window.test_base_indexer + • pandas.tests.window.test_rolling + • pandas.tests.window.test_rolling_functions + • pandas.tests.window.test_rolling_quantile + • pandas.tests.window.test_rolling_skew_kurt + • pandas.tests.window.test_timeseries_window + • pandas.tseries + • pandas.tseries.api + • pandas.tseries.holiday + +
+ +
+ + + +
+ + pandas.util._decorators +SourceModule +
+imported by: + entry.py + • pandas.core.accessor + • pandas.core.algorithms + • pandas.core.apply + • pandas.core.arrays._mixins + • pandas.core.arrays.arrow.array + • pandas.core.arrays.base + • pandas.core.arrays.datetimelike + • pandas.core.arrays.interval + • pandas.core.arrays.masked + • pandas.core.arrays.numeric + • pandas.core.arrays.period + • pandas.core.arrays.sparse.array + • pandas.core.arrays.string_ + • pandas.core.base + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.generic + • pandas.core.groupby.groupby + • pandas.core.groupby.grouper + • pandas.core.groupby.indexing + • pandas.core.groupby.ops + • pandas.core.indexers.objects + • pandas.core.indexes.base + • pandas.core.indexes.category + • pandas.core.indexes.datetimelike + • pandas.core.indexes.datetimes + • pandas.core.indexes.extension + • pandas.core.indexes.interval + • pandas.core.indexes.multi + • pandas.core.indexes.period + • pandas.core.indexes.range + • pandas.core.indexing + • pandas.core.interchange.column + • pandas.core.internals.blocks + • pandas.core.internals.concat + • pandas.core.internals.managers + • pandas.core.resample + • pandas.core.reshape.concat + • pandas.core.reshape.melt + • pandas.core.reshape.merge + • pandas.core.reshape.pivot + • pandas.core.reshape.reshape + • pandas.core.series + • pandas.core.strings.accessor + • pandas.core.window.ewm + • pandas.core.window.expanding + • pandas.core.window.rolling + • pandas.io.common + • pandas.io.excel._base + • pandas.io.excel._calamine + • pandas.io.excel._odfreader + • pandas.io.excel._openpyxl + • pandas.io.excel._pyxlsb + • pandas.io.excel._xlrd + • pandas.io.feather_format + • pandas.io.formats.csvs + • pandas.io.formats.excel + • pandas.io.formats.style + • pandas.io.formats.xml + • pandas.io.html + • pandas.io.json._json + • pandas.io.parquet + • pandas.io.parsers.python_parser + • pandas.io.parsers.readers + • pandas.io.pickle + • pandas.io.pytables + • pandas.io.sas.sas_xport + • pandas.io.sas.sasreader + • pandas.io.stata + • pandas.io.xml + • pandas.plotting._core + • pandas.plotting._matplotlib.boxplot + • pandas.plotting._matplotlib.core + • pandas.tests.util.test_deprecate + • pandas.tests.util.test_deprecate_kwarg + • pandas.tests.util.test_deprecate_nonkeyword_arguments + • pandas.tests.util.test_doc + • pandas.tseries.frequencies + • pandas.util + +
+ +
+ +
+ + pandas.util._doctools +SourceModule
+imports: + 'matplotlib.pyplot' + • __future__ + • collections.abc + • matplotlib + • numpy + • pandas + • pandas.plotting + • pandas.util + • typing + +
+
+imported by: + entry.py + +
+ +
+ +
+ + pandas.util._exceptions +SourceModule
+imports: + __future__ + • collections.abc + • contextlib + • inspect + • os + • pandas + • pandas.util + • re + • types + • typing + • warnings + +
+
+imported by: + entry.py + • pandas._config.config + • pandas.arrays + • pandas.compat._optional + • pandas.core.accessor + • pandas.core.algorithms + • pandas.core.apply + • pandas.core.arrays.arrow._arrow_utils + • pandas.core.arrays.base + • pandas.core.arrays.categorical + • pandas.core.arrays.datetimelike + • pandas.core.arrays.datetimes + • pandas.core.arrays.period + • pandas.core.arrays.sparse.array + • pandas.core.arrays.string_arrow + • pandas.core.base + • pandas.core.computation.align + • pandas.core.computation.eval + • pandas.core.computation.expressions + • pandas.core.construction + • pandas.core.dtypes.common + • pandas.core.dtypes.concat + • pandas.core.dtypes.dtypes + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.generic + • pandas.core.groupby.groupby + • pandas.core.groupby.grouper + • pandas.core.indexes.accessors + • pandas.core.indexes.base + • pandas.core.indexes.datetimelike + • pandas.core.indexes.datetimes + • pandas.core.indexes.interval + • pandas.core.indexes.multi + • pandas.core.indexes.period + • pandas.core.indexes.timedeltas + • pandas.core.indexing + • pandas.core.internals.blocks + • pandas.core.internals.concat + • pandas.core.internals.managers + • pandas.core.methods.to_dict + • pandas.core.nanops + • pandas.core.ops.array_ops + • pandas.core.resample + • pandas.core.reshape.concat + • pandas.core.reshape.merge + • pandas.core.reshape.pivot + • pandas.core.reshape.reshape + • pandas.core.series + • pandas.core.strings.accessor + • pandas.core.tools.datetimes + • pandas.core.tools.numeric + • pandas.core.tools.timedeltas + • pandas.core.tools.times + • pandas.io.clipboard + • pandas.io.clipboards + • pandas.io.common + • pandas.io.excel._base + • pandas.io.formats.css + • pandas.io.formats.excel + • pandas.io.formats.style + • pandas.io.gbq + • pandas.io.html + • pandas.io.json._json + • pandas.io.json._table_schema + • pandas.io.parquet + • pandas.io.parsers.arrow_parser_wrapper + • pandas.io.parsers.base_parser + • pandas.io.parsers.c_parser_wrapper + • pandas.io.parsers.python_parser + • pandas.io.parsers.readers + • pandas.io.pytables + • pandas.io.sas.sas_xport + • pandas.io.sql + • pandas.io.stata + • pandas.io.xml + • pandas.plotting._matplotlib.boxplot + • pandas.plotting._matplotlib.core + • pandas.plotting._matplotlib.style + • pandas.plotting._matplotlib.tools + • pandas.tests.util.test_rewrite_warning + • pandas.util._decorators + +
+ +
+ +
+ + pandas.util._print_versions +SourceModule
+imports: + __future__ + • codecs + • json + • locale + • os + • pandas._typing + • pandas._version + • pandas._version_meson + • pandas.compat._optional + • pandas.util + • platform + • struct + • sys + • typing + +
+
+imported by: + entry.py + • pandas + • pandas.tests.util.test_show_versions + +
+ +
+ +
+ + pandas.util._test_decorators +SourceModule +
+imported by: + entry.py + • pandas.conftest + • pandas.tests.apply.test_numba + • pandas.tests.arithmetic.test_object + • pandas.tests.arrays.sparse.test_libsparse + • pandas.tests.arrays.string_.test_string_arrow + • pandas.tests.computation.test_eval + • pandas.tests.copy_view.test_astype + • pandas.tests.copy_view.test_internals + • pandas.tests.dtypes.test_common + • pandas.tests.extension.base.casting + • pandas.tests.extension.test_arrow + • pandas.tests.frame.indexing.test_indexing + • pandas.tests.frame.indexing.test_setitem + • pandas.tests.frame.methods.test_astype + • pandas.tests.frame.methods.test_between_time + • pandas.tests.frame.methods.test_copy + • pandas.tests.frame.methods.test_cov_corr + • pandas.tests.frame.methods.test_fillna + • pandas.tests.frame.methods.test_interpolate + • pandas.tests.frame.methods.test_is_homogeneous_dtype + • pandas.tests.frame.methods.test_reindex + • pandas.tests.frame.methods.test_shift + • pandas.tests.frame.methods.test_to_dict_of_blocks + • pandas.tests.frame.methods.test_to_numpy + • pandas.tests.frame.methods.test_transpose + • pandas.tests.frame.methods.test_update + • pandas.tests.frame.methods.test_values + • pandas.tests.frame.test_arithmetic + • pandas.tests.frame.test_arrow_interface + • pandas.tests.frame.test_block_internals + • pandas.tests.frame.test_constructors + • pandas.tests.frame.test_query_eval + • pandas.tests.frame.test_reductions + • pandas.tests.groupby.methods.test_size + • pandas.tests.groupby.methods.test_value_counts + • pandas.tests.groupby.test_bin_groupby + • pandas.tests.groupby.test_cumulative + • pandas.tests.groupby.test_groupby + • pandas.tests.groupby.test_reductions + • pandas.tests.indexes.datetimes.methods.test_normalize + • pandas.tests.indexes.datetimes.test_date_range + • pandas.tests.indexes.datetimes.test_setops + • pandas.tests.indexes.interval.test_constructors + • pandas.tests.indexes.object.test_indexing + • pandas.tests.indexes.test_base + • pandas.tests.indexing.multiindex.test_chaining_and_caching + • pandas.tests.indexing.multiindex.test_partial + • pandas.tests.indexing.multiindex.test_setitem + • pandas.tests.indexing.test_categorical + • pandas.tests.indexing.test_chaining_and_caching + • pandas.tests.indexing.test_iloc + • pandas.tests.indexing.test_loc + • pandas.tests.internals.test_internals + • pandas.tests.io.conftest + • pandas.tests.io.excel.test_readers + • pandas.tests.io.excel.test_style + • pandas.tests.io.excel.test_writers + • pandas.tests.io.json.test_compression + • pandas.tests.io.json.test_pandas + • pandas.tests.io.parser.common.test_file_buffer_url + • pandas.tests.io.parser.test_c_parser_only + • pandas.tests.io.parser.test_network + • pandas.tests.io.pytables.test_append + • pandas.tests.io.pytables.test_put + • pandas.tests.io.pytables.test_pytables_missing + • pandas.tests.io.pytables.test_read + • pandas.tests.io.pytables.test_round_trip + • pandas.tests.io.pytables.test_timezones + • pandas.tests.io.sas.test_sas7bdat + • pandas.tests.io.test_common + • pandas.tests.io.test_fsspec + • pandas.tests.io.test_gcs + • pandas.tests.io.test_html + • pandas.tests.io.test_http_headers + • pandas.tests.io.test_pickle + • pandas.tests.io.test_sql + • pandas.tests.io.test_stata + • pandas.tests.io.xml.test_to_xml + • pandas.tests.io.xml.test_xml + • pandas.tests.io.xml.test_xml_dtypes + • pandas.tests.plotting.frame.test_frame + • pandas.tests.plotting.frame.test_frame_legend + • pandas.tests.plotting.test_backend + • pandas.tests.plotting.test_misc + • pandas.tests.plotting.test_series + • pandas.tests.resample.test_datetime_index + • pandas.tests.resample.test_timedelta + • pandas.tests.reshape.concat.test_concat + • pandas.tests.reshape.merge.test_join + • pandas.tests.reshape.merge.test_merge_asof + • pandas.tests.reshape.merge.test_multi + • pandas.tests.reshape.test_get_dummies + • pandas.tests.scalar.timestamp.methods.test_replace + • pandas.tests.scalar.timestamp.methods.test_timestamp_method + • pandas.tests.scalar.timestamp.methods.test_to_pydatetime + • pandas.tests.scalar.timestamp.methods.test_tz_convert + • pandas.tests.series.methods.test_astype + • pandas.tests.series.methods.test_interpolate + • pandas.tests.series.methods.test_rank + • pandas.tests.series.methods.test_reindex + • pandas.tests.series.methods.test_to_numpy + • pandas.tests.series.methods.test_tolist + • pandas.tests.series.methods.test_update + • pandas.tests.series.test_constructors + • pandas.tests.series.test_npfuncs + • pandas.tests.series.test_ufunc + • pandas.tests.strings.test_cat + • pandas.tests.strings.test_find_replace + • pandas.tests.test_downstream + • pandas.tests.test_nanops + • pandas.tests.tools.test_to_datetime + • pandas.tests.tools.test_to_numeric + • pandas.tests.tslibs.test_parsing + • pandas.tests.util.test_numba + • pandas.tests.util.test_shares_memory + • pandas.tests.window.conftest + • pandas.tests.window.test_numba + • pandas.tests.window.test_rolling_functions + • pandas.tests.window.test_timeseries_window + +
+ +
+ +
+ + pandas.util._tester +SourceModule
+imports: + __future__ + • os + • pandas.compat._optional + • pandas.util + • sys + +
+
+imported by: + entry.py + • pandas + +
+ +
+ + + +
+ + pandas.util.hash_array +MissingModule
+imported by: + pandas.tests.util.test_hashing + • pandas.util + +
+ +
+ +
+ + pandas.util.hash_pandas_object +MissingModule
+imported by: + pandas.tests.util.test_hashing + • pandas.util + +
+ +
+ + + +
+ + pathlib +SourceModule
+imports: + _collections_abc + • errno + • fnmatch + • functools + • grp + • io + • ntpath + • os + • posixpath + • pwd + • re + • stat + • sys + • urllib.parse + • warnings + +
+
+imported by: + ad_user_creator.cli + • ad_user_creator.config + • ad_user_creator.input_parser + • ad_user_creator.logging_setup + • ad_user_creator.main + • ad_user_creator.persistence + • entry.py + • filelock._soft + • filelock._unix + • filelock._util + • filelock._windows + • importlib.metadata + • importlib.resources._common + • importlib.resources._legacy + • importlib.resources.abc + • importlib.resources.readers + • numpy + • numpy.f2py._backends._meson + • numpy.f2py.crackfortran + • numpy.f2py.f2py2e + • numpy.f2py.rules + • numpy.testing._private.extbuild + • packaging.metadata + • pandas._testing._io + • pandas._testing.contexts + • pandas.io.common + • pandas.io.spss + • pandas.tests.io.excel.test_openpyxl + • pandas.tests.io.excel.test_readers + • pandas.tests.io.formats.test_format + • pandas.tests.io.json.test_readlines + • pandas.tests.io.parser.common.test_common_basic + • pandas.tests.io.parser.common.test_read_errors + • pandas.tests.io.parser.test_compression + • pandas.tests.io.parser.test_read_fwf + • pandas.tests.io.parser.test_unsupported + • pandas.tests.io.pytables.common + • pandas.tests.io.pytables.test_read + • pandas.tests.io.sas.test_sas7bdat + • pandas.tests.io.test_common + • pandas.tests.io.test_compression + • pandas.tests.io.test_gcs + • pandas.tests.io.test_html + • pandas.tests.io.test_orc + • pandas.tests.io.test_parquet + • pandas.tests.io.test_pickle + • pandas.tests.io.test_spss + • pandas.tests.io.test_sql + • pandas.tests.io.xml.conftest + • platformdirs + • platformdirs.api + • platformdirs.unix + • pyi_rth_pkgres.py + • setuptools._distutils.ccompiler + • setuptools._distutils.dir_util + • setuptools._distutils.dist + • setuptools._distutils.sysconfig + • setuptools._distutils.util + • setuptools._vendor.importlib_metadata + • setuptools._vendor.importlib_metadata.compat.py311 + • setuptools._vendor.zipp + • setuptools.config.expand + • setuptools.discovery + • setuptools.dist + • wheel.cli.convert + • wheel.cli.unpack + • zipfile._path + +
+ +
+ +
+ + pdb +SourceModule
+imports: + bdb + • cmd + • code + • dis + • functools + • getopt + • glob + • inspect + • io + • linecache + • os + • pdb + • pprint + • pydoc + • re + • readline + • runpy + • shlex + • signal + • sys + • token + • tokenize + • traceback + • typing + +
+
+imported by: + doctest + • pdb + +
+ +
+ + + +
+ + pickletools +SourceModule
+imports: + argparse + • codecs + • doctest + • io + • pickle + • re + • struct + • sys + +
+ + +
+ + + +
+ + pkgutil +SourceModule
+imports: + collections + • functools + • importlib + • importlib.machinery + • importlib.util + • inspect + • marshal + • os + • os.path + • re + • sys + • types + • warnings + • zipimport + +
+
+imported by: + dateutil.zoneinfo + • pkg_resources + • pydoc + • pyi_rth_pkgutil.py + • runpy + • unittest.mock + +
+ +
+ + + + + +
+ + platformdirs.android +SourceModule
+imports: + __future__ + • functools + • jnius + • os + • platformdirs + • platformdirs.api + • re + • sys + • typing + +
+
+imported by: + platformdirs + +
+ +
+ +
+ + platformdirs.api +SourceModule
+imports: + __future__ + • abc + • os + • pathlib + • platformdirs + • sys + • typing + • typing_extensions + +
+ + +
+ +
+ + platformdirs.macos +SourceModule
+imports: + __future__ + • os.path + • platformdirs + • platformdirs.api + +
+
+imported by: + platformdirs + +
+ +
+ +
+ + platformdirs.unix +SourceModule
+imports: + __future__ + • configparser + • os + • pathlib + • platformdirs + • platformdirs.api + • sys + +
+
+imported by: + platformdirs + +
+ +
+ +
+ + platformdirs.version +SourceModule
+imports: + platformdirs + +
+
+imported by: + platformdirs + +
+ +
+ +
+ + platformdirs.windows +SourceModule
+imports: + __future__ + • collections.abc + • ctypes + • functools + • os + • platformdirs + • platformdirs.api + • sys + • typing + • winreg + +
+
+imported by: + platformdirs + +
+ +
+ +
+ + plistlib +SourceModule
+imports: + binascii + • codecs + • datetime + • enum + • io + • itertools + • os + • re + • struct + • xml.parsers.expat + +
+
+imported by: + pkg_resources + • platform + +
+ +
+ +
+ + posix (builtin module)
+imports: + resource + +
+
+imported by: + importlib._bootstrap_external + • os + • posixpath + • shutil + +
+ +
+ +
+ + posixpath +SourceModule
+imports: + genericpath + • os + • posix + • pwd + • re + • stat + • sys + +
+ + +
+ + + +
+ + psutil +MissingModule
+imported by: + numpy.testing._private.utils + +
+ +
+ +
+ + pwd (builtin module) + +
+ +
+ + py +MissingModule + +
+ +
+ + py_compile +SourceModule
+imports: + argparse + • enum + • importlib._bootstrap_external + • importlib.machinery + • importlib.util + • os + • os.path + • sys + • traceback + +
+
+imported by: + setuptools._distutils.util + • zipfile + +
+ +
+ +
+ + pyarrow +MissingModule
+imported by: + pandas._testing + • pandas.compat.pyarrow + • pandas.conftest + • pandas.core.arrays._arrow_string_mixins + • pandas.core.arrays.arrow._arrow_utils + • pandas.core.arrays.arrow.accessors + • pandas.core.arrays.arrow.array + • pandas.core.arrays.arrow.extension_types + • pandas.core.arrays.boolean + • pandas.core.arrays.interval + • pandas.core.arrays.masked + • pandas.core.arrays.numeric + • pandas.core.arrays.period + • pandas.core.arrays.string_ + • pandas.core.arrays.string_arrow + • pandas.core.dtypes.cast + • pandas.core.dtypes.dtypes + • pandas.core.indexes.base + • pandas.core.interchange.buffer + • pandas.core.interchange.utils + • pandas.core.methods.describe + • pandas.core.reshape.encoding + • pandas.core.reshape.merge + • pandas.core.strings.accessor + • pandas.io.feather_format + • pandas.io.parsers.base_parser + • pandas.io.sql + • pandas.tests.apply.test_invalid_arg + • pandas.tests.arithmetic.test_object + • pandas.tests.arrays.boolean.test_arithmetic + • pandas.tests.arrays.floating.test_arithmetic + • pandas.tests.arrays.integer.test_arithmetic + • pandas.tests.arrays.string_.test_string + • pandas.tests.extension.base.ops + • pandas.tests.extension.test_string + • pandas.tests.frame.methods.test_cov_corr + • pandas.tests.frame.test_logical_ops + • pandas.tests.frame.test_unary + • pandas.tests.groupby.test_numeric_only + • pandas.tests.indexes.object.test_indexing + • pandas.tests.indexes.test_base + • pandas.tests.indexes.test_old_base + • pandas.tests.io.excel.test_readers + • pandas.tests.io.parser.conftest + • pandas.tests.io.test_html + • pandas.tests.io.test_orc + • pandas.tests.io.test_parquet + • pandas.tests.reshape.test_get_dummies + • pandas.tests.series.test_arithmetic + • pandas.tests.series.test_logical_ops + • pandas.tests.util.test_shares_memory + +
+ +
+ + + +
+ + pyasn1.codec +Package
+imports: + pyasn1 + +
+
+imported by: + pyasn1.codec.ber + • pyasn1.codec.streaming + +
+ +
+ + + +
+ + pyasn1.codec.ber.decoder +SourceModule +
+imported by: + ldap3.utils.asn1 + • pyasn1.codec.ber + +
+ +
+ +
+ + pyasn1.codec.ber.encoder +SourceModule +
+imported by: + ldap3.utils.asn1 + +
+ +
+ + + +
+ + pyasn1.codec.streaming +SourceModule
+imports: + io + • os + • pyasn1 + • pyasn1.codec + • pyasn1.error + • pyasn1.type + • pyasn1.type.univ + +
+
+imported by: + pyasn1.codec.ber.decoder + +
+ +
+ +
+ + pyasn1.compat +Package
+imports: + pyasn1 + • pyasn1.compat.integer + +
+ + +
+ +
+ + pyasn1.compat.integer +SourceModule
+imports: + pyasn1.compat + +
+
+imported by: + pyasn1.codec.ber.encoder + • pyasn1.compat + • pyasn1.type.univ + +
+ +
+ +
+ + pyasn1.debug +SourceModule
+imports: + logging + • pyasn1 + • pyasn1.error + • sys + +
+
+imported by: + pyasn1 + • pyasn1.codec.ber.decoder + • pyasn1.codec.ber.encoder + +
+ +
+ + + + + +
+ + pyasn1.type.base +SourceModule
+imports: + pyasn1 + • pyasn1.error + • pyasn1.type + • pyasn1.type.constraint + • pyasn1.type.tag + • pyasn1.type.tagmap + • sys + +
+ + +
+ +
+ + pyasn1.type.char +SourceModule
+imports: + pyasn1 + • pyasn1.error + • pyasn1.type + • pyasn1.type.tag + • pyasn1.type.univ + • sys + +
+ + +
+ +
+ + pyasn1.type.constraint +SourceModule
+imports: + pyasn1.type + • pyasn1.type.error + • sys + +
+ + +
+ +
+ + pyasn1.type.error +SourceModule
+imports: + pyasn1.error + • pyasn1.type + +
+
+imported by: + pyasn1.type + • pyasn1.type.constraint + +
+ +
+ + + +
+ + pyasn1.type.namedval +SourceModule
+imports: + pyasn1 + • pyasn1.error + • pyasn1.type + +
+ + +
+ + + +
+ + pyasn1.type.tagmap +SourceModule
+imports: + pyasn1 + • pyasn1.error + • pyasn1.type + +
+ + +
+ + + +
+ + pyasn1.type.useful +SourceModule
+imports: + datetime + • pyasn1 + • pyasn1.error + • pyasn1.type + • pyasn1.type.char + • pyasn1.type.tag + • pyasn1.type.univ + +
+ + +
+ + + +
+ + pycparser.ast_transforms +SourceModule
+imports: + pycparser + • pycparser.c_ast + +
+
+imported by: + pycparser.c_parser + +
+ +
+ +
+ + pycparser.c_ast +SourceModule
+imports: + pycparser + • sys + +
+
+imported by: + pycparser + • pycparser.ast_transforms + • pycparser.c_parser + +
+ +
+ +
+ + pycparser.c_lexer +SourceModule
+imports: + pycparser + • pycparser.ply + • pycparser.ply.lex + • re + +
+
+imported by: + pycparser.c_parser + +
+ +
+ +
+ + pycparser.c_parser +SourceModule +
+imported by: + pycparser + +
+ +
+ +
+ + pycparser.lextab +SourceModule
+imports: + pycparser + +
+
+imported by: + cffi.cparser + • pycparser + +
+ +
+ +
+ + pycparser.ply +Package
+imports: + pycparser + • pycparser.ply + • pycparser.ply.lex + • pycparser.ply.yacc + +
+ + +
+ +
+ + pycparser.ply.lex +SourceModule
+imports: + copy + • inspect + • os + • pycparser.ply + • re + • sys + • types + +
+
+imported by: + pycparser.c_lexer + • pycparser.ply + • pycparser.ply.yacc + +
+ +
+ +
+ + pycparser.ply.yacc +SourceModule
+imports: + base64 + • cPickle + • inspect + • os.path + • pickle + • pycparser.ply + • pycparser.ply.lex + • re + • sys + • types + • warnings + +
+
+imported by: + pycparser.c_parser + • pycparser.ply + +
+ +
+ +
+ + pycparser.plyparser +SourceModule
+imports: + pycparser + • warnings + +
+
+imported by: + pycparser.c_parser + +
+ +
+ +
+ + pycparser.yacctab +SourceModule
+imports: + pycparser + +
+
+imported by: + cffi.cparser + • pycparser + +
+ +
+ +
+ + pydoc +SourceModule
+imports: + __future__ + • ast + • builtins + • collections + • email.message + • getopt + • http.server + • importlib._bootstrap + • importlib._bootstrap_external + • importlib.machinery + • importlib.util + • inspect + • io + • os + • pkgutil + • platform + • pydoc_data.topics + • re + • reprlib + • select + • subprocess + • sys + • sysconfig + • tempfile + • textwrap + • threading + • time + • tokenize + • traceback + • tty + • urllib.parse + • warnings + • webbrowser + +
+ + +
+ +
+ + pydoc_data +Package
+imported by: + pydoc_data.topics + +
+ +
+ +
+ + pydoc_data.topics +SourceModule
+imports: + pydoc_data + +
+
+imported by: + pydoc + +
+ +
+ +
+ + pyexpat /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/pyexpat.cpython-312-darwin.so
+imported by: + _elementtree + • xml.etree.ElementTree + • xml.parsers.expat + +
+ +
+ +
+ + pyimod02_importers +MissingModule
+imported by: + pyi_rth_pkgres.py + • pyi_rth_pkgutil.py + +
+ +
+ +
+ + pylab +MissingModule + +
+ +
+ + pytest +MissingModule
+imported by: + pandas._testing + • pandas._testing._io + • pandas.conftest + • pandas.tests.api.test_api + • pandas.tests.apply.test_frame_apply + • pandas.tests.apply.test_frame_apply_relabeling + • pandas.tests.apply.test_frame_transform + • pandas.tests.apply.test_invalid_arg + • pandas.tests.apply.test_numba + • pandas.tests.apply.test_series_apply + • pandas.tests.apply.test_series_transform + • pandas.tests.apply.test_str + • pandas.tests.arithmetic.common + • pandas.tests.arithmetic.conftest + • pandas.tests.arithmetic.test_array_ops + • pandas.tests.arithmetic.test_datetime64 + • pandas.tests.arithmetic.test_interval + • pandas.tests.arithmetic.test_numeric + • pandas.tests.arithmetic.test_object + • pandas.tests.arithmetic.test_period + • pandas.tests.arithmetic.test_timedelta64 + • pandas.tests.arrays.boolean.test_arithmetic + • pandas.tests.arrays.boolean.test_astype + • pandas.tests.arrays.boolean.test_comparison + • pandas.tests.arrays.boolean.test_construction + • pandas.tests.arrays.boolean.test_function + • pandas.tests.arrays.boolean.test_indexing + • pandas.tests.arrays.boolean.test_logical + • pandas.tests.arrays.boolean.test_reduction + • pandas.tests.arrays.categorical.test_algos + • pandas.tests.arrays.categorical.test_analytics + • pandas.tests.arrays.categorical.test_api + • pandas.tests.arrays.categorical.test_astype + • pandas.tests.arrays.categorical.test_constructors + • pandas.tests.arrays.categorical.test_dtypes + • pandas.tests.arrays.categorical.test_indexing + • pandas.tests.arrays.categorical.test_map + • pandas.tests.arrays.categorical.test_missing + • pandas.tests.arrays.categorical.test_operators + • pandas.tests.arrays.categorical.test_replace + • pandas.tests.arrays.categorical.test_repr + • pandas.tests.arrays.categorical.test_sorting + • pandas.tests.arrays.categorical.test_take + • pandas.tests.arrays.categorical.test_warnings + • pandas.tests.arrays.datetimes.test_constructors + • pandas.tests.arrays.datetimes.test_cumulative + • pandas.tests.arrays.datetimes.test_reductions + • pandas.tests.arrays.floating.conftest + • pandas.tests.arrays.floating.test_arithmetic + • pandas.tests.arrays.floating.test_astype + • pandas.tests.arrays.floating.test_comparison + • pandas.tests.arrays.floating.test_concat + • pandas.tests.arrays.floating.test_construction + • pandas.tests.arrays.floating.test_function + • pandas.tests.arrays.floating.test_repr + • pandas.tests.arrays.floating.test_to_numpy + • pandas.tests.arrays.integer.conftest + • pandas.tests.arrays.integer.test_arithmetic + • pandas.tests.arrays.integer.test_comparison + • pandas.tests.arrays.integer.test_concat + • pandas.tests.arrays.integer.test_construction + • pandas.tests.arrays.integer.test_dtypes + • pandas.tests.arrays.integer.test_function + • pandas.tests.arrays.integer.test_reduction + • pandas.tests.arrays.integer.test_repr + • pandas.tests.arrays.interval.test_astype + • pandas.tests.arrays.interval.test_interval + • pandas.tests.arrays.interval.test_interval_pyarrow + • pandas.tests.arrays.interval.test_overlaps + • pandas.tests.arrays.masked.test_arithmetic + • pandas.tests.arrays.masked.test_arrow_compat + • pandas.tests.arrays.masked.test_function + • pandas.tests.arrays.masked.test_indexing + • pandas.tests.arrays.masked_shared + • pandas.tests.arrays.numpy_.test_numpy + • pandas.tests.arrays.period.test_arrow_compat + • pandas.tests.arrays.period.test_astype + • pandas.tests.arrays.period.test_constructors + • pandas.tests.arrays.period.test_reductions + • pandas.tests.arrays.sparse.test_accessor + • pandas.tests.arrays.sparse.test_arithmetics + • pandas.tests.arrays.sparse.test_array + • pandas.tests.arrays.sparse.test_astype + • pandas.tests.arrays.sparse.test_combine_concat + • pandas.tests.arrays.sparse.test_constructors + • pandas.tests.arrays.sparse.test_dtype + • pandas.tests.arrays.sparse.test_indexing + • pandas.tests.arrays.sparse.test_libsparse + • pandas.tests.arrays.sparse.test_reductions + • pandas.tests.arrays.sparse.test_unary + • pandas.tests.arrays.string_.test_string + • pandas.tests.arrays.string_.test_string_arrow + • pandas.tests.arrays.test_array + • pandas.tests.arrays.test_datetimelike + • pandas.tests.arrays.test_datetimes + • pandas.tests.arrays.test_period + • pandas.tests.arrays.test_timedeltas + • pandas.tests.arrays.timedeltas.test_constructors + • pandas.tests.arrays.timedeltas.test_cumulative + • pandas.tests.arrays.timedeltas.test_reductions + • pandas.tests.base.test_constructors + • pandas.tests.base.test_conversion + • pandas.tests.base.test_fillna + • pandas.tests.base.test_misc + • pandas.tests.base.test_transpose + • pandas.tests.base.test_unique + • pandas.tests.base.test_value_counts + • pandas.tests.computation.test_compat + • pandas.tests.computation.test_eval + • pandas.tests.config.test_config + • pandas.tests.config.test_localization + • pandas.tests.copy_view.index.test_datetimeindex + • pandas.tests.copy_view.index.test_index + • pandas.tests.copy_view.index.test_periodindex + • pandas.tests.copy_view.index.test_timedeltaindex + • pandas.tests.copy_view.test_array + • pandas.tests.copy_view.test_astype + • pandas.tests.copy_view.test_chained_assignment_deprecation + • pandas.tests.copy_view.test_constructors + • pandas.tests.copy_view.test_core_functionalities + • pandas.tests.copy_view.test_functions + • pandas.tests.copy_view.test_indexing + • pandas.tests.copy_view.test_internals + • pandas.tests.copy_view.test_interp_fillna + • pandas.tests.copy_view.test_methods + • pandas.tests.copy_view.test_replace + • pandas.tests.dtypes.cast.test_construct_from_scalar + • pandas.tests.dtypes.cast.test_construct_ndarray + • pandas.tests.dtypes.cast.test_construct_object_arr + • pandas.tests.dtypes.cast.test_downcast + • pandas.tests.dtypes.cast.test_find_common_type + • pandas.tests.dtypes.cast.test_infer_datetimelike + • pandas.tests.dtypes.cast.test_infer_dtype + • pandas.tests.dtypes.cast.test_maybe_box_native + • pandas.tests.dtypes.cast.test_promote + • pandas.tests.dtypes.test_common + • pandas.tests.dtypes.test_concat + • pandas.tests.dtypes.test_dtypes + • pandas.tests.dtypes.test_generic + • pandas.tests.dtypes.test_inference + • pandas.tests.dtypes.test_missing + • pandas.tests.extension.base.accumulate + • pandas.tests.extension.base.casting + • pandas.tests.extension.base.constructors + • pandas.tests.extension.base.dim2 + • pandas.tests.extension.base.dtype + • pandas.tests.extension.base.getitem + • pandas.tests.extension.base.groupby + • pandas.tests.extension.base.interface + • pandas.tests.extension.base.io + • pandas.tests.extension.base.methods + • pandas.tests.extension.base.missing + • pandas.tests.extension.base.ops + • pandas.tests.extension.base.printing + • pandas.tests.extension.base.reduce + • pandas.tests.extension.base.reshaping + • pandas.tests.extension.base.setitem + • pandas.tests.extension.conftest + • pandas.tests.extension.decimal.test_decimal + • pandas.tests.extension.json.test_json + • pandas.tests.extension.list.test_list + • pandas.tests.extension.test_arrow + • pandas.tests.extension.test_categorical + • pandas.tests.extension.test_common + • pandas.tests.extension.test_datetime + • pandas.tests.extension.test_extension + • pandas.tests.extension.test_interval + • pandas.tests.extension.test_masked + • pandas.tests.extension.test_numpy + • pandas.tests.extension.test_period + • pandas.tests.extension.test_sparse + • pandas.tests.extension.test_string + • pandas.tests.frame.conftest + • pandas.tests.frame.constructors.test_from_dict + • pandas.tests.frame.constructors.test_from_records + • pandas.tests.frame.indexing.test_coercion + • pandas.tests.frame.indexing.test_delitem + • pandas.tests.frame.indexing.test_get + • pandas.tests.frame.indexing.test_get_value + • pandas.tests.frame.indexing.test_getitem + • pandas.tests.frame.indexing.test_indexing + • pandas.tests.frame.indexing.test_insert + • pandas.tests.frame.indexing.test_setitem + • pandas.tests.frame.indexing.test_take + • pandas.tests.frame.indexing.test_where + • pandas.tests.frame.indexing.test_xs + • pandas.tests.frame.methods.test_add_prefix_suffix + • pandas.tests.frame.methods.test_align + • pandas.tests.frame.methods.test_asfreq + • pandas.tests.frame.methods.test_asof + • pandas.tests.frame.methods.test_assign + • pandas.tests.frame.methods.test_astype + • pandas.tests.frame.methods.test_at_time + • pandas.tests.frame.methods.test_between_time + • pandas.tests.frame.methods.test_clip + • pandas.tests.frame.methods.test_combine + • pandas.tests.frame.methods.test_combine_first + • pandas.tests.frame.methods.test_compare + • pandas.tests.frame.methods.test_convert_dtypes + • pandas.tests.frame.methods.test_copy + • pandas.tests.frame.methods.test_cov_corr + • pandas.tests.frame.methods.test_describe + • pandas.tests.frame.methods.test_diff + • pandas.tests.frame.methods.test_dot + • pandas.tests.frame.methods.test_drop + • pandas.tests.frame.methods.test_drop_duplicates + • pandas.tests.frame.methods.test_droplevel + • pandas.tests.frame.methods.test_dropna + • pandas.tests.frame.methods.test_dtypes + • pandas.tests.frame.methods.test_duplicated + • pandas.tests.frame.methods.test_explode + • pandas.tests.frame.methods.test_fillna + • pandas.tests.frame.methods.test_filter + • pandas.tests.frame.methods.test_first_and_last + • pandas.tests.frame.methods.test_first_valid_index + • pandas.tests.frame.methods.test_info + • pandas.tests.frame.methods.test_interpolate + • pandas.tests.frame.methods.test_is_homogeneous_dtype + • pandas.tests.frame.methods.test_isetitem + • pandas.tests.frame.methods.test_isin + • pandas.tests.frame.methods.test_join + • pandas.tests.frame.methods.test_map + • pandas.tests.frame.methods.test_matmul + • pandas.tests.frame.methods.test_nlargest + • pandas.tests.frame.methods.test_pct_change + • pandas.tests.frame.methods.test_pipe + • pandas.tests.frame.methods.test_quantile + • pandas.tests.frame.methods.test_rank + • pandas.tests.frame.methods.test_reindex + • pandas.tests.frame.methods.test_reindex_like + • pandas.tests.frame.methods.test_rename + • pandas.tests.frame.methods.test_rename_axis + • pandas.tests.frame.methods.test_reorder_levels + • pandas.tests.frame.methods.test_replace + • pandas.tests.frame.methods.test_reset_index + • pandas.tests.frame.methods.test_round + • pandas.tests.frame.methods.test_sample + • pandas.tests.frame.methods.test_select_dtypes + • pandas.tests.frame.methods.test_set_axis + • pandas.tests.frame.methods.test_set_index + • pandas.tests.frame.methods.test_shift + • pandas.tests.frame.methods.test_size + • pandas.tests.frame.methods.test_sort_index + • pandas.tests.frame.methods.test_sort_values + • pandas.tests.frame.methods.test_swapaxes + • pandas.tests.frame.methods.test_swaplevel + • pandas.tests.frame.methods.test_to_csv + • pandas.tests.frame.methods.test_to_dict + • pandas.tests.frame.methods.test_to_dict_of_blocks + • pandas.tests.frame.methods.test_to_period + • pandas.tests.frame.methods.test_to_records + • pandas.tests.frame.methods.test_to_timestamp + • pandas.tests.frame.methods.test_transpose + • pandas.tests.frame.methods.test_truncate + • pandas.tests.frame.methods.test_tz_convert + • pandas.tests.frame.methods.test_tz_localize + • pandas.tests.frame.methods.test_update + • pandas.tests.frame.methods.test_value_counts + • pandas.tests.frame.methods.test_values + • pandas.tests.frame.test_api + • pandas.tests.frame.test_arithmetic + • pandas.tests.frame.test_arrow_interface + • pandas.tests.frame.test_block_internals + • pandas.tests.frame.test_constructors + • pandas.tests.frame.test_cumulative + • pandas.tests.frame.test_iteration + • pandas.tests.frame.test_logical_ops + • pandas.tests.frame.test_nonunique_indexes + • pandas.tests.frame.test_query_eval + • pandas.tests.frame.test_reductions + • pandas.tests.frame.test_repr + • pandas.tests.frame.test_stack_unstack + • pandas.tests.frame.test_subclass + • pandas.tests.frame.test_ufunc + • pandas.tests.frame.test_unary + • pandas.tests.frame.test_validate + • pandas.tests.generic.test_duplicate_labels + • pandas.tests.generic.test_finalize + • pandas.tests.generic.test_frame + • pandas.tests.generic.test_generic + • pandas.tests.generic.test_label_or_level_utils + • pandas.tests.generic.test_series + • pandas.tests.generic.test_to_xarray + • pandas.tests.groupby.aggregate.test_aggregate + • pandas.tests.groupby.aggregate.test_cython + • pandas.tests.groupby.aggregate.test_numba + • pandas.tests.groupby.aggregate.test_other + • pandas.tests.groupby.conftest + • pandas.tests.groupby.methods.test_describe + • pandas.tests.groupby.methods.test_groupby_shift_diff + • pandas.tests.groupby.methods.test_is_monotonic + • pandas.tests.groupby.methods.test_nlargest_nsmallest + • pandas.tests.groupby.methods.test_nth + • pandas.tests.groupby.methods.test_quantile + • pandas.tests.groupby.methods.test_rank + • pandas.tests.groupby.methods.test_sample + • pandas.tests.groupby.methods.test_size + • pandas.tests.groupby.methods.test_value_counts + • pandas.tests.groupby.test_all_methods + • pandas.tests.groupby.test_api + • pandas.tests.groupby.test_apply + • pandas.tests.groupby.test_bin_groupby + • pandas.tests.groupby.test_categorical + • pandas.tests.groupby.test_counting + • pandas.tests.groupby.test_cumulative + • pandas.tests.groupby.test_filters + • pandas.tests.groupby.test_groupby + • pandas.tests.groupby.test_groupby_dropna + • pandas.tests.groupby.test_groupby_subclass + • pandas.tests.groupby.test_grouping + • pandas.tests.groupby.test_index_as_string + • pandas.tests.groupby.test_indexing + • pandas.tests.groupby.test_libgroupby + • pandas.tests.groupby.test_missing + • pandas.tests.groupby.test_numba + • pandas.tests.groupby.test_numeric_only + • pandas.tests.groupby.test_raises + • pandas.tests.groupby.test_reductions + • pandas.tests.groupby.test_timegrouper + • pandas.tests.groupby.transform.test_numba + • pandas.tests.groupby.transform.test_transform + • pandas.tests.indexes.base_class.test_constructors + • pandas.tests.indexes.base_class.test_formats + • pandas.tests.indexes.base_class.test_indexing + • pandas.tests.indexes.base_class.test_reshape + • pandas.tests.indexes.base_class.test_setops + • pandas.tests.indexes.categorical.test_append + • pandas.tests.indexes.categorical.test_astype + • pandas.tests.indexes.categorical.test_category + • pandas.tests.indexes.categorical.test_constructors + • pandas.tests.indexes.categorical.test_equals + • pandas.tests.indexes.categorical.test_fillna + • pandas.tests.indexes.categorical.test_formats + • pandas.tests.indexes.categorical.test_indexing + • pandas.tests.indexes.categorical.test_map + • pandas.tests.indexes.categorical.test_reindex + • pandas.tests.indexes.categorical.test_setops + • pandas.tests.indexes.conftest + • pandas.tests.indexes.datetimelike_.test_drop_duplicates + • pandas.tests.indexes.datetimelike_.test_equals + • pandas.tests.indexes.datetimelike_.test_indexing + • pandas.tests.indexes.datetimelike_.test_nat + • pandas.tests.indexes.datetimelike_.test_sort_values + • pandas.tests.indexes.datetimes.methods.test_astype + • pandas.tests.indexes.datetimes.methods.test_delete + • pandas.tests.indexes.datetimes.methods.test_factorize + • pandas.tests.indexes.datetimes.methods.test_fillna + • pandas.tests.indexes.datetimes.methods.test_insert + • pandas.tests.indexes.datetimes.methods.test_map + • pandas.tests.indexes.datetimes.methods.test_normalize + • pandas.tests.indexes.datetimes.methods.test_repeat + • pandas.tests.indexes.datetimes.methods.test_resolution + • pandas.tests.indexes.datetimes.methods.test_round + • pandas.tests.indexes.datetimes.methods.test_shift + • pandas.tests.indexes.datetimes.methods.test_snap + • pandas.tests.indexes.datetimes.methods.test_to_period + • pandas.tests.indexes.datetimes.methods.test_tz_convert + • pandas.tests.indexes.datetimes.methods.test_tz_localize + • pandas.tests.indexes.datetimes.test_arithmetic + • pandas.tests.indexes.datetimes.test_constructors + • pandas.tests.indexes.datetimes.test_date_range + • pandas.tests.indexes.datetimes.test_datetime + • pandas.tests.indexes.datetimes.test_formats + • pandas.tests.indexes.datetimes.test_freq_attr + • pandas.tests.indexes.datetimes.test_indexing + • pandas.tests.indexes.datetimes.test_iter + • pandas.tests.indexes.datetimes.test_join + • pandas.tests.indexes.datetimes.test_ops + • pandas.tests.indexes.datetimes.test_partial_slicing + • pandas.tests.indexes.datetimes.test_pickle + • pandas.tests.indexes.datetimes.test_scalar_compat + • pandas.tests.indexes.datetimes.test_setops + • pandas.tests.indexes.datetimes.test_timezones + • pandas.tests.indexes.interval.test_astype + • pandas.tests.indexes.interval.test_constructors + • pandas.tests.indexes.interval.test_formats + • pandas.tests.indexes.interval.test_indexing + • pandas.tests.indexes.interval.test_interval + • pandas.tests.indexes.interval.test_interval_range + • pandas.tests.indexes.interval.test_interval_tree + • pandas.tests.indexes.interval.test_join + • pandas.tests.indexes.interval.test_pickle + • pandas.tests.indexes.interval.test_setops + • pandas.tests.indexes.multi.conftest + • pandas.tests.indexes.multi.test_analytics + • pandas.tests.indexes.multi.test_astype + • pandas.tests.indexes.multi.test_compat + • pandas.tests.indexes.multi.test_constructors + • pandas.tests.indexes.multi.test_conversion + • pandas.tests.indexes.multi.test_copy + • pandas.tests.indexes.multi.test_drop + • pandas.tests.indexes.multi.test_duplicates + • pandas.tests.indexes.multi.test_equivalence + • pandas.tests.indexes.multi.test_formats + • pandas.tests.indexes.multi.test_get_set + • pandas.tests.indexes.multi.test_indexing + • pandas.tests.indexes.multi.test_integrity + • pandas.tests.indexes.multi.test_isin + • pandas.tests.indexes.multi.test_join + • pandas.tests.indexes.multi.test_missing + • pandas.tests.indexes.multi.test_monotonic + • pandas.tests.indexes.multi.test_names + • pandas.tests.indexes.multi.test_partial_indexing + • pandas.tests.indexes.multi.test_pickle + • pandas.tests.indexes.multi.test_reindex + • pandas.tests.indexes.multi.test_reshape + • pandas.tests.indexes.multi.test_setops + • pandas.tests.indexes.multi.test_sorting + • pandas.tests.indexes.multi.test_take + • pandas.tests.indexes.numeric.test_astype + • pandas.tests.indexes.numeric.test_indexing + • pandas.tests.indexes.numeric.test_join + • pandas.tests.indexes.numeric.test_numeric + • pandas.tests.indexes.numeric.test_setops + • pandas.tests.indexes.object.test_astype + • pandas.tests.indexes.object.test_indexing + • pandas.tests.indexes.period.methods.test_asfreq + • pandas.tests.indexes.period.methods.test_astype + • pandas.tests.indexes.period.methods.test_insert + • pandas.tests.indexes.period.methods.test_is_full + • pandas.tests.indexes.period.methods.test_repeat + • pandas.tests.indexes.period.methods.test_shift + • pandas.tests.indexes.period.methods.test_to_timestamp + • pandas.tests.indexes.period.test_constructors + • pandas.tests.indexes.period.test_formats + • pandas.tests.indexes.period.test_freq_attr + • pandas.tests.indexes.period.test_indexing + • pandas.tests.indexes.period.test_join + • pandas.tests.indexes.period.test_partial_slicing + • pandas.tests.indexes.period.test_period + • pandas.tests.indexes.period.test_period_range + • pandas.tests.indexes.period.test_pickle + • pandas.tests.indexes.period.test_resolution + • pandas.tests.indexes.period.test_scalar_compat + • pandas.tests.indexes.period.test_searchsorted + • pandas.tests.indexes.period.test_setops + • pandas.tests.indexes.period.test_tools + • pandas.tests.indexes.ranges.test_constructors + • pandas.tests.indexes.ranges.test_indexing + • pandas.tests.indexes.ranges.test_range + • pandas.tests.indexes.ranges.test_setops + • pandas.tests.indexes.test_any_index + • pandas.tests.indexes.test_base + • pandas.tests.indexes.test_common + • pandas.tests.indexes.test_datetimelike + • pandas.tests.indexes.test_engines + • pandas.tests.indexes.test_frozen + • pandas.tests.indexes.test_index_new + • pandas.tests.indexes.test_indexing + • pandas.tests.indexes.test_numpy_compat + • pandas.tests.indexes.test_old_base + • pandas.tests.indexes.test_setops + • pandas.tests.indexes.timedeltas.methods.test_astype + • pandas.tests.indexes.timedeltas.methods.test_insert + • pandas.tests.indexes.timedeltas.methods.test_shift + • pandas.tests.indexes.timedeltas.test_constructors + • pandas.tests.indexes.timedeltas.test_formats + • pandas.tests.indexes.timedeltas.test_freq_attr + • pandas.tests.indexes.timedeltas.test_indexing + • pandas.tests.indexes.timedeltas.test_scalar_compat + • pandas.tests.indexes.timedeltas.test_searchsorted + • pandas.tests.indexes.timedeltas.test_setops + • pandas.tests.indexes.timedeltas.test_timedelta + • pandas.tests.indexes.timedeltas.test_timedelta_range + • pandas.tests.indexing.conftest + • pandas.tests.indexing.interval.test_interval + • pandas.tests.indexing.interval.test_interval_new + • pandas.tests.indexing.multiindex.test_chaining_and_caching + • pandas.tests.indexing.multiindex.test_getitem + • pandas.tests.indexing.multiindex.test_iloc + • pandas.tests.indexing.multiindex.test_indexing_slow + • pandas.tests.indexing.multiindex.test_loc + • pandas.tests.indexing.multiindex.test_multiindex + • pandas.tests.indexing.multiindex.test_partial + • pandas.tests.indexing.multiindex.test_setitem + • pandas.tests.indexing.multiindex.test_slice + • pandas.tests.indexing.multiindex.test_sorted + • pandas.tests.indexing.test_at + • pandas.tests.indexing.test_categorical + • pandas.tests.indexing.test_chaining_and_caching + • pandas.tests.indexing.test_check_indexer + • pandas.tests.indexing.test_coercion + • pandas.tests.indexing.test_datetime + • pandas.tests.indexing.test_floats + • pandas.tests.indexing.test_iloc + • pandas.tests.indexing.test_indexers + • pandas.tests.indexing.test_indexing + • pandas.tests.indexing.test_loc + • pandas.tests.indexing.test_na_indexing + • pandas.tests.indexing.test_partial + • pandas.tests.indexing.test_scalar + • pandas.tests.interchange.test_impl + • pandas.tests.interchange.test_spec_conformance + • pandas.tests.interchange.test_utils + • pandas.tests.internals.test_api + • pandas.tests.internals.test_internals + • pandas.tests.internals.test_managers + • pandas.tests.io.conftest + • pandas.tests.io.excel.test_odf + • pandas.tests.io.excel.test_odswriter + • pandas.tests.io.excel.test_openpyxl + • pandas.tests.io.excel.test_readers + • pandas.tests.io.excel.test_style + • pandas.tests.io.excel.test_writers + • pandas.tests.io.excel.test_xlrd + • pandas.tests.io.excel.test_xlsxwriter + • pandas.tests.io.formats.style.test_bar + • pandas.tests.io.formats.style.test_exceptions + • pandas.tests.io.formats.style.test_format + • pandas.tests.io.formats.style.test_highlight + • pandas.tests.io.formats.style.test_html + • pandas.tests.io.formats.style.test_matplotlib + • pandas.tests.io.formats.style.test_non_unique + • pandas.tests.io.formats.style.test_style + • pandas.tests.io.formats.style.test_to_latex + • pandas.tests.io.formats.style.test_to_string + • pandas.tests.io.formats.style.test_tooltip + • pandas.tests.io.formats.test_console + • pandas.tests.io.formats.test_css + • pandas.tests.io.formats.test_eng_formatting + • pandas.tests.io.formats.test_format + • pandas.tests.io.formats.test_to_csv + • pandas.tests.io.formats.test_to_excel + • pandas.tests.io.formats.test_to_html + • pandas.tests.io.formats.test_to_latex + • pandas.tests.io.formats.test_to_markdown + • pandas.tests.io.formats.test_to_string + • pandas.tests.io.json.conftest + • pandas.tests.io.json.test_compression + • pandas.tests.io.json.test_json_table_schema + • pandas.tests.io.json.test_json_table_schema_ext_dtype + • pandas.tests.io.json.test_normalize + • pandas.tests.io.json.test_pandas + • pandas.tests.io.json.test_readlines + • pandas.tests.io.json.test_ujson + • pandas.tests.io.parser.common.test_chunksize + • pandas.tests.io.parser.common.test_common_basic + • pandas.tests.io.parser.common.test_data_list + • pandas.tests.io.parser.common.test_decimal + • pandas.tests.io.parser.common.test_file_buffer_url + • pandas.tests.io.parser.common.test_float + • pandas.tests.io.parser.common.test_index + • pandas.tests.io.parser.common.test_inf + • pandas.tests.io.parser.common.test_ints + • pandas.tests.io.parser.common.test_iterator + • pandas.tests.io.parser.common.test_read_errors + • pandas.tests.io.parser.common.test_verbose + • pandas.tests.io.parser.conftest + • pandas.tests.io.parser.dtypes.test_categorical + • pandas.tests.io.parser.dtypes.test_dtypes_basic + • pandas.tests.io.parser.dtypes.test_empty + • pandas.tests.io.parser.test_c_parser_only + • pandas.tests.io.parser.test_comment + • pandas.tests.io.parser.test_compression + • pandas.tests.io.parser.test_concatenate_chunks + • pandas.tests.io.parser.test_converters + • pandas.tests.io.parser.test_dialect + • pandas.tests.io.parser.test_encoding + • pandas.tests.io.parser.test_header + • pandas.tests.io.parser.test_index_col + • pandas.tests.io.parser.test_mangle_dupes + • pandas.tests.io.parser.test_multi_thread + • pandas.tests.io.parser.test_na_values + • pandas.tests.io.parser.test_network + • pandas.tests.io.parser.test_parse_dates + • pandas.tests.io.parser.test_python_parser_only + • pandas.tests.io.parser.test_quoting + • pandas.tests.io.parser.test_read_fwf + • pandas.tests.io.parser.test_skiprows + • pandas.tests.io.parser.test_textreader + • pandas.tests.io.parser.test_unsupported + • pandas.tests.io.parser.test_upcast + • pandas.tests.io.parser.usecols.test_parse_dates + • pandas.tests.io.parser.usecols.test_strings + • pandas.tests.io.parser.usecols.test_usecols_basic + • pandas.tests.io.pytables.common + • pandas.tests.io.pytables.conftest + • pandas.tests.io.pytables.test_append + • pandas.tests.io.pytables.test_categorical + • pandas.tests.io.pytables.test_compat + • pandas.tests.io.pytables.test_complex + • pandas.tests.io.pytables.test_errors + • pandas.tests.io.pytables.test_file_handling + • pandas.tests.io.pytables.test_keys + • pandas.tests.io.pytables.test_put + • pandas.tests.io.pytables.test_pytables_missing + • pandas.tests.io.pytables.test_read + • pandas.tests.io.pytables.test_retain_attributes + • pandas.tests.io.pytables.test_round_trip + • pandas.tests.io.pytables.test_select + • pandas.tests.io.pytables.test_store + • pandas.tests.io.pytables.test_subclass + • pandas.tests.io.pytables.test_time_series + • pandas.tests.io.pytables.test_timezones + • pandas.tests.io.sas.test_byteswap + • pandas.tests.io.sas.test_sas + • pandas.tests.io.sas.test_sas7bdat + • pandas.tests.io.sas.test_xport + • pandas.tests.io.test_clipboard + • pandas.tests.io.test_common + • pandas.tests.io.test_compression + • pandas.tests.io.test_feather + • pandas.tests.io.test_fsspec + • pandas.tests.io.test_gcs + • pandas.tests.io.test_html + • pandas.tests.io.test_http_headers + • pandas.tests.io.test_orc + • pandas.tests.io.test_parquet + • pandas.tests.io.test_pickle + • pandas.tests.io.test_s3 + • pandas.tests.io.test_spss + • pandas.tests.io.test_sql + • pandas.tests.io.test_stata + • pandas.tests.io.xml.conftest + • pandas.tests.io.xml.test_to_xml + • pandas.tests.io.xml.test_xml + • pandas.tests.io.xml.test_xml_dtypes + • pandas.tests.libs.test_hashtable + • pandas.tests.libs.test_join + • pandas.tests.libs.test_lib + • pandas.tests.plotting.conftest + • pandas.tests.plotting.frame.test_frame + • pandas.tests.plotting.frame.test_frame_color + • pandas.tests.plotting.frame.test_frame_groupby + • pandas.tests.plotting.frame.test_frame_legend + • pandas.tests.plotting.frame.test_frame_subplots + • pandas.tests.plotting.frame.test_hist_box_by + • pandas.tests.plotting.test_backend + • pandas.tests.plotting.test_boxplot_method + • pandas.tests.plotting.test_common + • pandas.tests.plotting.test_converter + • pandas.tests.plotting.test_datetimelike + • pandas.tests.plotting.test_groupby + • pandas.tests.plotting.test_hist_method + • pandas.tests.plotting.test_misc + • pandas.tests.plotting.test_series + • pandas.tests.plotting.test_style + • pandas.tests.reductions.test_reductions + • pandas.tests.reductions.test_stat_reductions + • pandas.tests.resample.conftest + • pandas.tests.resample.test_base + • pandas.tests.resample.test_datetime_index + • pandas.tests.resample.test_period_index + • pandas.tests.resample.test_resample_api + • pandas.tests.resample.test_resampler_grouper + • pandas.tests.resample.test_time_grouper + • pandas.tests.resample.test_timedelta + • pandas.tests.reshape.concat.conftest + • pandas.tests.reshape.concat.test_append + • pandas.tests.reshape.concat.test_append_common + • pandas.tests.reshape.concat.test_concat + • pandas.tests.reshape.concat.test_dataframe + • pandas.tests.reshape.concat.test_datetimes + • pandas.tests.reshape.concat.test_empty + • pandas.tests.reshape.concat.test_index + • pandas.tests.reshape.concat.test_invalid + • pandas.tests.reshape.concat.test_series + • pandas.tests.reshape.concat.test_sort + • pandas.tests.reshape.merge.test_join + • pandas.tests.reshape.merge.test_merge + • pandas.tests.reshape.merge.test_merge_asof + • pandas.tests.reshape.merge.test_merge_cross + • pandas.tests.reshape.merge.test_merge_index_as_string + • pandas.tests.reshape.merge.test_merge_ordered + • pandas.tests.reshape.merge.test_multi + • pandas.tests.reshape.test_crosstab + • pandas.tests.reshape.test_cut + • pandas.tests.reshape.test_from_dummies + • pandas.tests.reshape.test_get_dummies + • pandas.tests.reshape.test_melt + • pandas.tests.reshape.test_pivot + • pandas.tests.reshape.test_pivot_multilevel + • pandas.tests.reshape.test_qcut + • pandas.tests.reshape.test_union_categoricals + • pandas.tests.reshape.test_util + • pandas.tests.scalar.interval.test_arithmetic + • pandas.tests.scalar.interval.test_constructors + • pandas.tests.scalar.interval.test_contains + • pandas.tests.scalar.interval.test_interval + • pandas.tests.scalar.interval.test_overlaps + • pandas.tests.scalar.period.test_arithmetic + • pandas.tests.scalar.period.test_asfreq + • pandas.tests.scalar.period.test_period + • pandas.tests.scalar.test_na_scalar + • pandas.tests.scalar.test_nat + • pandas.tests.scalar.timedelta.methods.test_as_unit + • pandas.tests.scalar.timedelta.methods.test_round + • pandas.tests.scalar.timedelta.test_arithmetic + • pandas.tests.scalar.timedelta.test_constructors + • pandas.tests.scalar.timedelta.test_formats + • pandas.tests.scalar.timedelta.test_timedelta + • pandas.tests.scalar.timestamp.methods.test_as_unit + • pandas.tests.scalar.timestamp.methods.test_normalize + • pandas.tests.scalar.timestamp.methods.test_replace + • pandas.tests.scalar.timestamp.methods.test_round + • pandas.tests.scalar.timestamp.methods.test_tz_convert + • pandas.tests.scalar.timestamp.methods.test_tz_localize + • pandas.tests.scalar.timestamp.test_arithmetic + • pandas.tests.scalar.timestamp.test_comparisons + • pandas.tests.scalar.timestamp.test_constructors + • pandas.tests.scalar.timestamp.test_formats + • pandas.tests.scalar.timestamp.test_timestamp + • pandas.tests.series.accessors.test_cat_accessor + • pandas.tests.series.accessors.test_dt_accessor + • pandas.tests.series.accessors.test_list_accessor + • pandas.tests.series.accessors.test_str_accessor + • pandas.tests.series.accessors.test_struct_accessor + • pandas.tests.series.indexing.test_datetime + • pandas.tests.series.indexing.test_delitem + • pandas.tests.series.indexing.test_get + • pandas.tests.series.indexing.test_getitem + • pandas.tests.series.indexing.test_indexing + • pandas.tests.series.indexing.test_mask + • pandas.tests.series.indexing.test_setitem + • pandas.tests.series.indexing.test_take + • pandas.tests.series.indexing.test_where + • pandas.tests.series.indexing.test_xs + • pandas.tests.series.methods.test_add_prefix_suffix + • pandas.tests.series.methods.test_align + • pandas.tests.series.methods.test_argsort + • pandas.tests.series.methods.test_asof + • pandas.tests.series.methods.test_astype + • pandas.tests.series.methods.test_between + • pandas.tests.series.methods.test_case_when + • pandas.tests.series.methods.test_clip + • pandas.tests.series.methods.test_compare + • pandas.tests.series.methods.test_convert_dtypes + • pandas.tests.series.methods.test_copy + • pandas.tests.series.methods.test_cov_corr + • pandas.tests.series.methods.test_describe + • pandas.tests.series.methods.test_diff + • pandas.tests.series.methods.test_drop + • pandas.tests.series.methods.test_drop_duplicates + • pandas.tests.series.methods.test_dropna + • pandas.tests.series.methods.test_duplicated + • pandas.tests.series.methods.test_equals + • pandas.tests.series.methods.test_explode + • pandas.tests.series.methods.test_fillna + • pandas.tests.series.methods.test_info + • pandas.tests.series.methods.test_interpolate + • pandas.tests.series.methods.test_is_unique + • pandas.tests.series.methods.test_isin + • pandas.tests.series.methods.test_item + • pandas.tests.series.methods.test_map + • pandas.tests.series.methods.test_matmul + • pandas.tests.series.methods.test_nlargest + • pandas.tests.series.methods.test_pct_change + • pandas.tests.series.methods.test_quantile + • pandas.tests.series.methods.test_rank + • pandas.tests.series.methods.test_reindex + • pandas.tests.series.methods.test_rename + • pandas.tests.series.methods.test_rename_axis + • pandas.tests.series.methods.test_repeat + • pandas.tests.series.methods.test_replace + • pandas.tests.series.methods.test_reset_index + • pandas.tests.series.methods.test_round + • pandas.tests.series.methods.test_searchsorted + • pandas.tests.series.methods.test_size + • pandas.tests.series.methods.test_sort_index + • pandas.tests.series.methods.test_sort_values + • pandas.tests.series.methods.test_to_csv + • pandas.tests.series.methods.test_to_dict + • pandas.tests.series.methods.test_to_frame + • pandas.tests.series.methods.test_to_numpy + • pandas.tests.series.methods.test_tolist + • pandas.tests.series.methods.test_truncate + • pandas.tests.series.methods.test_tz_localize + • pandas.tests.series.methods.test_unstack + • pandas.tests.series.methods.test_update + • pandas.tests.series.methods.test_value_counts + • pandas.tests.series.methods.test_values + • pandas.tests.series.methods.test_view + • pandas.tests.series.test_api + • pandas.tests.series.test_arithmetic + • pandas.tests.series.test_constructors + • pandas.tests.series.test_cumulative + • pandas.tests.series.test_formats + • pandas.tests.series.test_logical_ops + • pandas.tests.series.test_missing + • pandas.tests.series.test_npfuncs + • pandas.tests.series.test_reductions + • pandas.tests.series.test_subclass + • pandas.tests.series.test_ufunc + • pandas.tests.series.test_unary + • pandas.tests.series.test_validate + • pandas.tests.strings.conftest + • pandas.tests.strings.test_api + • pandas.tests.strings.test_case_justify + • pandas.tests.strings.test_cat + • pandas.tests.strings.test_extract + • pandas.tests.strings.test_find_replace + • pandas.tests.strings.test_split_partition + • pandas.tests.strings.test_string_array + • pandas.tests.strings.test_strings + • pandas.tests.test_aggregation + • pandas.tests.test_algos + • pandas.tests.test_common + • pandas.tests.test_downstream + • pandas.tests.test_errors + • pandas.tests.test_expressions + • pandas.tests.test_flags + • pandas.tests.test_multilevel + • pandas.tests.test_nanops + • pandas.tests.test_optional_dependency + • pandas.tests.test_register_accessor + • pandas.tests.test_sorting + • pandas.tests.test_take + • pandas.tests.tools.test_to_datetime + • pandas.tests.tools.test_to_numeric + • pandas.tests.tools.test_to_time + • pandas.tests.tools.test_to_timedelta + • pandas.tests.tseries.frequencies.test_freq_code + • pandas.tests.tseries.frequencies.test_frequencies + • pandas.tests.tseries.frequencies.test_inference + • pandas.tests.tseries.holiday.test_calendar + • pandas.tests.tseries.holiday.test_holiday + • pandas.tests.tseries.holiday.test_observance + • pandas.tests.tseries.offsets.test_business_day + • pandas.tests.tseries.offsets.test_business_hour + • pandas.tests.tseries.offsets.test_business_month + • pandas.tests.tseries.offsets.test_business_quarter + • pandas.tests.tseries.offsets.test_business_year + • pandas.tests.tseries.offsets.test_common + • pandas.tests.tseries.offsets.test_custom_business_day + • pandas.tests.tseries.offsets.test_custom_business_hour + • pandas.tests.tseries.offsets.test_custom_business_month + • pandas.tests.tseries.offsets.test_dst + • pandas.tests.tseries.offsets.test_easter + • pandas.tests.tseries.offsets.test_fiscal + • pandas.tests.tseries.offsets.test_index + • pandas.tests.tseries.offsets.test_month + • pandas.tests.tseries.offsets.test_offsets + • pandas.tests.tseries.offsets.test_offsets_properties + • pandas.tests.tseries.offsets.test_quarter + • pandas.tests.tseries.offsets.test_ticks + • pandas.tests.tseries.offsets.test_week + • pandas.tests.tseries.offsets.test_year + • pandas.tests.tslibs.test_array_to_datetime + • pandas.tests.tslibs.test_ccalendar + • pandas.tests.tslibs.test_conversion + • pandas.tests.tslibs.test_fields + • pandas.tests.tslibs.test_libfrequencies + • pandas.tests.tslibs.test_liboffsets + • pandas.tests.tslibs.test_np_datetime + • pandas.tests.tslibs.test_parse_iso8601 + • pandas.tests.tslibs.test_parsing + • pandas.tests.tslibs.test_period + • pandas.tests.tslibs.test_resolution + • pandas.tests.tslibs.test_strptime + • pandas.tests.tslibs.test_timedeltas + • pandas.tests.tslibs.test_timezones + • pandas.tests.tslibs.test_to_offset + • pandas.tests.tslibs.test_tzconversion + • pandas.tests.util.conftest + • pandas.tests.util.test_assert_almost_equal + • pandas.tests.util.test_assert_attr_equal + • pandas.tests.util.test_assert_categorical_equal + • pandas.tests.util.test_assert_extension_array_equal + • pandas.tests.util.test_assert_frame_equal + • pandas.tests.util.test_assert_index_equal + • pandas.tests.util.test_assert_interval_array_equal + • pandas.tests.util.test_assert_numpy_array_equal + • pandas.tests.util.test_assert_produces_warning + • pandas.tests.util.test_assert_series_equal + • pandas.tests.util.test_deprecate + • pandas.tests.util.test_deprecate_kwarg + • pandas.tests.util.test_hashing + • pandas.tests.util.test_numba + • pandas.tests.util.test_rewrite_warning + • pandas.tests.util.test_util + • pandas.tests.util.test_validate_args + • pandas.tests.util.test_validate_args_and_kwargs + • pandas.tests.util.test_validate_inclusive + • pandas.tests.util.test_validate_kwargs + • pandas.tests.window.conftest + • pandas.tests.window.moments.conftest + • pandas.tests.window.moments.test_moments_consistency_ewm + • pandas.tests.window.moments.test_moments_consistency_expanding + • pandas.tests.window.moments.test_moments_consistency_rolling + • pandas.tests.window.test_api + • pandas.tests.window.test_apply + • pandas.tests.window.test_base_indexer + • pandas.tests.window.test_cython_aggregations + • pandas.tests.window.test_dtypes + • pandas.tests.window.test_ewm + • pandas.tests.window.test_expanding + • pandas.tests.window.test_groupby + • pandas.tests.window.test_numba + • pandas.tests.window.test_online + • pandas.tests.window.test_pairwise + • pandas.tests.window.test_rolling + • pandas.tests.window.test_rolling_functions + • pandas.tests.window.test_rolling_quantile + • pandas.tests.window.test_rolling_skew_kurt + • pandas.tests.window.test_timeseries_window + • pandas.tests.window.test_win_type + • pandas.util._test_decorators + +
+ +
+ +
+ + python_calamine +MissingModule + +
+ +
+ + pytz +Package
+imports: + datetime + • doctest + • os.path + • pytz + • pytz.exceptions + • pytz.lazy + • pytz.tzfile + • pytz.tzinfo + • sys + +
+
+imported by: + pandas.conftest + • pandas.core.dtypes.dtypes + • pandas.core.indexes.datetimes + • pandas.tests.arithmetic.test_datetime64 + • pandas.tests.arrays.test_array + • pandas.tests.dtypes.test_dtypes + • pandas.tests.dtypes.test_inference + • pandas.tests.frame.constructors.test_from_records + • pandas.tests.frame.methods.test_at_time + • pandas.tests.frame.methods.test_to_dict + • pandas.tests.frame.test_alter_axes + • pandas.tests.frame.test_constructors + • pandas.tests.groupby.test_timegrouper + • pandas.tests.indexes.datetimes.methods.test_astype + • pandas.tests.indexes.datetimes.methods.test_insert + • pandas.tests.indexes.datetimes.methods.test_shift + • pandas.tests.indexes.datetimes.methods.test_to_period + • pandas.tests.indexes.datetimes.methods.test_tz_convert + • pandas.tests.indexes.datetimes.methods.test_tz_localize + • pandas.tests.indexes.datetimes.test_constructors + • pandas.tests.indexes.datetimes.test_date_range + • pandas.tests.indexes.datetimes.test_formats + • pandas.tests.indexes.datetimes.test_setops + • pandas.tests.indexes.datetimes.test_timezones + • pandas.tests.indexes.multi.test_reshape + • pandas.tests.io.json.test_ujson + • pandas.tests.io.parser.test_parse_dates + • pandas.tests.resample.test_datetime_index + • pandas.tests.resample.test_period_index + • pandas.tests.reshape.merge.test_merge_asof + • pandas.tests.scalar.test_nat + • pandas.tests.scalar.timestamp.methods.test_replace + • pandas.tests.scalar.timestamp.methods.test_round + • pandas.tests.scalar.timestamp.methods.test_timestamp_method + • pandas.tests.scalar.timestamp.methods.test_to_pydatetime + • pandas.tests.scalar.timestamp.methods.test_tz_localize + • pandas.tests.scalar.timestamp.test_arithmetic + • pandas.tests.scalar.timestamp.test_constructors + • pandas.tests.scalar.timestamp.test_formats + • pandas.tests.scalar.timestamp.test_timestamp + • pandas.tests.series.accessors.test_dt_accessor + • pandas.tests.series.indexing.test_datetime + • pandas.tests.series.methods.test_fillna + • pandas.tests.series.methods.test_tz_localize + • pandas.tests.tools.test_to_datetime + • pandas.tests.tseries.holiday.test_holiday + • pandas.tests.tseries.offsets.test_dst + • pandas.tests.tseries.offsets.test_offsets_properties + • pandas.tests.tslibs.test_conversion + • pandas.tests.tslibs.test_resolution + • pandas.tests.tslibs.test_timezones + • pandas.tests.tslibs.test_tzconversion + • pytz + • pytz.exceptions + • pytz.lazy + • pytz.tzfile + • pytz.tzinfo + +
+ +
+ +
+ + pytz.exceptions +SourceModule
+imports: + pytz + +
+ + +
+ +
+ + pytz.lazy +SourceModule
+imports: + UserDict + • collections + • collections.Mapping + • collections.abc + • pytz + • threading + +
+
+imported by: + pytz + +
+ +
+ +
+ + pytz.tzfile +SourceModule
+imports: + datetime + • os.path + • pprint + • pytz + • pytz.tzinfo + • struct + +
+
+imported by: + pytz + +
+ +
+ +
+ + pytz.tzinfo +SourceModule
+imports: + bisect + • datetime + • pytz + • pytz.exceptions + • sets + +
+
+imported by: + pytz + • pytz.tzfile + +
+ +
+ +
+ + pyxlsb +MissingModule
+imported by: + pandas.io.excel._pyxlsb + +
+ +
+ +
+ + qtpy +MissingModule
+imported by: + pandas.io.clipboard + +
+ +
+ + + +
+ + quopri +SourceModule
+imports: + binascii + • getopt + • io + • sys + +
+
+imported by: + email.encoders + • email.message + • encodings.quopri_codec + +
+ +
+ + + +
+ + re +Package
+imports: + _sre + • copyreg + • enum + • functools + • re + • re._compiler + • re._constants + • re._parser + • warnings + +
+
+imported by: + PIL.EpsImagePlugin + • PIL.GimpPaletteFile + • PIL.ImImagePlugin + • PIL.Image + • PIL.ImageColor + • PIL.ImageOps + • PIL.ImtImagePlugin + • PIL.PdfParser + • PIL.PngImagePlugin + • PIL.XbmImagePlugin + • PIL.XpmImagePlugin + • _markupbase + • _osx_support + • _pydecimal + • _sre + • _strptime + • ad_user_creator.input_parser + • argparse + • ast + • base64 + • bs4.builder + • bs4.dammit + • bs4.element + • bs4.filter + • cffi.api + • cffi.cparser + • cgi + • charset_normalizer.constant + • charset_normalizer.utils + • configparser + • cryptography.hazmat.primitives.serialization.ssh + • cryptography.x509.name + • cssselect.parser + • cssselect.xpath + • csv + • ctypes._aix + • ctypes.macholib.dylib + • ctypes.macholib.framework + • ctypes.util + • dataclasses + • dateutil.parser._parser + • dateutil.parser.isoparser + • dateutil.rrule + • difflib + • doctest + • email._encoded_words + • email._header_value_parser + • email.feedparser + • email.generator + • email.header + • email.message + • email.policy + • email.quoprimime + • email.utils + • encodings.idna + • entry.py + • fnmatch + • fractions + • ftplib + • gettext + • glob + • html + • html.parser + • http.client + • http.cookiejar + • importlib.metadata + • importlib.metadata._adapters + • importlib.metadata._text + • inspect + • ipaddress + • json.decoder + • json.encoder + • json.scanner + • ldap3.protocol.formatters.formatters + • ldap3.protocol.rfc4512 + • ldap3.strategy.mockBase + • ldap3.utils.conv + • ldap3.utils.tls_backport + • locale + • logging + • lxml._elementpath + • lxml.doctestcompare + • lxml.html + • lxml.html._diffcommand + • lxml.html.diff + • lxml.html.soupparser + • numexpr.cpuinfo + • numexpr.necompiler + • numpy._core._internal + • numpy._typing._add_docstring + • numpy.f2py._backends._meson + • numpy.f2py.auxfuncs + • numpy.f2py.capi_maps + • numpy.f2py.crackfortran + • numpy.f2py.f2py2e + • numpy.f2py.symbolic + • numpy.lib._function_base_impl + • numpy.lib._npyio_impl + • numpy.lib._polynomial_impl + • numpy.lib._utils_impl + • numpy.lib._version + • numpy.lib.introspect + • numpy.ma.core + • numpy.testing._private.utils + • openpyxl.cell.cell + • openpyxl.descriptors.base + • openpyxl.formula.tokenizer + • openpyxl.formula.translate + • openpyxl.styles.colors + • openpyxl.styles.numbers + • openpyxl.utils.cell + • openpyxl.utils.datetime + • openpyxl.utils.escape + • openpyxl.utils.inference + • openpyxl.workbook.child + • openpyxl.workbook.defined_name + • openpyxl.worksheet.filters + • openpyxl.worksheet.header_footer + • openpyxl.worksheet.print_settings + • openpyxl.writer.excel + • openpyxl.xml.functions + • packaging._manylinux + • packaging._musllinux + • packaging._tokenizer + • packaging.licenses + • packaging.specifiers + • packaging.tags + • packaging.utils + • packaging.version + • pandas._config.config + • pandas._config.localization + • pandas._testing._warnings + • pandas._version + • pandas.core.array_algos.replace + • pandas.core.arrays.arrow.array + • pandas.core.arrays.string_arrow + • pandas.core.dtypes.dtypes + • pandas.core.dtypes.inference + • pandas.core.dtypes.missing + • pandas.core.generic + • pandas.core.interchange.from_dataframe + • pandas.core.internals.blocks + • pandas.core.reshape.melt + • pandas.core.strings.accessor + • pandas.core.strings.base + • pandas.core.strings.object_array + • pandas.io.common + • pandas.io.formats.css + • pandas.io.formats.excel + • pandas.io.formats.format + • pandas.io.formats.style_render + • pandas.io.html + • pandas.io.parsers.python_parser + • pandas.io.pytables + • pandas.io.sql + • pandas.tests.apply.test_invalid_arg + • pandas.tests.arrays.categorical.test_analytics + • pandas.tests.arrays.categorical.test_api + • pandas.tests.arrays.masked.test_indexing + • pandas.tests.arrays.sparse.test_array + • pandas.tests.arrays.sparse.test_dtype + • pandas.tests.arrays.string_.test_string_arrow + • pandas.tests.arrays.test_array + • pandas.tests.arrays.test_datetimelike + • pandas.tests.dtypes.test_dtypes + • pandas.tests.dtypes.test_generic + • pandas.tests.dtypes.test_inference + • pandas.tests.extension.base.groupby + • pandas.tests.extension.test_arrow + • pandas.tests.frame.indexing.test_delitem + • pandas.tests.frame.indexing.test_getitem + • pandas.tests.frame.indexing.test_indexing + • pandas.tests.frame.indexing.test_xs + • pandas.tests.frame.methods.test_astype + • pandas.tests.frame.methods.test_drop + • pandas.tests.frame.methods.test_drop_duplicates + • pandas.tests.frame.methods.test_duplicated + • pandas.tests.frame.methods.test_explode + • pandas.tests.frame.methods.test_info + • pandas.tests.frame.methods.test_replace + • pandas.tests.frame.test_arithmetic + • pandas.tests.frame.test_constructors + • pandas.tests.frame.test_logical_ops + • pandas.tests.frame.test_reductions + • pandas.tests.frame.test_stack_unstack + • pandas.tests.frame.test_ufunc + • pandas.tests.generic.test_finalize + • pandas.tests.groupby.aggregate.test_aggregate + • pandas.tests.groupby.test_groupby + • pandas.tests.groupby.test_numeric_only + • pandas.tests.groupby.test_raises + • pandas.tests.indexes.datetimes.test_date_range + • pandas.tests.indexes.datetimes.test_datetime + • pandas.tests.indexes.interval.test_astype + • pandas.tests.indexes.interval.test_indexing + • pandas.tests.indexes.interval.test_interval + • pandas.tests.indexes.multi.test_indexing + • pandas.tests.indexes.multi.test_integrity + • pandas.tests.indexes.period.methods.test_asfreq + • pandas.tests.indexes.period.test_indexing + • pandas.tests.indexes.test_any_index + • pandas.tests.indexes.test_base + • pandas.tests.indexes.test_common + • pandas.tests.indexes.test_engines + • pandas.tests.indexes.test_frozen + • pandas.tests.indexes.timedeltas.test_indexing + • pandas.tests.indexing.interval.test_interval_new + • pandas.tests.indexing.test_categorical + • pandas.tests.indexing.test_datetime + • pandas.tests.indexing.test_iloc + • pandas.tests.indexing.test_indexing + • pandas.tests.indexing.test_loc + • pandas.tests.internals.test_internals + • pandas.tests.io.excel.test_odswriter + • pandas.tests.io.excel.test_openpyxl + • pandas.tests.io.excel.test_readers + • pandas.tests.io.excel.test_writers + • pandas.tests.io.formats.style.test_style + • pandas.tests.io.formats.test_format + • pandas.tests.io.formats.test_to_html + • pandas.tests.io.formats.test_to_string + • pandas.tests.io.json.test_ujson + • pandas.tests.io.parser.test_network + • pandas.tests.io.pytables.test_append + • pandas.tests.io.pytables.test_errors + • pandas.tests.io.pytables.test_put + • pandas.tests.io.pytables.test_read + • pandas.tests.io.pytables.test_round_trip + • pandas.tests.io.test_html + • pandas.tests.libs.test_hashtable + • pandas.tests.plotting.frame.test_frame + • pandas.tests.plotting.frame.test_frame_color + • pandas.tests.plotting.frame.test_hist_box_by + • pandas.tests.plotting.test_hist_method + • pandas.tests.resample.test_resample_api + • pandas.tests.reshape.merge.test_join + • pandas.tests.reshape.merge.test_merge + • pandas.tests.reshape.merge.test_merge_ordered + • pandas.tests.reshape.test_get_dummies + • pandas.tests.reshape.test_melt + • pandas.tests.reshape.test_pivot + • pandas.tests.scalar.period.test_period + • pandas.tests.scalar.timestamp.methods.test_tz_localize + • pandas.tests.series.accessors.test_list_accessor + • pandas.tests.series.accessors.test_struct_accessor + • pandas.tests.series.indexing.test_datetime + • pandas.tests.series.indexing.test_indexing + • pandas.tests.series.methods.test_rename + • pandas.tests.series.methods.test_replace + • pandas.tests.series.test_ufunc + • pandas.tests.strings.test_cat + • pandas.tests.strings.test_extract + • pandas.tests.strings.test_find_replace + • pandas.tests.strings.test_split_partition + • pandas.tests.test_expressions + • pandas.tests.tslibs.test_parsing + • pandas.tests.tslibs.test_timedeltas + • pandas.tests.tslibs.test_to_offset + • pandas.tests.util.test_show_versions + • pandas.util._exceptions + • pandas.util.version + • pathlib + • pdb + • pickle + • pickletools + • pkg_resources + • pkgutil + • platform + • platformdirs.android + • plistlib + • posixpath + • pprint + • pycparser.c_lexer + • pycparser.ply.lex + • pycparser.ply.yacc + • pydoc + • re + • re._casefix + • re._compiler + • re._constants + • re._parser + • rlcompleter + • setuptools + • setuptools._distutils.ccompiler + • setuptools._distutils.cmd + • setuptools._distutils.command.build_ext + • setuptools._distutils.dist + • setuptools._distutils.fancy_getopt + • setuptools._distutils.filelist + • setuptools._distutils.sysconfig + • setuptools._distutils.util + • setuptools._distutils.version + • setuptools._distutils.versionpredicate + • setuptools._normalization + • setuptools._vendor.backports.tarfile + • setuptools._vendor.importlib_metadata + • setuptools._vendor.importlib_metadata._adapters + • setuptools._vendor.importlib_metadata._text + • setuptools._vendor.jaraco.text + • setuptools._vendor.packaging._manylinux + • setuptools._vendor.packaging._musllinux + • setuptools._vendor.packaging._tokenizer + • setuptools._vendor.packaging.specifiers + • setuptools._vendor.packaging.tags + • setuptools._vendor.packaging.utils + • setuptools._vendor.packaging.version + • setuptools._vendor.tomli._re + • setuptools._vendor.zipp + • setuptools._vendor.zipp.glob + • setuptools.command.bdist_egg + • setuptools.command.bdist_wheel + • setuptools.command.egg_info + • setuptools.command.sdist + • setuptools.config._validate_pyproject.error_reporting + • setuptools.config._validate_pyproject.fastjsonschema_exceptions + • setuptools.config._validate_pyproject.fastjsonschema_validations + • setuptools.config._validate_pyproject.formats + • setuptools.dist + • setuptools.extension + • setuptools.glob + • setuptools.wheel + • shlex + • soupsieve.__meta__ + • soupsieve.css_match + • soupsieve.css_parser + • soupsieve.pretty + • soupsieve.util + • sre_compile + • sre_constants + • sre_parse + • string + • sysconfig + • tarfile + • textwrap + • tokenize + • tomllib._re + • typing + • unittest.case + • unittest.loader + • urllib.parse + • urllib.request + • warnings + • wheel.cli.convert + • wheel.cli.pack + • wheel.metadata + • wheel.vendored.packaging._manylinux + • wheel.vendored.packaging._musllinux + • wheel.vendored.packaging._tokenizer + • wheel.vendored.packaging.specifiers + • wheel.vendored.packaging.tags + • wheel.vendored.packaging.utils + • wheel.vendored.packaging.version + • wheel.wheelfile + • xlrd.formatting + • xlsxwriter.chart + • xlsxwriter.utility + • xlsxwriter.workbook + • xlsxwriter.worksheet + • xlsxwriter.xmlwriter + • xml.etree.ElementPath + • xml.etree.ElementTree + • xmlrpc.server + • yaml.constructor + • yaml.reader + • yaml.resolver + • zipfile._path + • zipfile._path.glob + • zoneinfo._zoneinfo + +
+ +
+ +
+ + re._casefix +SourceModule
+imports: + re + +
+
+imported by: + entry.py + • re._compiler + +
+ +
+ +
+ + re._compiler +SourceModule
+imports: + _sre + • re + • re._casefix + • re._constants + • re._parser + • sys + +
+
+imported by: + entry.py + • re + • sre_compile + +
+ +
+ +
+ + re._constants +SourceModule
+imports: + _sre + • re + +
+
+imported by: + entry.py + • re + • re._compiler + • re._parser + • sre_constants + +
+ +
+ +
+ + re._parser +SourceModule
+imports: + re + • re._constants + • unicodedata + • warnings + +
+
+imported by: + entry.py + • re + • re._compiler + • sre_parse + +
+ +
+ +
+ + readline /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/readline.cpython-312-darwin.so
+imported by: + cmd + • code + • pdb + • rlcompleter + • site + +
+ +
+ +
+ + reprlib +SourceModule
+imports: + _thread + • builtins + • itertools + +
+
+imported by: + asyncio.base_futures + • asyncio.base_tasks + • asyncio.format_helpers + • bdb + • collections + • entry.py + • functools + • pydoc + +
+ +
+ +
+ + resource /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/resource.cpython-312-darwin.so
+imported by: + posix + +
+ +
+ +
+ + rlcompleter +SourceModule
+imports: + atexit + • builtins + • inspect + • keyword + • re + • readline + +
+
+imported by: + site + +
+ +
+ +
+ + runpy +SourceModule
+imports: + importlib.machinery + • importlib.util + • io + • os + • pkgutil + • sys + • warnings + +
+
+imported by: + multiprocessing.spawn + • pdb + +
+ +
+ +
+ + s3fs +MissingModule + +
+ +
+ + scipy +MissingModule + +
+ +
+ + secrets +SourceModule
+imports: + base64 + • hmac + • random + +
+
+imported by: + multiprocessing.shared_memory + +
+ +
+ +
+ + select /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/select.cpython-312-darwin.so
+imported by: + http.server + • pydoc + • selectors + • subprocess + +
+ +
+ +
+ + selectors +SourceModule
+imports: + abc + • collections + • collections.abc + • math + • select + • sys + +
+ + +
+ +
+ + sets +MissingModule
+imported by: + pytz.tzinfo + +
+ +
+ +
+ + setuptools +Package + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + setuptools._distutils.compat.py39 +SourceModule
+imports: + _imp + • functools + • itertools + • platform + • setuptools._distutils.compat + • sys + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + setuptools._distutils.version +SourceModule
+imports: + contextlib + • re + • setuptools._distutils + • warnings + +
+ + +
+ +
+ + setuptools._distutils.versionpredicate +SourceModule
+imports: + distutils + • operator + • re + • setuptools._distutils + • setuptools._distutils.version + +
+
+imported by: + setuptools._distutils.dist + +
+ +
+ + + +
+ + setuptools._imp +SourceModule
+imports: + importlib.machinery + • importlib.util + • os + • setuptools + • tokenize + +
+
+imported by: + setuptools + • setuptools.depends + +
+ +
+ + + +
+ + setuptools._itertools +SourceModule
+imports: + more_itertools + • setuptools + +
+
+imported by: + setuptools._entry_points + +
+ +
+ +
+ + setuptools._normalization +SourceModule
+imports: + packaging + • re + • setuptools + +
+ + +
+ + + + + +
+ + setuptools._shutil +SourceModule
+imports: + distutils + • os + • setuptools + • setuptools._distutils.log + • setuptools.compat + • setuptools.compat.py311 + • stat + • typing + +
+
+imported by: + setuptools + • setuptools.command.bdist_wheel + +
+ +
+ + + + + +
+ + setuptools._vendor.backports +Package
+imports: + setuptools._vendor + +
+ + +
+ +
+ + setuptools._vendor.backports.tarfile +Package
+imports: + argparse + • builtins + • bz2 + • copy + • grp + • gzip + • io + • lzma + • os + • pwd + • re + • setuptools._vendor.backports + • setuptools._vendor.backports.tarfile.compat.py38 + • shutil + • stat + • struct + • sys + • time + • warnings + • zlib + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + setuptools._vendor.jaraco +NamespacePackage
+imports: + setuptools._vendor + +
+
+imported by: + jaraco + • setuptools._vendor.jaraco.text + +
+ +
+ +
+ + setuptools._vendor.jaraco.context +SourceModule
+imports: + __future__ + • backports + • backports.tarfile + • contextlib + • functools + • jaraco + • operator + • os + • shutil + • subprocess + • sys + • tarfile + • tempfile + • typing + • urllib.request + • warnings + +
+
+imported by: + setuptools._vendor.jaraco.text + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + setuptools._vendor.tomli._re +SourceModule
+imports: + __future__ + • datetime + • functools + • re + • setuptools._vendor.tomli + • setuptools._vendor.tomli._types + • typing + +
+
+imported by: + setuptools._vendor.tomli._parser + +
+ +
+ + + +
+ + setuptools._vendor.zipp +Package
+imports: + contextlib + • io + • itertools + • pathlib + • posixpath + • re + • setuptools._vendor + • setuptools._vendor.zipp.compat.py310 + • setuptools._vendor.zipp.glob + • stat + • sys + • zipfile + +
+ + +
+ + + +
+ + setuptools._vendor.zipp.compat.py310 +SourceModule
+imports: + io + • setuptools._vendor.zipp.compat + • sys + +
+
+imported by: + setuptools._vendor.zipp + +
+ +
+ +
+ + setuptools._vendor.zipp.glob +SourceModule
+imports: + os + • re + • setuptools._vendor.zipp + +
+
+imported by: + setuptools._vendor.zipp + +
+ +
+ +
+ + setuptools.archive_util +SourceModule
+imports: + contextlib + • os + • posixpath + • setuptools + • setuptools._distutils.errors + • setuptools._path + • shutil + • tarfile + • zipfile + +
+
+imported by: + setuptools.wheel + +
+ +
+ + + + + +
+ + setuptools.command.bdist_egg +SourceModule + + +
+ +
+ + setuptools.command.bdist_wheel +SourceModule +
+imported by: + setuptools.dist + +
+ +
+ +
+ + setuptools.command.build +SourceModule +
+imported by: + setuptools.command.sdist + +
+ +
+ + + + + + + + + +
+ + setuptools.compat.py310 +SourceModule
+imports: + setuptools.compat + • sys + • tomli + • tomllib + +
+
+imported by: + setuptools.config.pyprojecttoml + +
+ +
+ +
+ + setuptools.compat.py311 +SourceModule
+imports: + __future__ + • _typeshed + • setuptools.compat + • shutil + • sys + • typing + • typing_extensions + +
+
+imported by: + setuptools._shutil + • setuptools.compat + +
+ +
+ +
+ + setuptools.compat.py39 +SourceModule
+imports: + setuptools.compat + • sys + +
+
+imported by: + setuptools.compat + • setuptools.unicode_utils + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + +
+ + setuptools.depends +SourceModule
+imports: + __future__ + • contextlib + • dis + • marshal + • packaging.version + • setuptools + • setuptools._imp + • sys + • types + • typing + +
+
+imported by: + setuptools + +
+ +
+ +
+ + setuptools.discovery +SourceModule +
+imported by: + setuptools + • setuptools.config.expand + • setuptools.dist + +
+ +
+ + + + + + + +
+ + setuptools.glob +SourceModule
+imports: + __future__ + • _typeshed + • collections.abc + • fnmatch + • os + • re + • setuptools + • typing + +
+
+imported by: + setuptools.command.egg_info + +
+ +
+ +
+ + setuptools.installer +SourceModule +
+imported by: + setuptools.dist + +
+ +
+ +
+ + setuptools.logging +SourceModule
+imports: + inspect + • logging + • setuptools + • setuptools._distutils.log + • setuptools.monkey + • sys + +
+
+imported by: + setuptools + +
+ +
+ +
+ + setuptools.monkey +SourceModule
+imports: + __future__ + • inspect + • platform + • setuptools + • setuptools._core_metadata + • setuptools._distutils.filelist + • sys + • types + • typing + +
+
+imported by: + setuptools + • setuptools.dist + • setuptools.extension + • setuptools.logging + +
+ +
+ +
+ + setuptools.msvc +SourceModule
+imports: + __future__ + • contextlib + • itertools + • json + • more_itertools + • os + • os.path + • platform + • setuptools + • setuptools._distutils.errors + • typing + • typing_extensions + • winreg + +
+
+imported by: + setuptools + +
+ +
+ + + +
+ + setuptools.version +SourceModule
+imports: + setuptools + • setuptools._importlib + +
+
+imported by: + setuptools + +
+ +
+ + + + + +
+ + setuptools.windows_support +SourceModule
+imports: + ctypes + • ctypes.wintypes + • platform + • setuptools + +
+
+imported by: + setuptools + • setuptools.dist + +
+ +
+ +
+ + shlex +SourceModule
+imports: + collections + • io + • os + • re + • sys + +
+
+imported by: + PIL.ImageShow + • pandas.tests.io.conftest + • pdb + • setuptools.dist + • webbrowser + +
+ +
+ + + + + +
+ + site +SourceModule
+imports: + _sitebuiltins + • atexit + • builtins + • io + • locale + • os + • readline + • rlcompleter + • sitecustomize + • stat + • sys + • textwrap + • traceback + • usercustomize + +
+ + +
+ +
+ + sitecustomize +MissingModule
+imported by: + site + +
+ +
+ +
+ + six +SourceModule
+imports: + StringIO + • __future__ + • functools + • importlib.util + • io + • itertools + • operator + • struct + • sys + • types + +
+ + +
+ +
+ + six.moves +RuntimePackage
+imports: + six + • six.moves._thread + • six.moves.range + • six.moves.winreg + +
+ + +
+ +
+ + six.moves._thread +AliasNode
+imports: + _thread + +
+
+imported by: + dateutil.rrule + • dateutil.tz._factories + • dateutil.tz.tz + • six.moves + +
+ +
+ +
+ + six.moves.range +MissingModule
+imported by: + dateutil.rrule + • six.moves + +
+ +
+ +
+ + six.moves.winreg +MissingModule
+imported by: + dateutil.tz.win + • six.moves + +
+ +
+ +
+ + sklearn +MissingModule
+imported by: + pandas.tests.test_downstream + +
+ +
+ + + +
+ + socketserver +SourceModule
+imports: + io + • os + • selectors + • socket + • sys + • threading + • time + • traceback + +
+
+imported by: + http.server + • xmlrpc.server + +
+ +
+ + + +
+ + soupsieve.__meta__ +SourceModule
+imports: + __future__ + • collections + • re + • soupsieve + +
+
+imported by: + soupsieve + +
+ +
+ +
+ + soupsieve.css_match +SourceModule
+imports: + __future__ + • bs4 + • datetime + • re + • soupsieve + • soupsieve.css_types + • soupsieve.util + • typing + • unicodedata + +
+
+imported by: + soupsieve + • soupsieve.css_parser + +
+ +
+ +
+ + soupsieve.css_parser +SourceModule
+imports: + __future__ + • functools + • re + • soupsieve + • soupsieve.css_match + • soupsieve.css_types + • soupsieve.util + • typing + • warnings + +
+
+imported by: + soupsieve + +
+ +
+ +
+ + soupsieve.css_types +SourceModule
+imports: + __future__ + • copyreg + • soupsieve + • soupsieve.pretty + • typing + +
+
+imported by: + soupsieve + • soupsieve.css_match + • soupsieve.css_parser + +
+ +
+ +
+ + soupsieve.pretty +SourceModule
+imports: + __future__ + • re + • soupsieve + • typing + +
+
+imported by: + soupsieve.css_types + +
+ +
+ +
+ + soupsieve.util +SourceModule
+imports: + __future__ + • functools + • re + • soupsieve + • typing + • warnings + +
+
+imported by: + soupsieve + • soupsieve.css_match + • soupsieve.css_parser + +
+ +
+ +
+ + sqlalchemy +MissingModule
+imported by: + pandas.io.sql + • pandas.tests.io.test_sql + +
+ +
+ +
+ + sqlite3 +Package
+imports: + sqlite3 + • sqlite3.__main__ + • sqlite3.dbapi2 + • sqlite3.dump + • warnings + +
+ + +
+ +
+ + sqlite3.__main__ +SourceModule
+imports: + argparse + • code + • sqlite3 + • sys + • textwrap + +
+
+imported by: + sqlite3 + +
+ +
+ +
+ + sqlite3.dbapi2 +SourceModule
+imports: + _sqlite3 + • collections.abc + • datetime + • sqlite3 + • time + • warnings + +
+
+imported by: + sqlite3 + +
+ +
+ +
+ + sqlite3.dump +SourceModule
+imports: + sqlite3 + +
+
+imported by: + sqlite3 + +
+ +
+ +
+ + sre_compile +SourceModule
+imports: + re + • re._compiler + • warnings + +
+
+imported by: + entry.py + +
+ +
+ +
+ + sre_constants +SourceModule
+imports: + re + • re._constants + • warnings + +
+
+imported by: + entry.py + +
+ +
+ +
+ + sre_parse +SourceModule
+imports: + re + • re._parser + • warnings + +
+
+imported by: + entry.py + +
+ +
+ +
+ + ssl +SourceModule
+imports: + _ssl + • base64 + • calendar + • collections + • enum + • errno + • os + • socket + • sys + • time + • warnings + +
+ + +
+ +
+ + stat +SourceModule
+imports: + _stat + +
+ + +
+ +
+ + statistics +SourceModule
+imports: + _statistics + • bisect + • collections + • decimal + • fractions + • functools + • itertools + • math + • numbers + • operator + • random + • sys + +
+
+imported by: + random + +
+ +
+ +
+ + string +SourceModule
+imports: + _string + • collections + • re + +
+ + +
+ +
+ + stringprep +SourceModule
+imports: + unicodedata + +
+
+imported by: + encodings.idna + • ldap3.protocol.sasl.sasl + +
+ +
+ +
+ + struct +SourceModule
+imports: + _struct + +
+
+imported by: + PIL.BlpImagePlugin + • PIL.DdsImagePlugin + • PIL.FtexImagePlugin + • PIL.IcnsImagePlugin + • PIL.Image + • PIL.ImageFile + • PIL.Jpeg2KImagePlugin + • PIL.JpegImagePlugin + • PIL.McIdasImagePlugin + • PIL.MpoImagePlugin + • PIL.MspImagePlugin + • PIL.PngImagePlugin + • PIL.SgiImagePlugin + • PIL.SpiderImagePlugin + • PIL.TiffImagePlugin + • PIL._binary + • asyncio.windows_events + • base64 + • ctypes + • ctypes.util + • dateutil.tz.tz + • dateutil.tz.win + • gettext + • gzip + • ldap3.protocol.formatters.validators + • ldap3.strategy.base + • ldap3.utils.ntlm + • multiprocessing.connection + • multiprocessing.forkserver + • multiprocessing.shared_memory + • multiprocessing.synchronize + • numpy.lib.format + • olefile.olefile + • packaging._elffile + • packaging.tags + • pandas.core.computation.scope + • pandas.io.sas.sas_xport + • pandas.io.stata + • pandas.tests.io.test_stata + • pandas.tests.libs.test_hashtable + • pandas.tests.test_algos + • pandas.util._print_versions + • pickle + • pickletools + • platform + • plistlib + • pytz.tzfile + • setuptools._vendor.backports.tarfile + • setuptools._vendor.packaging._elffile + • setuptools._vendor.packaging.tags + • setuptools.command.bdist_wheel + • six + • tarfile + • wheel.vendored.packaging._elffile + • wheel.vendored.packaging.tags + • xlrd.biffh + • xlrd.book + • xlrd.compdoc + • xlrd.formatting + • xlrd.formula + • xlrd.sheet + • xlsxwriter.utility + • zipfile + • zoneinfo._common + +
+ +
+ +
+ + subprocess +SourceModule
+imports: + _posixsubprocess + • _winapi + • builtins + • contextlib + • errno + • fcntl + • grp + • io + • locale + • msvcrt + • os + • pwd + • select + • selectors + • signal + • sys + • threading + • time + • types + • warnings + +
+ + +
+ +
+ + sys (builtin module)
+imported by: + Crypto.Util._raw_api + • Crypto.Util.py3compat + • PIL.DdsImagePlugin + • PIL.EpsImagePlugin + • PIL.IcnsImagePlugin + • PIL.Image + • PIL.ImageCms + • PIL.ImageFile + • PIL.ImageMode + • PIL.ImageQt + • PIL.ImageShow + • PIL.JpegImagePlugin + • PIL.SpiderImagePlugin + • PIL._imagingcms + • PIL._typing + • PIL.features + • _aix_support + • _collections_abc + • _compression + • _distutils_hack + • _osx_support + • _pydatetime + • _pydecimal + • _sitebuiltins + • ad_user_creator.main + • argparse + • ast + • asyncio + • asyncio.base_events + • asyncio.coroutines + • asyncio.events + • asyncio.format_helpers + • asyncio.futures + • asyncio.streams + • asyncio.unix_events + • asyncio.windows_events + • asyncio.windows_utils + • base64 + • bdb + • bs4 + • bs4.builder + • calendar + • cffi._imp_emulation + • cffi._shimmed_dist_utils + • cffi.api + • cffi.commontypes + • cffi.cparser + • cffi.ffiplatform + • cffi.lock + • cffi.pkgconfig + • cffi.recompiler + • cffi.vengine_cpy + • cffi.vengine_gen + • cffi.verifier + • cgi + • cmd + • code + • codecs + • collections + • concurrent.futures.process + • configparser + • contextlib + • cryptography.hazmat.bindings.openssl.binding + • cryptography.utils + • cryptography.x509.name + • cssselect.parser + • ctypes + • ctypes._aix + • ctypes._endian + • ctypes.macholib.dyld + • ctypes.util + • dataclasses + • dateutil + • dateutil.rrule + • dateutil.tz.tz + • defusedxml.ElementTree + • defusedxml.common + • dis + • doctest + • email._header_value_parser + • email.generator + • email.iterators + • email.policy + • encodings + • encodings.rot_13 + • encodings.utf_16 + • encodings.utf_32 + • entry.py + • enum + • fileinput + • filelock + • filelock._api + • filelock._soft + • filelock._unix + • filelock._util + • filelock._windows + • filelock.asyncio + • fractions + • ftplib + • getopt + • getpass + • gettext + • glob + • gzip + • http.client + • http.server + • importlib + • importlib._bootstrap_external + • importlib.metadata + • importlib.util + • inspect + • ldap3.utils.config + • ldap3.utils.repr + • linecache + • locale + • logging + • lxml.doctestcompare + • lxml.html._diffcommand + • lxml.html.html5parser + • lxml.isoschematron + • mimetypes + • multiprocessing + • multiprocessing.connection + • multiprocessing.context + • multiprocessing.dummy + • multiprocessing.forkserver + • multiprocessing.heap + • multiprocessing.managers + • multiprocessing.popen_spawn_win32 + • multiprocessing.process + • multiprocessing.queues + • multiprocessing.reduction + • multiprocessing.resource_sharer + • multiprocessing.resource_tracker + • multiprocessing.spawn + • multiprocessing.synchronize + • multiprocessing.util + • ntpath + • numexpr.cpuinfo + • numexpr.expressions + • numexpr.necompiler + • numexpr.tests.test_numexpr + • numpy + • numpy._core + • numpy._core._add_newdocs_scalars + • numpy._core._internal + • numpy._core.arrayprint + • numpy._core.numeric + • numpy._core.strings + • numpy._pytesttester + • numpy._typing._array_like + • numpy.ctypeslib + • numpy.f2py + • numpy.f2py._backends._distutils + • numpy.f2py._backends._meson + • numpy.f2py.auxfuncs + • numpy.f2py.cfuncs + • numpy.f2py.crackfortran + • numpy.f2py.diagnose + • numpy.f2py.f2py2e + • numpy.f2py.rules + • numpy.lib._function_base_impl + • numpy.lib._index_tricks_impl + • numpy.lib._utils_impl + • numpy.matrixlib.defmatrix + • numpy.testing._private.extbuild + • numpy.testing._private.utils + • olefile.olefile + • openpyxl.compat.strings + • optparse + • os + • packaging._manylinux + • packaging._musllinux + • packaging.markers + • packaging.metadata + • packaging.tags + • pandas._config.display + • pandas._testing + • pandas._testing._warnings + • pandas._typing + • pandas._version + • pandas.compat + • pandas.compat._constants + • pandas.compat._optional + • pandas.core.computation.scope + • pandas.core.frame + • pandas.core.generic + • pandas.core.indexes.multi + • pandas.core.indexes.range + • pandas.core.indexing + • pandas.core.series + • pandas.io.formats.info + • pandas.io.formats.printing + • pandas.io.parsers.readers + • pandas.io.sas.sas7bdat + • pandas.io.stata + • pandas.tests.arrays.categorical.test_analytics + • pandas.tests.base.test_constructors + • pandas.tests.base.test_misc + • pandas.tests.dtypes.test_inference + • pandas.tests.extension.decimal.array + • pandas.tests.extension.json.array + • pandas.tests.extension.json.test_json + • pandas.tests.frame.methods.test_duplicated + • pandas.tests.frame.methods.test_info + • pandas.tests.internals.test_managers + • pandas.tests.io.formats.test_to_csv + • pandas.tests.io.formats.test_to_string + • pandas.tests.io.generate_legacy_storage_files + • pandas.tests.io.json.test_pandas + • pandas.tests.io.parser.common.test_common_basic + • pandas.tests.io.test_compression + • pandas.tests.plotting.test_backend + • pandas.tests.plotting.test_converter + • pandas.tests.scalar.timedelta.test_timedelta + • pandas.tests.series.methods.test_astype + • pandas.tests.test_common + • pandas.tests.test_downstream + • pandas.tests.test_optional_dependency + • pandas.tests.window.test_cython_aggregations + • pandas.util._print_versions + • pandas.util._tester + • pathlib + • pdb + • pickle + • pickletools + • pkg_resources + • pkgutil + • platform + • platformdirs + • platformdirs.android + • platformdirs.api + • platformdirs.unix + • platformdirs.windows + • posixpath + • pprint + • py_compile + • pyasn1.codec.ber.decoder + • pyasn1.codec.ber.encoder + • pyasn1.debug + • pyasn1.type.base + • pyasn1.type.char + • pyasn1.type.constraint + • pyasn1.type.namedtype + • pyasn1.type.univ + • pycparser.c_ast + • pycparser.ply.lex + • pycparser.ply.yacc + • pydoc + • pyi_rth_cryptography_openssl.py + • pyi_rth_inspect.py + • pyi_rth_multiprocessing.py + • pyi_rth_pkgres.py + • pytz + • quopri + • re._compiler + • runpy + • selectors + • setuptools + • setuptools._distutils + • setuptools._distutils.ccompiler + • setuptools._distutils.cmd + • setuptools._distutils.command.build + • setuptools._distutils.command.build_ext + • setuptools._distutils.command.sdist + • setuptools._distutils.compat.py39 + • setuptools._distutils.core + • setuptools._distutils.dist + • setuptools._distutils.fancy_getopt + • setuptools._distutils.spawn + • setuptools._distutils.sysconfig + • setuptools._distutils.text_file + • setuptools._distutils.util + • setuptools._importlib + • setuptools._path + • setuptools._vendor.backports.tarfile + • setuptools._vendor.backports.tarfile.compat.py38 + • setuptools._vendor.importlib_metadata + • setuptools._vendor.importlib_metadata._compat + • setuptools._vendor.importlib_metadata.compat.py311 + • setuptools._vendor.jaraco.context + • setuptools._vendor.more_itertools.more + • setuptools._vendor.more_itertools.recipes + • setuptools._vendor.packaging._manylinux + • setuptools._vendor.packaging._musllinux + • setuptools._vendor.packaging.markers + • setuptools._vendor.packaging.tags + • setuptools._vendor.zipp + • setuptools._vendor.zipp.compat.py310 + • setuptools.command + • setuptools.command.bdist_egg + • setuptools.command.bdist_wheel + • setuptools.command.egg_info + • setuptools.compat.py310 + • setuptools.compat.py311 + • setuptools.compat.py39 + • setuptools.config._validate_pyproject.error_reporting + • setuptools.config.expand + • setuptools.depends + • setuptools.dist + • setuptools.installer + • setuptools.logging + • setuptools.monkey + • setuptools.unicode_utils + • shlex + • shutil + • site + • six + • socket + • socketserver + • sqlite3.__main__ + • ssl + • statistics + • subprocess + • sysconfig + • tarfile + • tempfile + • threading + • tokenize + • traceback + • types + • typing + • typing_extensions + • unittest.case + • unittest.loader + • unittest.main + • unittest.mock + • unittest.result + • unittest.runner + • unittest.suite + • urllib.request + • uuid + • warnings + • weakref + • webbrowser + • wheel.cli + • wheel.macosx_libfile + • wheel.vendored.packaging._manylinux + • wheel.vendored.packaging._musllinux + • wheel.vendored.packaging.markers + • wheel.vendored.packaging.tags + • xlrd + • xlrd.biffh + • xlrd.compdoc + • xlrd.timemachine + • xml.dom.domreg + • xml.etree.ElementTree + • xml.parsers.expat + • xml.sax + • xml.sax.saxutils + • xmlrpc.client + • xmlrpc.server + • yaml.constructor + • zipfile + • zipimport + +
+ +
+ + + +
+ + syslog /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/syslog.cpython-312-darwin.so
+imported by: + setuptools + +
+ +
+ +
+ + tables +MissingModule
+imported by: + pandas.io.pytables + +
+ +
+ + + + + +
+ + termios /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/termios.cpython-312-darwin.so
+imported by: + getpass + • tty + +
+ +
+ +
+ + textwrap +SourceModule
+imports: + re + +
+
+imported by: + argparse + • importlib.metadata + • importlib.metadata._adapters + • numpy._typing._add_docstring + • numpy.lib._utils_impl + • numpy.ma.core + • numpy.testing._private.extbuild + • optparse + • pandas._config.config + • pandas.core.algorithms + • pandas.core.arrays.arrow.array + • pandas.core.arrays.interval + • pandas.core.arrays.timedeltas + • pandas.core.base + • pandas.core.frame + • pandas.core.groupby.generic + • pandas.core.groupby.groupby + • pandas.core.indexes.api + • pandas.core.indexes.interval + • pandas.core.resample + • pandas.core.series + • pandas.core.strings.object_array + • pandas.core.window.doc + • pandas.core.window.ewm + • pandas.core.window.expanding + • pandas.core.window.rolling + • pandas.io.excel._base + • pandas.io.formats.html + • pandas.io.formats.info + • pandas.io.parsers.readers + • pandas.io.pytables + • pandas.tests.frame.methods.test_info + • pandas.tests.io.formats.style.test_html + • pandas.tests.io.formats.style.test_non_unique + • pandas.tests.io.formats.style.test_style + • pandas.tests.io.formats.style.test_to_latex + • pandas.tests.io.formats.style.test_to_string + • pandas.tests.io.formats.test_to_html + • pandas.tests.io.formats.test_to_latex + • pandas.tests.io.formats.test_to_string + • pandas.tests.io.test_clipboard + • pandas.tests.io.test_compression + • pandas.tests.resample.test_resampler_grouper + • pandas.tests.series.methods.test_info + • pandas.tests.test_common + • pandas.tests.util.test_deprecate + • pandas.tests.util.test_doc + • pandas.util._decorators + • pkg_resources + • pydoc + • setuptools._core_metadata + • setuptools._vendor.importlib_metadata + • setuptools._vendor.importlib_metadata._adapters + • setuptools._vendor.jaraco.text + • setuptools.command.bdist_egg + • setuptools.config._validate_pyproject.error_reporting + • setuptools.warnings + • site + • sqlite3.__main__ + • traceback + • wheel.cli.convert + • wheel.metadata + +
+ +
+ +
+ + thread +MissingModule
+imported by: + cffi.cparser + • cffi.lock + +
+ +
+ + + +
+ + threadpoolctl +MissingModule
+imported by: + numpy.lib._utils_impl + +
+ +
+ +
+ + time (builtin module)
+imports: + _strptime + +
+
+imported by: + PIL.PdfImagePlugin + • PIL.PdfParser + • _datetime + • _pydatetime + • _strptime + • asyncio.base_events + • asyncio.windows_events + • concurrent.futures._base + • datetime + • dateutil.parser._parser + • dateutil.tz.tz + • email._parseaddr + • email.generator + • email.utils + • filelock._api + • filelock.asyncio + • gc + • gzip + • http.cookiejar + • http.server + • ldap3.abstract.cursor + • ldap3.core.pooling + • ldap3.strategy.restartable + • ldap3.strategy.reusable + • ldap3.utils.ntlm + • logging + • multiprocessing.connection + • multiprocessing.managers + • multiprocessing.pool + • multiprocessing.queues + • multiprocessing.synchronize + • numpy.f2py.rules + • numpy.testing._private.utils + • pandas._libs.tslibs.timestamps + • pandas._testing.contexts + • pandas.io.clipboard + • pandas.tests.io.conftest + • pandas.tests.io.excel.test_style + • pandas.tests.io.json.test_pandas + • pandas.tests.io.json.test_ujson + • pandas.tests.io.pytables.test_store + • pandas.tests.io.test_compression + • pandas.tests.scalar.timestamp.test_timestamp + • pkg_resources + • pydoc + • queue + • random + • setuptools._vendor.backports.tarfile + • setuptools._vendor.jaraco.functools + • setuptools._vendor.more_itertools.more + • setuptools.command.egg_info + • socketserver + • sqlite3.dbapi2 + • ssl + • subprocess + • tarfile + • threading + • unittest.case + • unittest.runner + • urllib.request + • uuid + • wheel.wheelfile + • xlrd.book + • xlsxwriter.workbook + • xmlrpc.client + • zipfile + • zipimport + +
+ +
+ +
+ + token +SourceModule
+imported by: + inspect + • pandas.core.computation.parsing + • pdb + • tokenize + +
+ +
+ +
+ + tokenize +SourceModule
+imports: + _tokenize + • argparse + • builtins + • codecs + • collections + • functools + • io + • itertools + • re + • sys + • token + +
+ + +
+ +
+ + tomli +AliasNode
+imports: + setuptools._vendor.tomli + +
+
+imported by: + setuptools.compat.py310 + +
+ +
+ +
+ + tomllib +Package
+imports: + tomllib._parser + +
+
+imported by: + setuptools.compat.py310 + • tomllib._parser + • tomllib._re + • tomllib._types + +
+ +
+ +
+ + tomllib._parser +SourceModule
+imports: + __future__ + • collections.abc + • string + • tomllib + • tomllib._re + • tomllib._types + • types + • typing + +
+
+imported by: + tomllib + +
+ +
+ +
+ + tomllib._re +SourceModule
+imports: + __future__ + • datetime + • functools + • re + • tomllib + • tomllib._types + • typing + +
+
+imported by: + tomllib._parser + +
+ +
+ +
+ + tomllib._types +SourceModule
+imports: + tomllib + • typing + +
+
+imported by: + tomllib._parser + • tomllib._re + +
+ +
+ + + +
+ + tracemalloc +SourceModule
+imports: + _tracemalloc + • collections.abc + • fnmatch + • functools + • linecache + • os.path + • pickle + +
+
+imported by: + pandas.tests.libs.test_hashtable + • warnings + +
+ +
+ +
+ + traitlets +MissingModule
+imported by: + pandas.io.formats.printing + +
+ +
+ +
+ + trove_classifiers +MissingModule + +
+ +
+ + tty +SourceModule
+imports: + termios + +
+
+imported by: + pydoc + +
+ +
+ +
+ + types +SourceModule
+imports: + _collections_abc + • functools + • sys + +
+
+imported by: + PIL.Image + • PIL.ImageFilter + • PIL.ImageMath + • PIL._typing + • _weakrefset + • asyncio.coroutines + • asyncio.futures + • asyncio.queues + • asyncio.tasks + • asyncio.timeouts + • bs4.builder + • bs4.css + • bs4.dammit + • cffi.api + • cffi.model + • cffi.vengine_gen + • concurrent.futures._base + • concurrent.futures.thread + • contextlib + • copy + • cryptography.hazmat.bindings.openssl.binding + • cryptography.utils + • csv + • ctypes + • dataclasses + • difflib + • dis + • email.headerregistry + • entry.py + • enum + • fileinput + • filelock._api + • filelock.asyncio + • functools + • importlib.metadata._functools + • importlib.resources._common + • importlib.resources._legacy + • importlib.util + • inspect + • ldap3 + • logging + • multiprocessing.managers + • multiprocessing.pool + • multiprocessing.queues + • multiprocessing.shared_memory + • multiprocessing.spawn + • numexpr.cpuinfo + • numpy._core.fromnumeric + • numpy._core.function_base + • numpy._utils._inspect + • numpy.f2py.auxfuncs + • numpy.lib._utils_impl + • pandas.compat._optional + • pandas.core.util.numba_ + • pandas.io.common + • pandas.io.excel._base + • pandas.io.json._json + • pandas.io.orc + • pandas.io.parsers.readers + • pandas.io.pytables + • pandas.io.sas.sasreader + • pandas.io.stata + • pandas.plotting._core + • pandas.tests.plotting.test_backend + • pandas.tests.test_optional_dependency + • pandas.tests.util.test_assert_attr_equal + • pandas.util._exceptions + • pickle + • pkg_resources + • pkgutil + • pprint + • pycparser.ply.lex + • pycparser.ply.yacc + • queue + • setuptools._distutils.ccompiler + • setuptools._vendor.importlib_metadata + • setuptools._vendor.importlib_metadata._functools + • setuptools._vendor.importlib_metadata.compat.py311 + • setuptools._vendor.jaraco.functools + • setuptools._vendor.tomli._parser + • setuptools.command.bdist_egg + • setuptools.config._apply_pyprojecttoml + • setuptools.config.expand + • setuptools.config.pyprojecttoml + • setuptools.depends + • setuptools.monkey + • six + • subprocess + • sysconfig + • tempfile + • tomllib._parser + • typing + • typing_extensions + • unittest.case + • unittest.loader + • unittest.mock + • urllib.parse + • yaml.constructor + • yaml.representer + +
+ +
+ +
+ + typing +SourceModule
+imports: + _typing + • abc + • collections + • collections.abc + • contextlib + • copyreg + • functools + • inspect + • operator + • re + • sys + • types + • warnings + +
+
+imported by: + PIL.BlpImagePlugin + • PIL.BmpImagePlugin + • PIL.BufrStubImagePlugin + • PIL.DdsImagePlugin + • PIL.EpsImagePlugin + • PIL.GifImagePlugin + • PIL.GimpGradientFile + • PIL.GimpPaletteFile + • PIL.GribStubImagePlugin + • PIL.Hdf5StubImagePlugin + • PIL.IcnsImagePlugin + • PIL.IcoImagePlugin + • PIL.ImImagePlugin + • PIL.Image + • PIL.ImageCms + • PIL.ImageFile + • PIL.ImageFilter + • PIL.ImageMath + • PIL.ImageMode + • PIL.ImageOps + • PIL.ImagePalette + • PIL.ImageQt + • PIL.ImageSequence + • PIL.ImageShow + • PIL.ImageTk + • PIL.IptcImagePlugin + • PIL.Jpeg2KImagePlugin + • PIL.JpegImagePlugin + • PIL.MpoImagePlugin + • PIL.MspImagePlugin + • PIL.PaletteFile + • PIL.PalmImagePlugin + • PIL.PcxImagePlugin + • PIL.PdfImagePlugin + • PIL.PdfParser + • PIL.PngImagePlugin + • PIL.PpmImagePlugin + • PIL.PsdImagePlugin + • PIL.SgiImagePlugin + • PIL.SpiderImagePlugin + • PIL.TgaImagePlugin + • PIL.TiffImagePlugin + • PIL.TiffTags + • PIL.WebPImagePlugin + • PIL.WmfImagePlugin + • PIL.XbmImagePlugin + • PIL._imaging + • PIL._imagingcms + • PIL._imagingmath + • PIL._imagingtk + • PIL._typing + • PIL._util + • PIL._webp + • PIL.features + • ad_user_creator.config + • ad_user_creator.input_parser + • ad_user_creator.interactive + • ad_user_creator.ldap_client + • ad_user_creator.main + • ad_user_creator.models + • ad_user_creator.persistence + • ad_user_creator.user_service + • asyncio.timeouts + • bs4 + • bs4._deprecation + • bs4._typing + • bs4.builder + • bs4.builder._html5lib + • bs4.builder._htmlparser + • bs4.builder._lxml + • bs4.css + • bs4.dammit + • bs4.element + • bs4.exceptions + • bs4.filter + • bs4.formatter + • charset_normalizer.api + • charset_normalizer.cd + • charset_normalizer.constant + • charset_normalizer.legacy + • charset_normalizer.md + • charset_normalizer.models + • charset_normalizer.utils + • cryptography.exceptions + • cryptography.hazmat.backends + • cryptography.hazmat.bindings.openssl.binding + • cryptography.hazmat.primitives.asymmetric.dsa + • cryptography.hazmat.primitives.asymmetric.ec + • cryptography.hazmat.primitives.asymmetric.rsa + • cryptography.hazmat.primitives.asymmetric.types + • cryptography.hazmat.primitives.ciphers.base + • cryptography.hazmat.primitives.serialization.ssh + • cryptography.utils + • cryptography.x509.base + • cryptography.x509.extensions + • cryptography.x509.general_name + • cryptography.x509.name + • cryptography.x509.verification + • cssselect.parser + • cssselect.xpath + • filelock + • filelock._api + • filelock._error + • filelock._unix + • filelock._windows + • filelock.asyncio + • filelock.version + • functools + • importlib.metadata + • importlib.metadata._meta + • importlib.resources._common + • importlib.resources._legacy + • importlib.resources.abc + • numexpr.necompiler + • numpy._typing + • numpy._typing._array_like + • numpy._typing._char_codes + • numpy._typing._dtype_like + • numpy._typing._nbit + • numpy._typing._nested_sequence + • numpy._typing._scalars + • numpy._typing._shape + • numpy.lib._arraysetops_impl + • numpy.linalg._linalg + • numpy.ma.core + • numpy.polynomial._polybase + • numpy.random._generator + • numpy.random._mt19937 + • numpy.random._pcg64 + • numpy.random._philox + • numpy.random._sfc64 + • numpy.random.bit_generator + • numpy.random.mtrand + • packaging._elffile + • packaging._manylinux + • packaging._musllinux + • packaging._parser + • packaging._tokenizer + • packaging.licenses + • packaging.licenses._spdx + • packaging.markers + • packaging.metadata + • packaging.requirements + • packaging.specifiers + • packaging.tags + • packaging.utils + • packaging.version + • pandas._config.config + • pandas._config.localization + • pandas._libs.algos + • pandas._libs.arrays + • pandas._libs.groupby + • pandas._libs.hashtable + • pandas._libs.indexing + • pandas._libs.internals + • pandas._libs.interval + • pandas._libs.json + • pandas._libs.lib + • pandas._libs.ops + • pandas._libs.parsers + • pandas._libs.properties + • pandas._libs.sparse + • pandas._libs.tslibs.nattype + • pandas._libs.tslibs.offsets + • pandas._libs.tslibs.period + • pandas._libs.tslibs.timedeltas + • pandas._libs.tslibs.timestamps + • pandas._libs.tslibs.timezones + • pandas._libs.tslibs.tzconversion + • pandas._libs.window.aggregations + • pandas._testing + • pandas._testing._io + • pandas._testing._warnings + • pandas._testing.asserters + • pandas._testing.compat + • pandas._testing.contexts + • pandas._typing + • pandas._version + • pandas.compat + • pandas.compat._optional + • pandas.compat.numpy.function + • pandas.compat.pickle_compat + • pandas.conftest + • pandas.core._numba.executor + • pandas.core._numba.kernels.mean_ + • pandas.core._numba.kernels.min_max_ + • pandas.core._numba.kernels.shared + • pandas.core._numba.kernels.sum_ + • pandas.core._numba.kernels.var_ + • pandas.core.accessor + • pandas.core.algorithms + • pandas.core.apply + • pandas.core.array_algos.datetimelike_accumulations + • pandas.core.array_algos.masked_accumulations + • pandas.core.array_algos.masked_reductions + • pandas.core.array_algos.putmask + • pandas.core.array_algos.quantile + • pandas.core.array_algos.replace + • pandas.core.array_algos.take + • pandas.core.array_algos.transforms + • pandas.core.arraylike + • pandas.core.arrays._arrow_string_mixins + • pandas.core.arrays._mixins + • pandas.core.arrays._ranges + • pandas.core.arrays._utils + • pandas.core.arrays.arrow.accessors + • pandas.core.arrays.arrow.array + • pandas.core.arrays.arrow.extension_types + • pandas.core.arrays.base + • pandas.core.arrays.boolean + • pandas.core.arrays.categorical + • pandas.core.arrays.datetimelike + • pandas.core.arrays.datetimes + • pandas.core.arrays.floating + • pandas.core.arrays.integer + • pandas.core.arrays.interval + • pandas.core.arrays.masked + • pandas.core.arrays.numeric + • pandas.core.arrays.numpy_ + • pandas.core.arrays.period + • pandas.core.arrays.sparse.accessor + • pandas.core.arrays.sparse.array + • pandas.core.arrays.sparse.scipy_sparse + • pandas.core.arrays.string_ + • pandas.core.arrays.string_arrow + • pandas.core.arrays.timedeltas + • pandas.core.base + • pandas.core.common + • pandas.core.computation.align + • pandas.core.computation.engines + • pandas.core.computation.eval + • pandas.core.computation.expr + • pandas.core.computation.expressions + • pandas.core.computation.ops + • pandas.core.computation.parsing + • pandas.core.computation.pytables + • pandas.core.computation.scope + • pandas.core.config_init + • pandas.core.construction + • pandas.core.dtypes.astype + • pandas.core.dtypes.base + • pandas.core.dtypes.cast + • pandas.core.dtypes.common + • pandas.core.dtypes.concat + • pandas.core.dtypes.dtypes + • pandas.core.dtypes.generic + • pandas.core.dtypes.inference + • pandas.core.dtypes.missing + • pandas.core.flags + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.base + • pandas.core.groupby.generic + • pandas.core.groupby.groupby + • pandas.core.groupby.grouper + • pandas.core.groupby.indexing + • pandas.core.groupby.numba_ + • pandas.core.groupby.ops + • pandas.core.indexers.utils + • pandas.core.indexes.accessors + • pandas.core.indexes.api + • pandas.core.indexes.base + • pandas.core.indexes.category + • pandas.core.indexes.datetimelike + • pandas.core.indexes.datetimes + • pandas.core.indexes.extension + • pandas.core.indexes.frozen + • pandas.core.indexes.interval + • pandas.core.indexes.multi + • pandas.core.indexes.period + • pandas.core.indexes.range + • pandas.core.indexes.timedeltas + • pandas.core.indexing + • pandas.core.interchange.buffer + • pandas.core.interchange.column + • pandas.core.interchange.dataframe + • pandas.core.interchange.dataframe_protocol + • pandas.core.interchange.from_dataframe + • pandas.core.interchange.utils + • pandas.core.internals.api + • pandas.core.internals.array_manager + • pandas.core.internals.base + • pandas.core.internals.blocks + • pandas.core.internals.concat + • pandas.core.internals.construction + • pandas.core.internals.managers + • pandas.core.internals.ops + • pandas.core.methods.describe + • pandas.core.methods.selectn + • pandas.core.methods.to_dict + • pandas.core.missing + • pandas.core.nanops + • pandas.core.ops.array_ops + • pandas.core.ops.common + • pandas.core.ops.dispatch + • pandas.core.ops.invalid + • pandas.core.resample + • pandas.core.reshape.concat + • pandas.core.reshape.encoding + • pandas.core.reshape.melt + • pandas.core.reshape.merge + • pandas.core.reshape.pivot + • pandas.core.reshape.reshape + • pandas.core.reshape.tile + • pandas.core.reshape.util + • pandas.core.sample + • pandas.core.series + • pandas.core.sorting + • pandas.core.strings.accessor + • pandas.core.strings.base + • pandas.core.strings.object_array + • pandas.core.tools.datetimes + • pandas.core.tools.numeric + • pandas.core.tools.timedeltas + • pandas.core.tools.times + • pandas.core.util.hashing + • pandas.core.util.numba_ + • pandas.core.window.common + • pandas.core.window.ewm + • pandas.core.window.expanding + • pandas.core.window.numba_ + • pandas.core.window.online + • pandas.core.window.rolling + • pandas.io + • pandas.io._util + • pandas.io.clipboards + • pandas.io.common + • pandas.io.excel._base + • pandas.io.excel._calamine + • pandas.io.excel._odfreader + • pandas.io.excel._odswriter + • pandas.io.excel._openpyxl + • pandas.io.excel._pyxlsb + • pandas.io.excel._util + • pandas.io.excel._xlrd + • pandas.io.excel._xlsxwriter + • pandas.io.feather_format + • pandas.io.formats + • pandas.io.formats.css + • pandas.io.formats.csvs + • pandas.io.formats.excel + • pandas.io.formats.format + • pandas.io.formats.html + • pandas.io.formats.info + • pandas.io.formats.printing + • pandas.io.formats.string + • pandas.io.formats.style + • pandas.io.formats.style_render + • pandas.io.formats.xml + • pandas.io.gbq + • pandas.io.html + • pandas.io.json._json + • pandas.io.json._normalize + • pandas.io.json._table_schema + • pandas.io.orc + • pandas.io.parquet + • pandas.io.parsers.arrow_parser_wrapper + • pandas.io.parsers.base_parser + • pandas.io.parsers.c_parser_wrapper + • pandas.io.parsers.python_parser + • pandas.io.parsers.readers + • pandas.io.pickle + • pandas.io.pytables + • pandas.io.sas.sas7bdat + • pandas.io.sas.sas_constants + • pandas.io.sas.sas_xport + • pandas.io.sas.sasreader + • pandas.io.spss + • pandas.io.sql + • pandas.io.stata + • pandas.io.xml + • pandas.plotting._core + • pandas.plotting._matplotlib + • pandas.plotting._matplotlib.boxplot + • pandas.plotting._matplotlib.converter + • pandas.plotting._matplotlib.core + • pandas.plotting._matplotlib.groupby + • pandas.plotting._matplotlib.hist + • pandas.plotting._matplotlib.misc + • pandas.plotting._matplotlib.style + • pandas.plotting._matplotlib.timeseries + • pandas.plotting._matplotlib.tools + • pandas.plotting._misc + • pandas.tests.arrays.masked.test_arithmetic + • pandas.tests.base.common + • pandas.tests.dtypes.test_inference + • pandas.tests.extension.array_with_attr.array + • pandas.tests.extension.base.ops + • pandas.tests.extension.base.reduce + • pandas.tests.extension.date.array + • pandas.tests.extension.decimal.array + • pandas.tests.extension.json.array + • pandas.tests.extension.list.array + • pandas.tests.extension.test_interval + • pandas.tests.extension.test_period + • pandas.tests.extension.test_string + • pandas.tests.frame.common + • pandas.tests.indexing.common + • pandas.tests.io.parser.test_python_parser_only + • pandas.tests.io.test_pickle + • pandas.tests.io.test_sql + • pandas.tests.plotting.common + • pandas.tseries + • pandas.tseries.frequencies + • pandas.util._decorators + • pandas.util._doctools + • pandas.util._exceptions + • pandas.util._print_versions + • pandas.util._test_decorators + • pandas.util._validators + • pandas.util.version + • pdb + • pkg_resources + • platformdirs + • platformdirs.android + • platformdirs.api + • platformdirs.windows + • setuptools + • setuptools._distutils.cmd + • setuptools._distutils.command.bdist + • setuptools._distutils.command.check + • setuptools._distutils.command.sdist + • setuptools._distutils.dist + • setuptools._distutils.fancy_getopt + • setuptools._path + • setuptools._reqs + • setuptools._shutil + • setuptools._static + • setuptools._vendor.importlib_metadata + • setuptools._vendor.importlib_metadata._meta + • setuptools._vendor.importlib_metadata.compat.py39 + • setuptools._vendor.jaraco.context + • setuptools._vendor.packaging._elffile + • setuptools._vendor.packaging._manylinux + • setuptools._vendor.packaging._musllinux + • setuptools._vendor.packaging._parser + • setuptools._vendor.packaging._tokenizer + • setuptools._vendor.packaging.markers + • setuptools._vendor.packaging.requirements + • setuptools._vendor.packaging.specifiers + • setuptools._vendor.packaging.tags + • setuptools._vendor.packaging.utils + • setuptools._vendor.packaging.version + • setuptools._vendor.tomli._parser + • setuptools._vendor.tomli._re + • setuptools._vendor.tomli._types + • setuptools.command._requirestxt + • setuptools.command.bdist_egg + • setuptools.command.bdist_wheel + • setuptools.command.build + • setuptools.command.sdist + • setuptools.compat.py311 + • setuptools.config + • setuptools.config._apply_pyprojecttoml + • setuptools.config._validate_pyproject + • setuptools.config._validate_pyproject.error_reporting + • setuptools.config._validate_pyproject.extra_validations + • setuptools.config._validate_pyproject.formats + • setuptools.config.expand + • setuptools.config.pyprojecttoml + • setuptools.config.setupcfg + • setuptools.depends + • setuptools.discovery + • setuptools.dist + • setuptools.extension + • setuptools.glob + • setuptools.monkey + • setuptools.msvc + • setuptools.warnings + • soupsieve + • soupsieve.css_match + • soupsieve.css_parser + • soupsieve.css_types + • soupsieve.pretty + • soupsieve.util + • tomllib._parser + • tomllib._re + • tomllib._types + • typing_extensions + • wheel.macosx_libfile + • wheel.metadata + • wheel.vendored.packaging._elffile + • wheel.vendored.packaging._manylinux + • wheel.vendored.packaging._musllinux + • wheel.vendored.packaging._parser + • wheel.vendored.packaging._tokenizer + • wheel.vendored.packaging.markers + • wheel.vendored.packaging.requirements + • wheel.vendored.packaging.specifiers + • wheel.vendored.packaging.tags + • wheel.vendored.packaging.utils + • wheel.vendored.packaging.version + • wheel.wheelfile + +
+ +
+ + + + + + + +
+ + unittest._log +SourceModule
+imports: + collections + • logging + • unittest + • unittest.case + +
+
+imported by: + unittest.case + +
+ +
+ +
+ + unittest.async_case +SourceModule
+imports: + asyncio + • contextvars + • inspect + • unittest + • unittest.case + • warnings + +
+
+imported by: + unittest + +
+ +
+ +
+ + unittest.case +SourceModule
+imports: + collections + • contextlib + • difflib + • functools + • pprint + • re + • sys + • time + • traceback + • types + • unittest + • unittest._log + • unittest.result + • unittest.util + • warnings + +
+ + +
+ +
+ + unittest.loader +SourceModule
+imports: + fnmatch + • functools + • os + • re + • sys + • traceback + • types + • unittest + • unittest.case + • unittest.suite + • unittest.util + • warnings + +
+
+imported by: + unittest + • unittest.main + +
+ +
+ +
+ + unittest.main +SourceModule
+imports: + argparse + • os + • sys + • unittest + • unittest.loader + • unittest.runner + • unittest.signals + • warnings + +
+
+imported by: + unittest + +
+ +
+ +
+ + unittest.mock +SourceModule
+imports: + _io + • asyncio + • builtins + • contextlib + • functools + • inspect + • io + • pkgutil + • pprint + • sys + • threading + • types + • unittest + • unittest.util + +
+ + +
+ +
+ + unittest.result +SourceModule
+imports: + functools + • io + • sys + • traceback + • unittest + • unittest.util + +
+
+imported by: + unittest + • unittest.case + • unittest.runner + +
+ +
+ +
+ + unittest.runner +SourceModule
+imports: + sys + • time + • unittest + • unittest.case + • unittest.result + • unittest.signals + • warnings + +
+
+imported by: + unittest + • unittest.main + +
+ +
+ +
+ + unittest.signals +SourceModule
+imports: + functools + • signal + • unittest + • weakref + +
+
+imported by: + unittest + • unittest.main + • unittest.runner + +
+ +
+ +
+ + unittest.suite +SourceModule
+imports: + sys + • unittest + • unittest.case + • unittest.util + +
+
+imported by: + unittest + • unittest.loader + +
+ +
+ +
+ + unittest.util +SourceModule
+imports: + collections + • os.path + • unittest + +
+
+imported by: + unittest + • unittest.case + • unittest.loader + • unittest.mock + • unittest.result + • unittest.suite + +
+ +
+ +
+ + urllib +Package
+imports: + urllib.unquote + • urllib.urlencode + • urllib.urlopen + +
+ + +
+ + + + + +
+ + urllib.request +SourceModule
+imports: + _scproxy + • base64 + • bisect + • contextlib + • email + • email.utils + • fnmatch + • ftplib + • getpass + • hashlib + • http.client + • http.cookiejar + • io + • ipaddress + • mimetypes + • nturl2path + • os + • re + • socket + • ssl + • string + • sys + • tempfile + • time + • urllib + • urllib.error + • urllib.parse + • urllib.response + • warnings + • winreg + +
+ + +
+ +
+ + urllib.response +SourceModule
+imports: + tempfile + • urllib + +
+
+imported by: + urllib.error + • urllib.request + +
+ +
+ +
+ + urllib.unquote +MissingModule
+imported by: + ldap3.core.server + • ldap3.utils.uri + • urllib + +
+ +
+ +
+ + urllib.urlencode +MissingModule
+imported by: + lxml.html + • urllib + +
+ +
+ +
+ + urllib.urlopen +MissingModule
+imported by: + lxml.html + • urllib + +
+ +
+ +
+ + urllib2 +MissingModule
+imported by: + lxml.ElementInclude + • lxml.html.html5parser + +
+ +
+ +
+ + urlparse +MissingModule
+imported by: + lxml.ElementInclude + • lxml.html.html5parser + +
+ +
+ +
+ + usercustomize +MissingModule
+imported by: + site + +
+ +
+ + + +
+ + vms_lib +MissingModule
+imported by: + platform + +
+ +
+ +
+ + warnings +SourceModule
+imports: + _warnings + • builtins + • linecache + • re + • sys + • traceback + • tracemalloc + +
+
+imported by: + PIL.IcoImagePlugin + • PIL.Image + • PIL.JpegImagePlugin + • PIL.PngImagePlugin + • PIL.TgaImagePlugin + • PIL.TiffImagePlugin + • PIL._deprecate + • PIL.features + • _collections_abc + • _distutils_hack + • _pydatetime + • argparse + • ast + • asyncio.base_events + • asyncio.base_subprocess + • asyncio.events + • asyncio.proactor_events + • asyncio.selector_events + • asyncio.sslproto + • asyncio.streams + • asyncio.tasks + • asyncio.unix_events + • asyncio.windows_utils + • bs4 + • bs4._deprecation + • bs4.builder + • bs4.builder._html5lib + • bs4.css + • bs4.dammit + • bs4.element + • bs4.filter + • calendar + • cffi.cparser + • cffi.model + • cffi.vengine_cpy + • cgi + • charset_normalizer.legacy + • codeop + • configparser + • cryptography.hazmat.bindings.openssl.binding + • cryptography.hazmat.primitives.serialization.ssh + • cryptography.utils + • cryptography.x509.base + • cryptography.x509.name + • dateutil.parser + • dateutil.parser._parser + • dateutil.relativedelta + • dateutil.rrule + • dateutil.tz.tz + • dateutil.zoneinfo + • defusedxml + • defusedxml.ElementTree + • defusedxml.cElementTree + • email.utils + • entry.py + • enum + • fileinput + • filelock + • filelock._api + • getpass + • gettext + • gzip + • hmac + • http.cookiejar + • importlib + • importlib.abc + • importlib.metadata + • importlib.metadata._adapters + • importlib.resources._common + • importlib.resources._legacy + • locale + • logging + • multiprocessing.forkserver + • multiprocessing.pool + • multiprocessing.resource_tracker + • numexpr.cpuinfo + • numexpr.tests.test_numexpr + • numpy + • numpy.__config__ + • numpy._core + • numpy._core._internal + • numpy._core._methods + • numpy._core.arrayprint + • numpy._core.fromnumeric + • numpy._core.function_base + • numpy._core.getlimits + • numpy._core.numeric + • numpy._core.numerictypes + • numpy._core.records + • numpy._core.shape_base + • numpy._pytesttester + • numpy._utils + • numpy.core._utils + • numpy.f2py + • numpy.f2py._backends._distutils + • numpy.f2py._backends._meson + • numpy.f2py.symbolic + • numpy.fft._pocketfft + • numpy.fft.helper + • numpy.lib + • numpy.lib._arraysetops_impl + • numpy.lib._function_base_impl + • numpy.lib._histograms_impl + • numpy.lib._index_tricks_impl + • numpy.lib._nanfunctions_impl + • numpy.lib._npyio_impl + • numpy.lib._polynomial_impl + • numpy.lib._shape_base_impl + • numpy.lib._ufunclike_impl + • numpy.lib._utils_impl + • numpy.lib.format + • numpy.linalg._linalg + • numpy.linalg.linalg + • numpy.ma.core + • numpy.ma.extras + • numpy.ma.mrecords + • numpy.matlib + • numpy.matrixlib.defmatrix + • numpy.polynomial.polyutils + • numpy.testing._private.utils + • olefile.olefile + • openpyxl.compat + • openpyxl.packaging.custom + • openpyxl.packaging.relationship + • openpyxl.reader.drawings + • openpyxl.reader.excel + • openpyxl.reader.workbook + • openpyxl.styles.stylesheet + • openpyxl.workbook.child + • openpyxl.worksheet._reader + • openpyxl.worksheet._writer + • openpyxl.worksheet.header_footer + • openpyxl.worksheet.worksheet + • openpyxl.xml + • os + • packaging._manylinux + • pandas + • pandas._config.config + • pandas._testing + • pandas._testing._warnings + • pandas.arrays + • pandas.compat._optional + • pandas.compat.numpy + • pandas.core.accessor + • pandas.core.algorithms + • pandas.core.apply + • pandas.core.array_algos.masked_reductions + • pandas.core.arrays.arrow._arrow_utils + • pandas.core.arrays.base + • pandas.core.arrays.categorical + • pandas.core.arrays.datetimelike + • pandas.core.arrays.datetimes + • pandas.core.arrays.interval + • pandas.core.arrays.masked + • pandas.core.arrays.period + • pandas.core.arrays.sparse.array + • pandas.core.arrays.string_arrow + • pandas.core.base + • pandas.core.common + • pandas.core.computation.align + • pandas.core.computation.eval + • pandas.core.computation.expressions + • pandas.core.construction + • pandas.core.dtypes.astype + • pandas.core.dtypes.cast + • pandas.core.dtypes.common + • pandas.core.dtypes.concat + • pandas.core.dtypes.dtypes + • pandas.core.dtypes.missing + • pandas.core.frame + • pandas.core.generic + • pandas.core.groupby.generic + • pandas.core.groupby.groupby + • pandas.core.groupby.grouper + • pandas.core.indexes.accessors + • pandas.core.indexes.base + • pandas.core.indexes.datetimelike + • pandas.core.indexes.datetimes + • pandas.core.indexes.multi + • pandas.core.indexes.period + • pandas.core.indexes.timedeltas + • pandas.core.indexing + • pandas.core.internals + • pandas.core.internals.api + • pandas.core.internals.blocks + • pandas.core.internals.concat + • pandas.core.internals.managers + • pandas.core.methods.to_dict + • pandas.core.nanops + • pandas.core.ops.array_ops + • pandas.core.resample + • pandas.core.reshape.concat + • pandas.core.reshape.merge + • pandas.core.reshape.pivot + • pandas.core.reshape.reshape + • pandas.core.series + • pandas.core.strings.accessor + • pandas.core.tools.datetimes + • pandas.core.tools.numeric + • pandas.core.tools.timedeltas + • pandas.core.tools.times + • pandas.io.clipboard + • pandas.io.clipboards + • pandas.io.common + • pandas.io.excel._base + • pandas.io.formats.css + • pandas.io.formats.excel + • pandas.io.formats.style + • pandas.io.formats.xml + • pandas.io.gbq + • pandas.io.html + • pandas.io.json._json + • pandas.io.json._table_schema + • pandas.io.parquet + • pandas.io.parsers.arrow_parser_wrapper + • pandas.io.parsers.base_parser + • pandas.io.parsers.c_parser_wrapper + • pandas.io.parsers.python_parser + • pandas.io.parsers.readers + • pandas.io.pickle + • pandas.io.pytables + • pandas.io.sas.sas_xport + • pandas.io.sql + • pandas.io.stata + • pandas.io.xml + • pandas.plotting._matplotlib.boxplot + • pandas.plotting._matplotlib.converter + • pandas.plotting._matplotlib.core + • pandas.plotting._matplotlib.style + • pandas.plotting._matplotlib.timeseries + • pandas.plotting._matplotlib.tools + • pandas.tests.apply.test_frame_apply + • pandas.tests.arrays.sparse.test_dtype + • pandas.tests.arrays.test_datetimelike + • pandas.tests.extension.base + • pandas.tests.extension.test_masked + • pandas.tests.resample.test_period_index + • pandas.tests.util.test_assert_produces_warning + • pandas.tests.util.test_rewrite_warning + • pandas.tseries.holiday + • pandas.util._decorators + • pandas.util._exceptions + • pandas.util.version + • pathlib + • pkg_resources + • pkgutil + • pyasn1.codec.ber.decoder + • pyasn1.codec.ber.encoder + • pycparser.ply.yacc + • pycparser.plyparser + • pydoc + • pyi_rth_pkgres.py + • random + • re + • re._parser + • runpy + • setuptools._distutils._msvccompiler + • setuptools._distutils.ccompiler + • setuptools._distutils.command.bdist + • setuptools._distutils.dist + • setuptools._distutils.extension + • setuptools._distutils.log + • setuptools._distutils.spawn + • setuptools._distutils.sysconfig + • setuptools._distutils.util + • setuptools._distutils.version + • setuptools._vendor.backports.tarfile + • setuptools._vendor.jaraco.context + • setuptools._vendor.jaraco.functools + • setuptools._vendor.more_itertools.more + • setuptools._vendor.packaging._manylinux + • setuptools.command.bdist_wheel + • setuptools.warnings + • shutil + • soupsieve.css_parser + • soupsieve.util + • sqlite3 + • sqlite3.dbapi2 + • sre_compile + • sre_constants + • sre_parse + • ssl + • subprocess + • sysconfig + • tarfile + • tempfile + • threading + • typing + • typing_extensions + • unittest.async_case + • unittest.case + • unittest.loader + • unittest.main + • unittest.runner + • urllib.parse + • urllib.request + • webbrowser + • wheel.vendored.packaging._manylinux + • xlsxwriter.chart + • xlsxwriter.chart_bar + • xlsxwriter.chart_doughnut + • xlsxwriter.chart_pie + • xlsxwriter.chart_scatter + • xlsxwriter.format + • xlsxwriter.shape + • xlsxwriter.utility + • xlsxwriter.workbook + • xlsxwriter.worksheet + • xml.etree.ElementTree + • zipfile + • zoneinfo._tzpath + +
+ +
+ + + +
+ + webbrowser +SourceModule
+imports: + copy + • getopt + • os + • shlex + • shutil + • subprocess + • sys + • threading + • warnings + +
+
+imported by: + lxml.html + • pydoc + +
+ +
+ +
+ + wheel +Package
+imports: + __future__ + • wheel + +
+
+imported by: + wheel + • wheel.cli + • wheel.cli.convert + • wheel.macosx_libfile + • wheel.metadata + • wheel.util + • wheel.vendored + • wheel.wheelfile + +
+ +
+ +
+ + wheel.cli +Package
+imports: + __future__ + • argparse + • os + • sys + • wheel + • wheel.cli.convert + • wheel.cli.pack + • wheel.cli.tags + • wheel.cli.unpack + +
+ + +
+ +
+ + wheel.cli.convert +SourceModule
+imports: + __future__ + • abc + • collections + • collections.abc + • email.message + • email.parser + • email.policy + • glob + • os.path + • pathlib + • re + • textwrap + • wheel + • wheel.cli + • wheel.metadata + • wheel.vendored.packaging.tags + • wheel.wheelfile + • zipfile + +
+
+imported by: + wheel.cli + +
+ +
+ +
+ + wheel.cli.pack +SourceModule
+imports: + __future__ + • email.generator + • email.parser + • email.policy + • os.path + • re + • wheel.cli + • wheel.wheelfile + +
+
+imported by: + wheel.cli + +
+ +
+ +
+ + wheel.cli.tags +SourceModule
+imports: + __future__ + • collections.abc + • email.parser + • email.policy + • itertools + • os + • wheel.cli + • wheel.wheelfile + +
+
+imported by: + wheel.cli + +
+ +
+ +
+ + wheel.cli.unpack +SourceModule
+imports: + __future__ + • pathlib + • wheel.cli + • wheel.wheelfile + +
+
+imported by: + wheel.cli + +
+ +
+ +
+ + wheel.macosx_libfile +SourceModule
+imports: + __future__ + • ctypes + • io + • os + • sys + • typing + • wheel + +
+
+imported by: + setuptools.command.bdist_wheel + +
+ +
+ +
+ + wheel.metadata +SourceModule
+imports: + __future__ + • email.message + • email.parser + • functools + • itertools + • os.path + • re + • textwrap + • typing + • wheel + • wheel.vendored.packaging.requirements + +
+
+imported by: + wheel.cli.convert + +
+ +
+ +
+ + wheel.util +SourceModule
+imports: + __future__ + • base64 + • logging + • wheel + +
+
+imported by: + wheel.wheelfile + +
+ +
+ +
+ + wheel.vendored +Package
+imports: + wheel + +
+
+imported by: + wheel.vendored.packaging + +
+ +
+ + + +
+ + wheel.vendored.packaging._elffile +SourceModule
+imports: + enum + • os + • struct + • typing + • wheel.vendored.packaging + +
+ + +
+ +
+ + wheel.vendored.packaging._manylinux +SourceModule
+imports: + _manylinux + • collections + • contextlib + • ctypes + • functools + • os + • re + • sys + • typing + • warnings + • wheel.vendored.packaging + • wheel.vendored.packaging._elffile + +
+ + +
+ + + + + +
+ + wheel.vendored.packaging._structures +SourceModule
+imports: + wheel.vendored.packaging + +
+
+imported by: + wheel.vendored.packaging.version + +
+ +
+ + + + + + + + + + + + + + + +
+ + wheel.wheelfile +SourceModule
+imports: + __future__ + • csv + • hashlib + • io + • os.path + • re + • stat + • time + • typing + • typing_extensions + • wheel + • wheel.cli + • wheel.util + • zipfile + +
+ + +
+ +
+ + win32pdh +MissingModule
+imported by: + numpy.testing._private.utils + +
+ +
+ +
+ + winkerberos +MissingModule
+imported by: + ldap3.protocol.sasl.kerberos + +
+ +
+ + + +
+ + xarray +MissingModule + +
+ +
+ + xlrd +Package
+imports: + os + • pprint + • sys + • xlrd + • xlrd.biffh + • xlrd.book + • xlrd.compdoc + • xlrd.formatting + • xlrd.formula + • xlrd.info + • xlrd.sheet + • xlrd.timemachine + • xlrd.xldate + • zipfile + +
+ + +
+ +
+ + xlrd.biffh +SourceModule
+imports: + __future__ + • struct + • sys + • xlrd + • xlrd.timemachine + +
+
+imported by: + pandas.tests.io.excel.test_xlrd + • xlrd + • xlrd.book + • xlrd.formatting + • xlrd.formula + • xlrd.sheet + +
+ +
+ +
+ + xlrd.book +SourceModule
+imports: + __future__ + • mmap + • struct + • time + • xlrd + • xlrd.biffh + • xlrd.compdoc + • xlrd.formatting + • xlrd.formula + • xlrd.sheet + • xlrd.timemachine + +
+
+imported by: + xlrd + +
+ +
+ +
+ + xlrd.compdoc +SourceModule
+imports: + __future__ + • array + • struct + • sys + • xlrd + • xlrd.timemachine + +
+
+imported by: + xlrd + • xlrd.book + +
+ +
+ +
+ + xlrd.formatting +SourceModule
+imports: + __future__ + • re + • struct + • xlrd + • xlrd.biffh + • xlrd.timemachine + +
+
+imported by: + xlrd + • xlrd.book + • xlrd.sheet + +
+ +
+ +
+ + xlrd.formula +SourceModule
+imports: + __future__ + • copy + • operator + • struct + • xlrd + • xlrd.biffh + • xlrd.timemachine + +
+
+imported by: + xlrd + • xlrd.book + • xlrd.sheet + +
+ +
+ +
+ + xlrd.info +SourceModule
+imports: + xlrd + +
+
+imported by: + xlrd + +
+ +
+ +
+ + xlrd.sheet +SourceModule
+imports: + __future__ + • array + • struct + • xlrd + • xlrd.biffh + • xlrd.formatting + • xlrd.formula + • xlrd.timemachine + +
+
+imported by: + xlrd + • xlrd.book + +
+ +
+ +
+ + xlrd.timemachine +SourceModule
+imports: + __future__ + • cStringIO + • io + • sys + • xlrd + +
+
+imported by: + xlrd + • xlrd.biffh + • xlrd.book + • xlrd.compdoc + • xlrd.formatting + • xlrd.formula + • xlrd.sheet + +
+ +
+ +
+ + xlrd.xldate +SourceModule
+imports: + datetime + • xlrd + +
+
+imported by: + pandas.io.excel._xlrd + • xlrd + +
+ +
+ + + +
+ + xlsxwriter.app +SourceModule
+imports: + xlsxwriter + • xlsxwriter.xmlwriter + +
+
+imported by: + xlsxwriter.packager + +
+ +
+ + + +
+ + xlsxwriter.chart_area +SourceModule
+imports: + xlsxwriter + • xlsxwriter.chart + +
+
+imported by: + xlsxwriter.workbook + +
+ +
+ +
+ + xlsxwriter.chart_bar +SourceModule
+imports: + warnings + • xlsxwriter + • xlsxwriter.chart + +
+
+imported by: + xlsxwriter.workbook + +
+ +
+ +
+ + xlsxwriter.chart_column +SourceModule
+imports: + xlsxwriter + • xlsxwriter.chart + +
+
+imported by: + xlsxwriter.workbook + +
+ +
+ +
+ + xlsxwriter.chart_doughnut +SourceModule
+imports: + warnings + • xlsxwriter + • xlsxwriter.chart_pie + +
+
+imported by: + xlsxwriter.workbook + +
+ +
+ +
+ + xlsxwriter.chart_line +SourceModule
+imports: + xlsxwriter + • xlsxwriter.chart + +
+
+imported by: + xlsxwriter.workbook + +
+ +
+ +
+ + xlsxwriter.chart_pie +SourceModule
+imports: + warnings + • xlsxwriter + • xlsxwriter.chart + +
+
+imported by: + xlsxwriter + • xlsxwriter.chart_doughnut + • xlsxwriter.workbook + +
+ +
+ +
+ + xlsxwriter.chart_radar +SourceModule
+imports: + xlsxwriter + • xlsxwriter.chart + +
+
+imported by: + xlsxwriter.workbook + +
+ +
+ +
+ + xlsxwriter.chart_scatter +SourceModule
+imports: + warnings + • xlsxwriter + • xlsxwriter.chart + +
+
+imported by: + xlsxwriter.workbook + +
+ +
+ +
+ + xlsxwriter.chart_stock +SourceModule
+imports: + xlsxwriter + • xlsxwriter.chart + +
+
+imported by: + xlsxwriter.workbook + +
+ +
+ +
+ + xlsxwriter.chartsheet +SourceModule
+imports: + xlsxwriter + • xlsxwriter.drawing + • xlsxwriter.worksheet + +
+
+imported by: + xlsxwriter.workbook + +
+ +
+ +
+ + xlsxwriter.comments +SourceModule
+imports: + xlsxwriter + • xlsxwriter.utility + • xlsxwriter.xmlwriter + +
+
+imported by: + xlsxwriter.packager + +
+ +
+ +
+ + xlsxwriter.contenttypes +SourceModule
+imports: + copy + • xlsxwriter + • xlsxwriter.xmlwriter + +
+
+imported by: + xlsxwriter.packager + +
+ +
+ +
+ + xlsxwriter.core +SourceModule
+imports: + datetime + • xlsxwriter + • xlsxwriter.xmlwriter + +
+
+imported by: + xlsxwriter.packager + +
+ +
+ +
+ + xlsxwriter.custom +SourceModule
+imports: + xlsxwriter + • xlsxwriter.xmlwriter + +
+
+imported by: + xlsxwriter.packager + +
+ +
+ +
+ + xlsxwriter.drawing +SourceModule +
+imported by: + xlsxwriter.chartsheet + • xlsxwriter.worksheet + +
+ +
+ +
+ + xlsxwriter.exceptions +SourceModule
+imports: + xlsxwriter + +
+ + +
+ +
+ + xlsxwriter.feature_property_bag +SourceModule
+imports: + xlsxwriter + • xlsxwriter.xmlwriter + +
+
+imported by: + xlsxwriter.packager + +
+ +
+ +
+ + xlsxwriter.format +SourceModule
+imports: + warnings + • xlsxwriter + • xlsxwriter.xmlwriter + +
+
+imported by: + xlsxwriter.workbook + • xlsxwriter.worksheet + +
+ +
+ +
+ + xlsxwriter.metadata +SourceModule
+imports: + xlsxwriter + • xlsxwriter.xmlwriter + +
+
+imported by: + xlsxwriter.packager + +
+ +
+ + + +
+ + xlsxwriter.relationships +SourceModule
+imports: + xlsxwriter + • xlsxwriter.xmlwriter + +
+
+imported by: + xlsxwriter.packager + +
+ +
+ +
+ + xlsxwriter.rich_value +SourceModule
+imports: + xlsxwriter + • xlsxwriter.xmlwriter + +
+
+imported by: + xlsxwriter.packager + +
+ +
+ +
+ + xlsxwriter.rich_value_rel +SourceModule
+imports: + xlsxwriter + • xlsxwriter.xmlwriter + +
+
+imported by: + xlsxwriter.packager + +
+ +
+ +
+ + xlsxwriter.rich_value_structure +SourceModule
+imports: + xlsxwriter + • xlsxwriter.xmlwriter + +
+
+imported by: + xlsxwriter.packager + +
+ +
+ +
+ + xlsxwriter.rich_value_types +SourceModule
+imports: + xlsxwriter + • xlsxwriter.xmlwriter + +
+
+imported by: + xlsxwriter.packager + +
+ +
+ +
+ + xlsxwriter.shape +SourceModule
+imports: + copy + • warnings + • xlsxwriter + +
+
+imported by: + xlsxwriter.chart + • xlsxwriter.drawing + • xlsxwriter.worksheet + +
+ +
+ +
+ + xlsxwriter.sharedstrings +SourceModule
+imports: + xlsxwriter + • xlsxwriter.utility + • xlsxwriter.xmlwriter + +
+
+imported by: + xlsxwriter.packager + • xlsxwriter.workbook + +
+ +
+ +
+ + xlsxwriter.styles +SourceModule
+imports: + xlsxwriter + • xlsxwriter.xmlwriter + +
+
+imported by: + xlsxwriter.packager + +
+ +
+ +
+ + xlsxwriter.table +SourceModule
+imports: + xlsxwriter + • xlsxwriter.xmlwriter + +
+
+imported by: + xlsxwriter.packager + +
+ +
+ +
+ + xlsxwriter.theme +SourceModule
+imports: + io + • xlsxwriter + +
+
+imported by: + xlsxwriter.packager + +
+ +
+ +
+ + xlsxwriter.utility +SourceModule
+imports: + datetime + • hashlib + • os + • re + • struct + • warnings + • xlsxwriter + • xlsxwriter.exceptions + +
+ + +
+ +
+ + xlsxwriter.vml +SourceModule
+imports: + xlsxwriter + • xlsxwriter.xmlwriter + +
+
+imported by: + xlsxwriter.packager + +
+ +
+ + + +
+ + xlsxwriter.worksheet +SourceModule
+imports: + collections + • datetime + • decimal + • fractions + • functools + • io + • math + • os + • re + • tempfile + • warnings + • xlsxwriter + • xlsxwriter.drawing + • xlsxwriter.exceptions + • xlsxwriter.format + • xlsxwriter.shape + • xlsxwriter.utility + • xlsxwriter.xmlwriter + +
+
+imported by: + xlsxwriter + • xlsxwriter.chartsheet + • xlsxwriter.workbook + +
+ +
+ + + +
+ + xml +Package
+imports: + xml.sax.expatreader + • xml.sax.xmlreader + +
+
+imported by: + xml.dom + • xml.etree + • xml.parsers + • xml.sax + +
+ +
+ +
+ + xml.dom +Package
+imports: + xml + • xml.dom.domreg + • xml.dom.minidom + • xml.dom.pulldom + • xml.dom.xmlbuilder + +
+ + +
+ +
+ + xml.dom.NodeFilter +SourceModule
+imports: + xml.dom + +
+
+imported by: + xml.dom.expatbuilder + • xml.dom.xmlbuilder + +
+ +
+ +
+ + xml.dom.domreg +SourceModule
+imports: + os + • sys + • xml.dom + • xml.dom.minidom + +
+
+imported by: + xml.dom + • xml.dom.minidom + +
+ +
+ +
+ + xml.dom.expatbuilder +SourceModule + + +
+ +
+ + xml.dom.minicompat +SourceModule
+imports: + xml.dom + +
+
+imported by: + xml.dom.minidom + +
+ +
+ +
+ + xml.dom.minidom +SourceModule + + +
+ +
+ + xml.dom.pulldom +SourceModule
+imports: + io + • xml.dom + • xml.dom.minidom + • xml.sax + • xml.sax.handler + +
+
+imported by: + defusedxml.pulldom + • xml.dom + • xml.dom.minidom + +
+ +
+ +
+ + xml.dom.xmlbuilder +SourceModule
+imports: + copy + • posixpath + • urllib.parse + • urllib.request + • xml.dom + • xml.dom.NodeFilter + • xml.dom.expatbuilder + +
+
+imported by: + xml.dom + • xml.dom.expatbuilder + • xml.dom.minidom + +
+ +
+ +
+ + xml.etree +Package
+imports: + xml + • xml.etree + • xml.etree.ElementPath + • xml.etree.ElementTree + +
+ + +
+ +
+ + xml.etree.ElementInclude +SourceModule
+imports: + copy + • urllib.parse + • xml.etree + • xml.etree.ElementTree + +
+
+imported by: + _elementtree + +
+ +
+ +
+ + xml.etree.ElementPath +SourceModule
+imports: + re + • xml.etree + +
+
+imported by: + _elementtree + • xml.etree + • xml.etree.ElementTree + +
+ +
+ + + +
+ + xml.etree.cElementTree +SourceModule
+imports: + xml.etree + • xml.etree.ElementTree + +
+
+imported by: + _elementtree + • defusedxml.cElementTree + +
+ +
+ +
+ + xml.parsers +Package
+imports: + xml + +
+ + +
+ +
+ + xml.parsers.expat +SourceModule
+imports: + pyexpat + • sys + • xml.parsers + +
+ + +
+ +
+ + xml.sax +Package
+imports: + io + • os + • sys + • xml + • xml.sax + • xml.sax._exceptions + • xml.sax.expatreader + • xml.sax.handler + • xml.sax.saxutils + • xml.sax.xmlreader + +
+ + +
+ +
+ + xml.sax._exceptions +SourceModule
+imports: + xml.sax + +
+
+imported by: + xml.sax + • xml.sax.expatreader + • xml.sax.xmlreader + +
+ +
+ +
+ + xml.sax.expatreader +SourceModule +
+imported by: + defusedxml.expatreader + • xml + • xml.sax + +
+ +
+ +
+ + xml.sax.handler +SourceModule
+imports: + xml.sax + +
+
+imported by: + lxml.sax + • xml.dom.pulldom + • xml.sax + • xml.sax.expatreader + • xml.sax.saxutils + • xml.sax.xmlreader + +
+ +
+ +
+ + xml.sax.saxutils +SourceModule
+imports: + codecs + • io + • os + • sys + • urllib.parse + • urllib.request + • xml.sax + • xml.sax.handler + • xml.sax.xmlreader + +
+
+imported by: + xml.sax + • xml.sax.expatreader + • xml.sax.xmlreader + +
+ +
+ +
+ + xml.sax.xmlreader +SourceModule
+imports: + xml.sax + • xml.sax._exceptions + • xml.sax.handler + • xml.sax.saxutils + +
+
+imported by: + lxml.sax + • xml + • xml.sax + • xml.sax.expatreader + • xml.sax.saxutils + +
+ +
+ +
+ + xmlrpc +Package
+imports: + xmlrpc.server + +
+
+imported by: + defusedxml.xmlrpc + • xmlrpc.client + • xmlrpc.server + +
+ +
+ +
+ + xmlrpc.client +SourceModule
+imports: + base64 + • datetime + • decimal + • errno + • gzip + • http.client + • io + • sys + • time + • urllib.parse + • xml.parsers + • xml.parsers.expat + • xmlrpc + +
+ + +
+ +
+ + xmlrpc.server +SourceModule
+imports: + datetime + • fcntl + • functools + • html + • http.server + • inspect + • os + • pydoc + • re + • socketserver + • sys + • traceback + • xmlrpc + • xmlrpc.client + +
+
+imported by: + defusedxml.xmlrpc + • xmlrpc + +
+ +
+ +
+ + xmlrpclib +MissingModule
+imported by: + defusedxml.xmlrpc + +
+ +
+ +
+ + yaml +Package
+imports: + io + • yaml.cyaml + • yaml.dumper + • yaml.error + • yaml.events + • yaml.loader + • yaml.nodes + • yaml.tokens + +
+ + +
+ +
+ + yaml._yaml /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/site-packages/yaml/_yaml.cpython-312-darwin.so
+imports: + yaml + +
+
+imported by: + yaml.cyaml + +
+ +
+ +
+ + yaml.composer +SourceModule
+imports: + yaml + • yaml.error + • yaml.events + • yaml.nodes + +
+
+imported by: + yaml.loader + +
+ +
+ +
+ + yaml.constructor +SourceModule
+imports: + base64 + • binascii + • collections.abc + • datetime + • re + • sys + • types + • yaml + • yaml.error + • yaml.nodes + +
+
+imported by: + yaml.cyaml + • yaml.loader + +
+ +
+ +
+ + yaml.cyaml +SourceModule
+imports: + yaml + • yaml._yaml + • yaml.constructor + • yaml.representer + • yaml.resolver + • yaml.serializer + +
+
+imported by: + yaml + +
+ +
+ +
+ + yaml.dumper +SourceModule
+imports: + yaml + • yaml.emitter + • yaml.representer + • yaml.resolver + • yaml.serializer + +
+
+imported by: + yaml + +
+ +
+ +
+ + yaml.emitter +SourceModule
+imports: + yaml + • yaml.error + • yaml.events + +
+
+imported by: + yaml.dumper + +
+ +
+ +
+ + yaml.error +SourceModule
+imports: + yaml + +
+
+imported by: + yaml + • yaml.composer + • yaml.constructor + • yaml.emitter + • yaml.parser + • yaml.reader + • yaml.representer + • yaml.resolver + • yaml.scanner + • yaml.serializer + +
+ +
+ +
+ + yaml.events +SourceModule
+imports: + yaml + +
+
+imported by: + yaml + • yaml.composer + • yaml.emitter + • yaml.parser + • yaml.serializer + +
+ +
+ +
+ + yaml.loader +SourceModule
+imports: + yaml + • yaml.composer + • yaml.constructor + • yaml.parser + • yaml.reader + • yaml.resolver + • yaml.scanner + +
+
+imported by: + yaml + +
+ +
+ +
+ + yaml.nodes +SourceModule
+imports: + yaml + +
+
+imported by: + yaml + • yaml.composer + • yaml.constructor + • yaml.representer + • yaml.resolver + • yaml.serializer + +
+ +
+ +
+ + yaml.parser +SourceModule
+imports: + yaml + • yaml.error + • yaml.events + • yaml.scanner + • yaml.tokens + +
+
+imported by: + yaml.loader + +
+ +
+ +
+ + yaml.reader +SourceModule
+imports: + codecs + • re + • yaml + • yaml.error + +
+
+imported by: + yaml.loader + +
+ +
+ +
+ + yaml.representer +SourceModule
+imports: + base64 + • collections + • copyreg + • datetime + • types + • yaml + • yaml.error + • yaml.nodes + +
+
+imported by: + yaml.cyaml + • yaml.dumper + +
+ +
+ +
+ + yaml.resolver +SourceModule
+imports: + re + • yaml + • yaml.error + • yaml.nodes + +
+
+imported by: + yaml.cyaml + • yaml.dumper + • yaml.loader + +
+ +
+ +
+ + yaml.scanner +SourceModule
+imports: + yaml + • yaml.error + • yaml.tokens + +
+
+imported by: + yaml.loader + • yaml.parser + +
+ +
+ +
+ + yaml.serializer +SourceModule
+imports: + yaml + • yaml.error + • yaml.events + • yaml.nodes + +
+
+imported by: + yaml.cyaml + • yaml.dumper + +
+ +
+ +
+ + yaml.tokens +SourceModule
+imports: + yaml + +
+
+imported by: + yaml + • yaml.parser + • yaml.scanner + +
+ +
+ + + +
+ + zipfile._path +Package
+imports: + contextlib + • io + • itertools + • pathlib + • posixpath + • re + • zipfile + • zipfile._path.glob + +
+
+imported by: + zipfile + • zipfile._path.glob + +
+ +
+ +
+ + zipfile._path.glob +SourceModule
+imports: + re + • zipfile._path + +
+
+imported by: + zipfile._path + +
+ +
+ +
+ + zipimport +SourceModule
+imports: + _frozen_importlib + • _frozen_importlib_external + • _imp + • _io + • _warnings + • importlib.readers + • marshal + • sys + • time + • zlib + +
+
+imported by: + pkg_resources + • pkgutil + +
+ +
+ +
+ + zipp +AliasNode
+imports: + setuptools._vendor.zipp + +
+ + +
+ +
+ + zlib /opt/homebrew/Caskroom/miniconda/base/lib/python3.12/lib-dynload/zlib.cpython-312-darwin.so + +
+ + + +
+ + zoneinfo._common +SourceModule
+imports: + importlib + • importlib.resources + • struct + • zoneinfo + +
+
+imported by: + zoneinfo + • zoneinfo._zoneinfo + +
+ +
+ +
+ + zoneinfo._tzpath +SourceModule
+imports: + importlib + • importlib.resources + • os + • sysconfig + • warnings + • zoneinfo + +
+
+imported by: + zoneinfo + • zoneinfo._zoneinfo + +
+ +
+ +
+ + zoneinfo._zoneinfo +SourceModule
+imports: + bisect + • calendar + • collections + • datetime + • functools + • pickle + • re + • weakref + • zoneinfo + • zoneinfo._common + • zoneinfo._tzpath + +
+
+imported by: + zoneinfo + +
+ +
+ + + diff --git a/config/config.yaml b/config/config.yaml new file mode 100644 index 0000000..6b2fcae --- /dev/null +++ b/config/config.yaml @@ -0,0 +1,34 @@ +ldap: + host: "10.10.22.21" + port: 636 + use_ssl: true + bind_dn: "dcadmin@aflowx.com" + bind_password: "Ycw_Admin$" + base_dn: "DC=aflowx,DC=com" + people_base_dn: "OU=People,DC=aflowx,DC=com" + groups_base_dn: "OU=linux,OU=Groups,DC=aflowx,DC=com" + upn_suffix: "aflowx.com" + user_object_classes: + - top + - person + - organizationalPerson + - user + - posixAccount + user_rdn_attr: "CN" + +defaults: + base_group: "staff" + initial_uid_number: 2106 + initial_password: "1234.com" + +paths: + uid_state_file: "state/uid_state.json" + group_gid_map_file: "state/group_gid_map.yaml" + batch_result_file: "state/last_batch_result.csv" + log_file: "state/run.log" + +behavior: + skip_if_user_exists: true + skip_missing_optional_groups: true + dry_run: false + require_ldaps_for_password: true diff --git a/config/config.yaml.example b/config/config.yaml.example new file mode 100644 index 0000000..dc5a2a8 --- /dev/null +++ b/config/config.yaml.example @@ -0,0 +1,34 @@ +ldap: + host: "ad.example.com" + port: 636 + use_ssl: true + bind_dn: "CN=svc_ad,OU=Service,DC=example,DC=com" + bind_password: "" + base_dn: "DC=example,DC=com" + people_base_dn: "OU=People,DC=example,DC=com" + groups_base_dn: "OU=linux,OU=Groups,DC=example,DC=com" + upn_suffix: "example.com" + user_object_classes: + - top + - person + - organizationalPerson + - user + - posixAccount + user_rdn_attr: "CN" + +defaults: + base_group: "staff" + initial_uid_number: 2106 + initial_password: "1234.com" + +paths: + uid_state_file: "state/uid_state.json" + group_gid_map_file: "state/group_gid_map.yaml" + batch_result_file: "state/last_batch_result.csv" + log_file: "state/run.log" + +behavior: + skip_if_user_exists: true + skip_missing_optional_groups: true + dry_run: false + require_ldaps_for_password: true diff --git a/dist/ad-user-creator b/dist/ad-user-creator new file mode 100755 index 0000000..71b6a06 Binary files /dev/null and b/dist/ad-user-creator differ diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..3fe7efa --- /dev/null +++ b/requirements.txt @@ -0,0 +1,8 @@ +ldap3 +python-dotenv +PyYAML +pandas +openpyxl +pydantic +filelock +rich diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..0270252 --- /dev/null +++ b/run.sh @@ -0,0 +1,96 @@ +#!/usr/bin/env bash +set -euo pipefail + +PYTHON_BIN="/opt/homebrew/Caskroom/miniconda/base/bin/python" +CONFIG_PATH="config/config.yaml" +INPUT_FILE="" +DRY_RUN="false" +CONTINUE_ON_ERROR="true" + +usage() { + cat <<'EOF' +Usage: + ./run.sh + ./run.sh -f users.csv + ./run.sh -f users.xlsx + ./run.sh -f users.csv --dry-run + ./run.sh -f users.xlsx --continue-on-error false + ./run.sh -c config/config.yaml + +Options: + -f Batch input file (.csv/.xlsx). If omitted, interactive mode is used. + -c YAML config path (default: config/config.yaml) + --dry-run Dry run mode + --continue-on-error true|false Batch only, default true + -h, --help Show this help +EOF +} + +while [[ $# -gt 0 ]]; do + case "$1" in + -f) + INPUT_FILE="${2:-}" + shift 2 + ;; + -c) + CONFIG_PATH="${2:-}" + shift 2 + ;; + --dry-run) + DRY_RUN="true" + shift + ;; + --continue-on-error) + CONTINUE_ON_ERROR="${2:-}" + if [[ "${CONTINUE_ON_ERROR}" != "true" && "${CONTINUE_ON_ERROR}" != "false" ]]; then + echo "错误: --continue-on-error 仅支持 true 或 false" >&2 + exit 2 + fi + shift 2 + ;; + -h|--help) + usage + exit 0 + ;; + *) + echo "未知参数: $1" >&2 + usage + exit 2 + ;; + esac +done + +if [[ -z "${INPUT_FILE}" ]]; then + CMD=("${PYTHON_BIN}" -m ad_user_creator.main --config "${CONFIG_PATH}" interactive) + if [[ "${DRY_RUN}" == "true" ]]; then + CMD+=(--dry-run) + fi + exec "${CMD[@]}" +fi + +if [[ ! -f "${INPUT_FILE}" ]]; then + echo "错误: 输入文件不存在: ${INPUT_FILE}" >&2 + exit 2 +fi + +case "${INPUT_FILE##*.}" in + csv|CSV|xlsx|XLSX) + ;; + *) + echo "错误: 仅支持 .csv 或 .xlsx 文件: ${INPUT_FILE}" >&2 + exit 2 + ;; +esac + +CMD=( + "${PYTHON_BIN}" -m ad_user_creator.main + --config "${CONFIG_PATH}" + batch + --input "${INPUT_FILE}" + --continue-on-error "${CONTINUE_ON_ERROR}" +) +if [[ "${DRY_RUN}" == "true" ]]; then + CMD+=(--dry-run) +fi + +exec "${CMD[@]}" diff --git a/state/group_gid_map.yaml b/state/group_gid_map.yaml new file mode 100644 index 0000000..cf58af4 --- /dev/null +++ b/state/group_gid_map.yaml @@ -0,0 +1,2 @@ +staff: 3000 +outsourcing: 3001 \ No newline at end of file diff --git a/state/last_batch_result.csv b/state/last_batch_result.csv new file mode 100644 index 0000000..ce71c4d --- /dev/null +++ b/state/last_batch_result.csv @@ -0,0 +1,18 @@ +姓名,用户名,邮箱,部门 OU,基础组,项目组,资源组,状态,原因,用户DN,uidNumber +Antonio,antonio,antonio@aflowx.com,IT,staff,,itadmins,CREATED,dry-run 未写入 LDAP(将执行: 创建用户->设置初始密码->启用用户->加组),"CN=Antonio,OU=IT,OU=People,DC=aflowx,DC=com",2124 +杨滨,yangbin,tony.yang@aflowx.com,CEO,staff,,,CREATED,dry-run 未写入 LDAP(将执行: 创建用户->设置初始密码->启用用户->加组),"CN=杨滨,OU=CEO,OU=People,DC=aflowx,DC=com",2124 +孙彤,sunt,patrick.sun@aflowx.com,CTO,staff,,,CREATED,dry-run 未写入 LDAP(将执行: 创建用户->设置初始密码->启用用户->加组),"CN=孙彤,OU=CTO,OU=People,DC=aflowx,DC=com",2124 +矫渊培,jiaoyp,agnarr.jiao@aflowx.com,RnD/tm_hardware,staff,"prj_r3xx_hw,prj_demo",,CREATED,dry-run 未写入 LDAP(将执行: 创建用户->设置初始密码->启用用户->加组),"CN=矫渊培,OU=tm_hardware,OU=RnD,OU=People,DC=aflowx,DC=com",2124 +张志峰,zhangzf,zhangzhifeng@aflowx.com,RnD/tm_hardware,outsourcing,prj_r3xx_hw,,CREATED,dry-run 未写入 LDAP(将执行: 创建用户->设置初始密码->启用用户->加组),"CN=张志峰,OU=tm_hardware,OU=RnD,OU=People,DC=aflowx,DC=com",2124 +司林飞,silf,silinfei@aflowx.com,RnD/tm_hardware,staff,"prj_r3xx_hw,prj_demo",,CREATED,dry-run 未写入 LDAP(将执行: 创建用户->设置初始密码->启用用户->加组),"CN=司林飞,OU=tm_hardware,OU=RnD,OU=People,DC=aflowx,DC=com",2124 +王顺涛,wangst,shawn.wang@aflowx.com,RnD/tm_hardware,staff,prj_r3xx_hw,,CREATED,dry-run 未写入 LDAP(将执行: 创建用户->设置初始密码->启用用户->加组),"CN=王顺涛,OU=tm_hardware,OU=RnD,OU=People,DC=aflowx,DC=com",2124 +陈兴峰,chenxf,robinson.chen@aflowx.com,RnD/tm_hardware,staff,"prj_r3xx_hw,prj_demo",,CREATED,dry-run 未写入 LDAP(将执行: 创建用户->设置初始密码->启用用户->加组),"CN=陈兴峰,OU=tm_hardware,OU=RnD,OU=People,DC=aflowx,DC=com",2124 +朱久运,zhujy,john.zhu@aflowx.com,RnD/tm_hardware,staff,prj_r3xx_hw,,CREATED,dry-run 未写入 LDAP(将执行: 创建用户->设置初始密码->启用用户->加组),"CN=朱久运,OU=tm_hardware,OU=RnD,OU=People,DC=aflowx,DC=com",2124 +孟凡博,mengfb,frank.meng@aflowx.com,RnD/tm_verify_test,staff,"prj_r3xx_vt,prj_demo",,CREATED,dry-run 未写入 LDAP(将执行: 创建用户->设置初始密码->启用用户->加组),"CN=孟凡博,OU=tm_verify_test,OU=RnD,OU=People,DC=aflowx,DC=com",2124 +张凯飞,zhangkf,zhangkaifei@aflowx.com,RnD/tm_verify_test,staff,"prj_r3xx_vt,prj_demo",,CREATED,dry-run 未写入 LDAP(将执行: 创建用户->设置初始密码->启用用户->加组),"CN=张凯飞,OU=tm_verify_test,OU=RnD,OU=People,DC=aflowx,DC=com",2124 +陈智新,chenzx,chenzhixin@aflowx.com,RnD/tm_verify_test,staff,"prj_r3xx_vt,prj_demo",,CREATED,dry-run 未写入 LDAP(将执行: 创建用户->设置初始密码->启用用户->加组),"CN=陈智新,OU=tm_verify_test,OU=RnD,OU=People,DC=aflowx,DC=com",2124 +程杨,chengy,chengyang@aflowx.com,RnD/tm_verify_test,staff,"prj_r3xx_vt,prj_demo",,CREATED,dry-run 未写入 LDAP(将执行: 创建用户->设置初始密码->启用用户->加组),"CN=程杨,OU=tm_verify_test,OU=RnD,OU=People,DC=aflowx,DC=com",2124 +黄鑫,huangxin,huangxin@aflowx.com,RnD/tm_algorithm,staff,prj_r3xx_alg,,CREATED,dry-run 未写入 LDAP(将执行: 创建用户->设置初始密码->启用用户->加组),"CN=黄鑫,OU=tm_algorithm,OU=RnD,OU=People,DC=aflowx,DC=com",2124 +徐晓锋,xuxf,keith.xu@aflowx.com,RnD/tm_algorithm,staff,"prj_r3xx_sw,prj_demo",,CREATED,dry-run 未写入 LDAP(将执行: 创建用户->设置初始密码->启用用户->加组),"CN=徐晓锋,OU=tm_algorithm,OU=RnD,OU=People,DC=aflowx,DC=com",2124 +陈华庆,chenhq,chenhuaqing@aflowx.com,RnD/tm_algorithm,staff,prj_r3xx_alg,,CREATED,dry-run 未写入 LDAP(将执行: 创建用户->设置初始密码->启用用户->加组),"CN=陈华庆,OU=tm_algorithm,OU=RnD,OU=People,DC=aflowx,DC=com",2124 +张海涛,zhanght,hogan.zhang@aflowx.com,RnD/tm_algorithm,staff,"prj_r3xx_sw,prj_demo",,CREATED,dry-run 未写入 LDAP(将执行: 创建用户->设置初始密码->启用用户->加组),"CN=张海涛,OU=tm_algorithm,OU=RnD,OU=People,DC=aflowx,DC=com",2124 diff --git a/state/run.log b/state/run.log new file mode 100644 index 0000000..6f7d5e2 --- /dev/null +++ b/state/run.log @@ -0,0 +1,182 @@ +2026-02-12 10:32:27,715 [INFO] 配置加载完成 +2026-02-12 10:32:27,854 [INFO] LDAP 连接成功 +2026-02-12 10:33:32,556 [INFO] 配置加载完成 +2026-02-12 10:33:32,780 [INFO] LDAP 连接成功 +2026-02-12 10:33:40,075 [INFO] 配置加载完成 +2026-02-12 10:33:40,210 [INFO] LDAP 连接成功 +2026-02-23 16:53:41,761 [INFO] 配置加载完成 +2026-02-23 16:53:41,769 [INFO] 处理第 1 条: yangbin +2026-02-23 16:53:41,770 [INFO] 处理第 2 条: sunt +2026-02-23 16:53:41,770 [INFO] 处理第 3 条: jiaoyp +2026-02-23 16:53:41,771 [INFO] 处理第 4 条: wangst +2026-02-23 16:53:41,771 [INFO] 处理第 5 条: chenxf +2026-02-23 16:53:41,771 [INFO] 处理第 6 条: mengfb +2026-02-23 16:53:41,771 [INFO] 处理第 7 条: zhangkf +2026-02-23 16:53:41,772 [INFO] 处理第 8 条: huangxin +2026-02-23 16:53:41,772 [INFO] 处理第 9 条: xuxf +2026-02-23 17:43:38,430 [INFO] 配置加载完成 +2026-02-23 17:43:38,894 [INFO] LDAP 连接成功 +2026-02-23 17:46:24,258 [INFO] 配置加载完成 +2026-02-23 17:46:24,276 [INFO] 处理第 1 条: yangbin +2026-02-23 17:46:24,276 [INFO] 处理第 2 条: sunt +2026-02-23 17:46:24,276 [INFO] 处理第 3 条: jiaoyp +2026-02-23 17:46:24,277 [INFO] 处理第 4 条: zhangzf +2026-02-23 17:46:24,277 [INFO] 处理第 5 条: jiaoyp +2026-02-23 17:46:24,277 [INFO] 处理第 6 条: wangst +2026-02-23 17:46:24,277 [INFO] 处理第 7 条: chenxf +2026-02-23 17:46:24,277 [INFO] 处理第 8 条: zhujy +2026-02-23 17:46:24,277 [INFO] 处理第 9 条: mengfb +2026-02-23 17:46:24,277 [INFO] 处理第 10 条: zhangkf +2026-02-23 17:46:24,277 [INFO] 处理第 11 条: chenzx +2026-02-23 17:46:24,277 [INFO] 处理第 12 条: chengy +2026-02-23 17:46:24,277 [INFO] 处理第 13 条: huangxin +2026-02-23 17:46:24,277 [INFO] 处理第 14 条: xuxf +2026-02-23 17:46:24,277 [INFO] 处理第 15 条: chenhq +2026-02-23 17:46:24,277 [INFO] 处理第 16 条: zhanght +2026-02-23 17:46:57,829 [INFO] 配置加载完成 +2026-02-23 17:46:58,139 [INFO] LDAP 连接成功 +2026-02-23 17:46:58,149 [INFO] 处理第 1 条: yangbin +2026-02-23 17:46:58,362 [INFO] 处理第 2 条: sunt +2026-02-23 17:46:58,548 [INFO] 处理第 3 条: jiaoyp +2026-02-23 17:46:59,343 [INFO] 处理第 4 条: zhangzf +2026-02-23 17:46:59,375 [INFO] 处理第 5 条: jiaoyp +2026-02-23 17:46:59,521 [INFO] 处理第 6 条: wangst +2026-02-23 17:46:59,839 [INFO] 处理第 7 条: chenxf +2026-02-23 17:47:00,425 [INFO] 处理第 8 条: zhujy +2026-02-23 17:47:00,872 [INFO] 处理第 9 条: mengfb +2026-02-23 17:47:01,275 [INFO] 处理第 10 条: zhangkf +2026-02-23 17:47:01,555 [INFO] 处理第 11 条: chenzx +2026-02-23 17:47:01,806 [INFO] 处理第 12 条: chengy +2026-02-23 17:47:02,002 [INFO] 处理第 13 条: huangxin +2026-02-23 17:47:02,180 [INFO] 处理第 14 条: xuxf +2026-02-23 17:47:02,411 [INFO] 处理第 15 条: chenhq +2026-02-23 17:47:02,591 [INFO] 处理第 16 条: zhanght +2026-02-23 17:48:10,486 [INFO] 配置加载完成 +2026-02-23 17:48:10,776 [INFO] LDAP 连接成功 +2026-02-23 17:48:10,789 [INFO] 处理第 1 条: yangbin +2026-02-23 17:48:10,797 [INFO] 处理第 2 条: sunt +2026-02-23 17:48:10,828 [INFO] 处理第 3 条: jiaoyp +2026-02-23 17:48:10,853 [INFO] 处理第 4 条: zhangzf +2026-02-23 17:48:10,875 [INFO] 处理第 5 条: silf +2026-02-23 17:48:11,180 [INFO] 处理第 6 条: wangst +2026-02-23 17:48:11,185 [INFO] 处理第 7 条: chenxf +2026-02-23 17:48:11,198 [INFO] 处理第 8 条: zhujy +2026-02-23 17:48:11,205 [INFO] 处理第 9 条: mengfb +2026-02-23 17:48:11,226 [INFO] 处理第 10 条: zhangkf +2026-02-23 17:48:11,250 [INFO] 处理第 11 条: chenzx +2026-02-23 17:48:11,261 [INFO] 处理第 12 条: chengy +2026-02-23 17:48:11,275 [INFO] 处理第 13 条: huangxin +2026-02-23 17:48:11,296 [INFO] 处理第 14 条: xuxf +2026-02-23 17:48:11,321 [INFO] 处理第 15 条: chenhq +2026-02-23 17:48:11,344 [INFO] 处理第 16 条: zhanght +2026-02-23 17:48:47,580 [INFO] 配置加载完成 +2026-02-23 17:48:47,966 [INFO] LDAP 连接成功 +2026-02-23 17:48:47,987 [INFO] 处理第 1 条: yangbin +2026-02-23 17:48:48,015 [INFO] 处理第 2 条: sunt +2026-02-23 17:48:48,092 [INFO] 处理第 3 条: jiaoyp +2026-02-23 17:48:48,169 [INFO] 处理第 4 条: zhangzf +2026-02-23 17:48:48,708 [INFO] 处理第 5 条: silf +2026-02-23 17:48:48,757 [INFO] 处理第 6 条: wangst +2026-02-23 17:48:48,765 [INFO] 处理第 7 条: chenxf +2026-02-23 17:48:48,785 [INFO] 处理第 8 条: zhujy +2026-02-23 17:48:48,805 [INFO] 处理第 9 条: mengfb +2026-02-23 17:48:48,826 [INFO] 处理第 10 条: zhangkf +2026-02-23 17:48:48,885 [INFO] 处理第 11 条: chenzx +2026-02-23 17:48:48,892 [INFO] 处理第 12 条: chengy +2026-02-23 17:48:48,901 [INFO] 处理第 13 条: huangxin +2026-02-23 17:48:48,908 [INFO] 处理第 14 条: xuxf +2026-02-23 17:48:48,919 [INFO] 处理第 15 条: chenhq +2026-02-23 17:48:48,936 [INFO] 处理第 16 条: zhanght +2026-02-24 14:04:53,433 [INFO] 配置加载完成 +2026-02-24 14:04:53,444 [INFO] 处理第 1 条: antonio +2026-02-24 14:04:53,444 [INFO] 处理第 2 条: yangbin +2026-02-24 14:04:53,444 [INFO] 处理第 3 条: sunt +2026-02-24 14:04:53,445 [INFO] 处理第 4 条: jiaoyp +2026-02-24 14:04:53,445 [INFO] 处理第 5 条: zhangzf +2026-02-24 14:04:53,445 [INFO] 处理第 6 条: silf +2026-02-24 14:04:53,445 [INFO] 处理第 7 条: wangst +2026-02-24 14:04:53,445 [INFO] 处理第 8 条: chenxf +2026-02-24 14:04:53,445 [INFO] 处理第 9 条: zhujy +2026-02-24 14:04:53,445 [INFO] 处理第 10 条: mengfb +2026-02-24 14:04:53,446 [INFO] 处理第 11 条: zhangkf +2026-02-24 14:04:53,446 [INFO] 处理第 12 条: chenzx +2026-02-24 14:04:53,446 [INFO] 处理第 13 条: chengy +2026-02-24 14:04:53,446 [INFO] 处理第 14 条: huangxin +2026-02-24 14:04:53,446 [INFO] 处理第 15 条: xuxf +2026-02-24 14:04:53,446 [INFO] 处理第 16 条: chenhq +2026-02-24 14:04:53,447 [INFO] 处理第 17 条: zhanght +2026-02-24 14:06:18,789 [INFO] 配置加载完成 +2026-02-24 14:06:18,799 [INFO] 处理第 1 条: antonio +2026-02-24 14:06:18,803 [INFO] 处理第 2 条: yangbin +2026-02-24 14:06:18,803 [INFO] 处理第 3 条: sunt +2026-02-24 14:06:18,804 [INFO] 处理第 4 条: jiaoyp +2026-02-24 14:06:18,804 [INFO] 处理第 5 条: zhangzf +2026-02-24 14:06:18,804 [INFO] 处理第 6 条: silf +2026-02-24 14:06:18,804 [INFO] 处理第 7 条: wangst +2026-02-24 14:06:18,804 [INFO] 处理第 8 条: chenxf +2026-02-24 14:06:18,804 [INFO] 处理第 9 条: zhujy +2026-02-24 14:06:18,804 [INFO] 处理第 10 条: mengfb +2026-02-24 14:06:18,804 [INFO] 处理第 11 条: zhangkf +2026-02-24 14:06:18,804 [INFO] 处理第 12 条: chenzx +2026-02-24 14:06:18,804 [INFO] 处理第 13 条: chengy +2026-02-24 14:06:18,805 [INFO] 处理第 14 条: huangxin +2026-02-24 14:06:18,805 [INFO] 处理第 15 条: xuxf +2026-02-24 14:06:18,805 [INFO] 处理第 16 条: chenhq +2026-02-24 14:06:18,805 [INFO] 处理第 17 条: zhanght +2026-02-24 14:06:24,509 [INFO] 配置加载完成 +2026-02-24 14:06:24,904 [INFO] LDAP 连接成功 +2026-02-24 14:06:24,913 [INFO] 处理第 1 条: antonio +2026-02-24 14:06:25,172 [INFO] 处理第 2 条: yangbin +2026-02-24 14:06:25,295 [INFO] 处理第 3 条: sunt +2026-02-24 14:06:25,542 [INFO] 处理第 4 条: jiaoyp +2026-02-24 14:06:25,859 [INFO] 处理第 5 条: zhangzf +2026-02-24 14:06:25,993 [INFO] 处理第 6 条: silf +2026-02-24 14:06:26,169 [INFO] 处理第 7 条: wangst +2026-02-24 14:06:26,276 [INFO] 处理第 8 条: chenxf +2026-02-24 14:06:26,426 [INFO] 处理第 9 条: zhujy +2026-02-24 14:06:26,558 [INFO] 处理第 10 条: mengfb +2026-02-24 14:06:26,705 [INFO] 处理第 11 条: zhangkf +2026-02-24 14:06:26,898 [INFO] 处理第 12 条: chenzx +2026-02-24 14:06:27,091 [INFO] 处理第 13 条: chengy +2026-02-24 14:06:27,215 [INFO] 处理第 14 条: huangxin +2026-02-24 14:06:27,310 [INFO] 处理第 15 条: xuxf +2026-02-24 14:06:27,451 [INFO] 处理第 16 条: chenhq +2026-02-24 14:06:27,548 [INFO] 处理第 17 条: zhanght +2026-02-24 14:45:41,019 [INFO] 配置加载完成 +2026-02-24 14:45:41,030 [INFO] 处理第 1 条: antonio +2026-02-24 14:45:41,030 [INFO] 处理第 2 条: yangbin +2026-02-24 14:45:41,031 [INFO] 处理第 3 条: sunt +2026-02-24 14:45:41,031 [INFO] 处理第 4 条: jiaoyp +2026-02-24 14:45:41,031 [INFO] 处理第 5 条: zhangzf +2026-02-24 14:45:41,031 [INFO] 处理第 6 条: silf +2026-02-24 14:45:41,031 [INFO] 处理第 7 条: wangst +2026-02-24 14:45:41,031 [INFO] 处理第 8 条: chenxf +2026-02-24 14:45:41,032 [INFO] 处理第 9 条: zhujy +2026-02-24 14:45:41,032 [INFO] 处理第 10 条: mengfb +2026-02-24 14:45:41,032 [INFO] 处理第 11 条: zhangkf +2026-02-24 14:45:41,032 [INFO] 处理第 12 条: chenzx +2026-02-24 14:45:41,032 [INFO] 处理第 13 条: chengy +2026-02-24 14:45:41,032 [INFO] 处理第 14 条: huangxin +2026-02-24 14:45:41,033 [INFO] 处理第 15 条: xuxf +2026-02-24 14:45:41,033 [INFO] 处理第 16 条: chenhq +2026-02-24 14:45:41,033 [INFO] 处理第 17 条: zhanght +2026-02-24 15:56:50,639 [INFO] 配置加载完成 +2026-02-24 15:56:50,650 [INFO] 处理第 1 条: antonio +2026-02-24 15:56:50,651 [INFO] 处理第 2 条: yangbin +2026-02-24 15:56:50,651 [INFO] 处理第 3 条: sunt +2026-02-24 15:56:50,651 [INFO] 处理第 4 条: jiaoyp +2026-02-24 15:56:50,651 [INFO] 处理第 5 条: zhangzf +2026-02-24 15:56:50,651 [INFO] 处理第 6 条: silf +2026-02-24 15:56:50,652 [INFO] 处理第 7 条: wangst +2026-02-24 15:56:50,652 [INFO] 处理第 8 条: chenxf +2026-02-24 15:56:50,652 [INFO] 处理第 9 条: zhujy +2026-02-24 15:56:50,652 [INFO] 处理第 10 条: mengfb +2026-02-24 15:56:50,652 [INFO] 处理第 11 条: zhangkf +2026-02-24 15:56:50,652 [INFO] 处理第 12 条: chenzx +2026-02-24 15:56:50,652 [INFO] 处理第 13 条: chengy +2026-02-24 15:56:50,653 [INFO] 处理第 14 条: huangxin +2026-02-24 15:56:50,653 [INFO] 处理第 15 条: xuxf +2026-02-24 15:56:50,653 [INFO] 处理第 16 条: chenhq +2026-02-24 15:56:50,653 [INFO] 处理第 17 条: zhanght +2026-02-24 16:58:20,988 [INFO] 配置加载完成 +2026-02-24 16:58:35,515 [INFO] 配置加载完成 diff --git a/state/uid_state.json b/state/uid_state.json new file mode 100644 index 0000000..1809a72 --- /dev/null +++ b/state/uid_state.json @@ -0,0 +1,4 @@ +{ + "next_uid_number": 2124, + "updated_at": "2026-02-23T09:48:48+00:00" +} \ No newline at end of file diff --git a/state/uid_state.json.lock b/state/uid_state.json.lock new file mode 100644 index 0000000..e69de29 diff --git a/users.csv b/users.csv new file mode 100644 index 0000000..f85c264 --- /dev/null +++ b/users.csv @@ -0,0 +1,18 @@ +姓名,用户名,邮箱,部门 OU,基础组,项目组,资源组 +Antonio,antonio,antonio@aflowx.com,IT,staff,,itadmins +杨滨,yangbin,tony.yang@aflowx.com,CEO,staff,, +孙彤,sunt,patrick.sun@aflowx.com,CTO,staff,, +矫渊培,jiaoyp,agnarr.jiao@aflowx.com,RnD/tm_hardware,staff,"prj_r3xx_hw,prj_demo", +张志峰,zhangzf,zhangzhifeng@aflowx.com,RnD/tm_hardware,outsourcing,prj_r3xx_hw, +司林飞,silf,silinfei@aflowx.com,RnD/tm_hardware,staff,"prj_r3xx_hw,prj_demo", +王顺涛,wangst,shawn.wang@aflowx.com,RnD/tm_hardware,staff,prj_r3xx_hw, +陈兴峰,chenxf,robinson.chen@aflowx.com,RnD/tm_hardware,staff,"prj_r3xx_hw,prj_demo", +朱久运,zhujy,john.zhu@aflowx.com,RnD/tm_hardware,staff,prj_r3xx_hw, +孟凡博,mengfb,frank.meng@aflowx.com,RnD/tm_verify_test,staff,"prj_r3xx_vt,prj_demo", +张凯飞,zhangkf,zhangkaifei@aflowx.com,RnD/tm_verify_test,staff,"prj_r3xx_vt,prj_demo", +陈智新,chenzx,chenzhixin@aflowx.com,RnD/tm_verify_test,staff,"prj_r3xx_vt,prj_demo", +程杨,chengy,chengyang@aflowx.com,RnD/tm_verify_test,staff,"prj_r3xx_vt,prj_demo", +黄鑫,huangxin,huangxin@aflowx.com,RnD/tm_algorithm,staff,prj_r3xx_alg, +徐晓锋,xuxf,keith.xu@aflowx.com,RnD/tm_algorithm,staff,"prj_r3xx_sw,prj_demo", +陈华庆,chenhq,chenhuaqing@aflowx.com,RnD/tm_algorithm,staff,prj_r3xx_alg, +张海涛,zhanght,hogan.zhang@aflowx.com,RnD/tm_algorithm,staff,"prj_r3xx_sw,prj_demo",