Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ dependencies = [
"cydifflib>=1.2.0",
"tiktoken>=0.9.0",
"regex>=2024.11.6",
"selectolax>=0.3.32",
]

[project.optional-dependencies]
Expand Down
14 changes: 9 additions & 5 deletions src/chopdiff/html/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
# flake8: noqa: F401

from chopdiff.html.extractor import ContentNotFound, Extractor, Match
from chopdiff.html.html_find_tags import (
TagMatch,
html_extract_attribute_value,
html_find_tag,
)
from chopdiff.html.html_in_md import (
Attrs,
ClassNames,
Expand All @@ -24,6 +19,13 @@
tag_with_attrs,
)
from chopdiff.html.html_plaintext import html_to_plaintext, plaintext_to_html
from chopdiff.html.html_tags import (
TagMatch,
html_extract_attribute_value,
html_find_tag,
rewrite_html_img_urls,
rewrite_html_tag_attr,
)
from chopdiff.html.timestamps import (
TimestampExtractor,
extract_timestamp,
Expand All @@ -39,6 +41,8 @@
"TagMatch",
"html_extract_attribute_value",
"html_find_tag",
"rewrite_html_img_urls",
"rewrite_html_tag_attr",
"Wrapper",
"div_wrapper",
"escape_md_html",
Expand Down
113 changes: 0 additions & 113 deletions src/chopdiff/html/html_find_tags.py

This file was deleted.

Loading