6 lines
107 B
Python
6 lines
107 B
Python
from bs4 import BeautifulSoup
|
|
|
|
|
|
class HTMLParser:
|
|
def __init__(self, soup: BeautifulSoup):
|
|
pass |