hepheir / Python-HTML-Parser

🔥 beautifulsoup으로는 만족못해서 만들어보는 Python3.9 버전의 html 파싱기
MIT License
2 stars 0 forks source link

Implement interface `NodeList` #17

Closed hepheir closed 3 years ago

hepheir commented 3 years ago

https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-536297177

Interface NodeList

IDL Definition

More ``` interface NodeList { Node item(in unsigned long index); readonly attribute unsigned long length; }; ```

Attributes

Methods

hepheir commented 3 years ago

implemented based on list type by inheriting list #14