made bs4 and soupsieve standalone in this project

This commit is contained in:
2025-04-24 19:26:20 +02:00
parent aefb27614f
commit 3dd7b5a18d
17 changed files with 68 additions and 62 deletions

View File

@ -14,12 +14,12 @@ import copy
import pickle
import re
import warnings
from ...bs4 import BeautifulSoup
from ...bs4.builder import (
from .. import BeautifulSoup
from ..builder import (
builder_registry,
HTMLParserTreeBuilder,
)
from ...bs4.element import (
from ..element import (
PY3K,
CData,
Comment,
@ -33,7 +33,7 @@ from ...bs4.element import (
Tag,
TemplateString,
)
from ...bs4.testing import (
from ..testing import (
SoupTest,
skipIf,
)