Metadata-Version: 2.1
Name: pyhtmlgen
Version: 0.0.1
Summary: small package to easily write html code within a script
Home-page: https://github.com/danvran/pyhtmlgen
Author: danvran
Author-email: vranjes@hsu-hh.de
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/danvran/pyhtmlgen/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# pyhtmlgen
pyhtmlgen is a little toolbox which allows you to write html content within your
python script into a variable. This variable then can be saved to a .html file
and be opened with any standard browser.

## supported html objects
* Header h1, h2, h3
* paragraphs
* line breaks
* tables
* html page start and html page end

## supported python objects
* strings
* numpy matrices
* plotly figures

## How to use
* create a variable to store a string within your script
* use pyhtml.start('Title of your page') to add the html head
* add content as you wish
* use pyhtml.end() to close the html file correctly
* write the variable to a file

Have a look at the example.py script for more information


