You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently inlining takes n * m time where n=number of elements in the page & m=number of CSS selectors to operate on.
It should be possible to do the work in `n`` time, though I suppose the potential efficiency gains are dependent on how BeautifulSoup is implemented internally.
(CSS inlining is a relatively expensive operation at this point.)
The text was updated successfully, but these errors were encountered:
Currently inlining takes
n * m
time where n=number of elements in the page & m=number of CSS selectors to operate on.It should be possible to do the work in `n`` time, though I suppose the potential efficiency gains are dependent on how BeautifulSoup is implemented internally.
(CSS inlining is a relatively expensive operation at this point.)
The text was updated successfully, but these errors were encountered: