{"library":"tinyhtml5","code":"from tinyhtml5 import parse\n\nhtml_string = '<html><body><p>Hello, tinyhtml5!</p></body></html>'\nparsed_tree = parse(html_string)\n\n# The parsed_tree is an ElementTree object\nprint(parsed_tree)\nprint(parsed_tree.tag)\nprint(parsed_tree[0].tag)\nprint(parsed_tree[0][0].text)","lang":"python","description":"Parses an HTML string into an ElementTree object.","tag":null,"tag_description":null,"last_tested":"2026-04-24","results":[{"runtime":"python:3.10-alpine","exit_code":1},{"runtime":"python:3.10-slim","exit_code":1},{"runtime":"python:3.11-alpine","exit_code":1},{"runtime":"python:3.11-slim","exit_code":1},{"runtime":"python:3.12-alpine","exit_code":1},{"runtime":"python:3.12-slim","exit_code":1},{"runtime":"python:3.13-alpine","exit_code":1},{"runtime":"python:3.13-slim","exit_code":1},{"runtime":"python:3.9-alpine","exit_code":1},{"runtime":"python:3.9-slim","exit_code":1}]}