Home / Function/ _find_all_tags() — langchain Function Reference

_find_all_tags() — langchain Function Reference

Architecture documentation for the _find_all_tags() function in html.py from the langchain codebase.

Entity Profile

Dependency Diagram

graph TD
  4134a695_a3ab_4bed_f7a0_3a766652fc3e["_find_all_tags()"]
  e3efe57c_5b49_c26c_6ca5_45acccb8037f["html.py"]
  4134a695_a3ab_4bed_f7a0_3a766652fc3e -->|defined in| e3efe57c_5b49_c26c_6ca5_45acccb8037f
  219ab3b6_0b12_7f58_ba5f_9bfbebda0057["split_html_by_headers()"]
  219ab3b6_0b12_7f58_ba5f_9bfbebda0057 -->|calls| 4134a695_a3ab_4bed_f7a0_3a766652fc3e
  2030eaef_a33b_19d9_d540_9d9919faafba["_process_media()"]
  2030eaef_a33b_19d9_d540_9d9919faafba -->|calls| 4134a695_a3ab_4bed_f7a0_3a766652fc3e
  ff63d8f1_7353_0b16_2f96_7dadb57a8348["_process_links()"]
  ff63d8f1_7353_0b16_2f96_7dadb57a8348 -->|calls| 4134a695_a3ab_4bed_f7a0_3a766652fc3e
  33b3aaec_4039_d612_320f_cc74c2e5758c["_filter_tags()"]
  33b3aaec_4039_d612_320f_cc74c2e5758c -->|calls| 4134a695_a3ab_4bed_f7a0_3a766652fc3e
  252723d0_ba69_6fd1_f520_2ee9bc89cc3e["_process_html()"]
  252723d0_ba69_6fd1_f520_2ee9bc89cc3e -->|calls| 4134a695_a3ab_4bed_f7a0_3a766652fc3e
  style 4134a695_a3ab_4bed_f7a0_3a766652fc3e fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

libs/text-splitters/langchain_text_splitters/html.py lines 74–80

def _find_all_tags(
    tag: Tag,
    *,
    name: bool | str | list[str] | None = None,
    recursive: bool = True,
) -> ResultSet[Tag]:
    return tag.find_all(name, recursive=recursive)

Subdomains

Frequently Asked Questions

What does _find_all_tags() do?
_find_all_tags() is a function in the langchain codebase, defined in libs/text-splitters/langchain_text_splitters/html.py.
Where is _find_all_tags() defined?
_find_all_tags() is defined in libs/text-splitters/langchain_text_splitters/html.py at line 74.
What calls _find_all_tags()?
_find_all_tags() is called by 5 function(s): _filter_tags, _process_html, _process_links, _process_media, split_html_by_headers.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free