
^Wc           @` s   d  Z  d d l m Z m Z m Z d d l m Z m Z m Z d d l	 m
 Z
 d d l m Z d d l m Z d d	 d
 d d d g Z d Z d S(   uM  
HTML parsing library based on the WHATWG "HTML5"
specification. The parser is designed to be compatible with existing
HTML found in the wild and implements well-defined error recovery that
is largely compatible with modern desktop web browsers.

Example usage:

import html5lib
f = open("my_document.html")
tree = html5lib.parse(f)
i    (   t   absolute_importt   divisiont   unicode_literalsi   (   t
   HTMLParsert   parset   parseFragment(   t   getTreeBuilder(   t   getTreeWalker(   t	   serializeu
   HTMLParseru   parseu   parseFragmentu   getTreeBuilderu   getTreeWalkeru	   serializeu   1.0b8N(   t   __doc__t
   __future__R    R   R   t   html5parserR   R   R   t   treebuildersR   t   treewalkersR   t
   serializerR   t   __all__t   __version__(    (    (    sn   /private/var/folders/3n/6h2rwf155rn1m71wwyxn79n80000gn/T/pip-build-IcAT_k/pip/pip/_vendor/html5lib/__init__.pyt   <module>   s   