Metadata-Version: 2.1
Name: moodlmth
Version: 0.2.4
Summary: Convert raw HTML pages into python source code
Home-page: https://github.com/sayanarijit/moodlmth
Author: Arijit Basu
Author-email: sayanarijit@gmail.com
License: MIT
Keywords: html dom builder
Platform: Any
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Other Audience
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development
Classifier: Operating System :: MacOS
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft
Description-Content-Type: text/markdown
Requires-Dist: black (==19.3b0)
Requires-Dist: htmldoom (>=0.6<0.7)
Requires-Dist: htmlmin (==0.1.12)
Requires-Dist: requests (==2.22.0)
Provides-Extra: dev
Requires-Dist: pytest (==4.4.1) ; extra == 'dev'
Requires-Dist: pytest-cov (==2.7.1) ; extra == 'dev'
Requires-Dist: mypy (==0.710) ; extra == 'dev'
Requires-Dist: lxml (==4.3.4) ; extra == 'dev'
Requires-Dist: typecov (==0.2.1) ; extra == 'dev'
Requires-Dist: tox (==3.12.1) ; extra == 'dev'
Provides-Extra: testing
Requires-Dist: pytest (==4.4.1) ; extra == 'testing'
Requires-Dist: pytest-cov (==2.7.1) ; extra == 'testing'
Requires-Dist: mypy (==0.710) ; extra == 'testing'
Requires-Dist: lxml (==4.3.4) ; extra == 'testing'
Requires-Dist: typecov (==0.2.1) ; extra == 'testing'

moodlmth
========
Convert raw HTML pages into python source code

[![PyPI version](https://img.shields.io/pypi/v/moodlmth.svg)](https://pypi.org/project/moodlmth)
[![PyPI pyversions](https://img.shields.io/pypi/pyversions/moodlmth.svg)](https://pypi.org/project/moodlmth)
[![Build Status](https://travis-ci.org/sayanarijit/moodlmth.svg?branch=master)](https://travis-ci.org/sayanarijit/moodlmth)
[![codecov](https://codecov.io/gh/sayanarijit/moodlmth/branch/master/graph/badge.svg)](https://codecov.io/gh/sayanarijit/moodlmth)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/python/black)

What..?
-------
[moodlmth](https://github.com/sayanarijit/moodlmth) is the reverse of [htmldoom](https://github.com/sayanarijit/htmldoom)

Usage
-----
```bash
# Convert web page
moodlmth https://google.com

# Convert HTML file
moodlmth /filepath/index.html -o index.py

# Force conversion
moodlmth index.html -o index.py --fast --debug
```


