Metadata-Version: 2.1
Name: backports.html
Version: 1.0.0
Summary: Backport of Python 3.4+'s html module
Home-page: https://github.com/frostming/backports.html
Author: Frost Ming
Author-email: mianghong@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown

backports.html
==============


This is a backport of Python3.4+'s `html` module, original code from [Python's standard library][1]

[1]: https://github.com/python/cpython/blob/master/Lib/html/

Install and use
---------------

```bash
$ pip install backports.html
```
```python
try:
    import html     # use standard library if available
except ImportError:
    import backports.html as html   # fallback to backports
```

Licence
-------

MIT License, see [LICENSE](/LICENSE) for more details.


