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

@ -6,9 +6,9 @@ __license__ = "MIT"
import cProfile
from io import StringIO
from html.parser import HTMLParser
from ..bs4 import BeautifulSoup as bs4
from ..bs4 import BeautifulSoup, __version__
from ..bs4.builder import builder_registry
from . import BeautifulSoup as bs4
from . import BeautifulSoup, __version__
from .builder import builder_registry
import os
import pstats