Metadata-Version: 2.1
Name: HTMLrenderer
Version: 0.1.6
Summary: A small package for rendering HTML pages in jupyter notebooks
Home-page: https://github.com/c17hawke/HTMLrenderer-c17hawke
Author: c17hawke
Author-email: sunny.c17hawke@gmail.com
License: MIT
Project-URL: Bug Tracker, https://github.com/c17hawke/HTMLrenderer-c17hawke/issues
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: ensure (==1.0.2)
Requires-Dist: py-youtube (==1.1.7)
Provides-Extra: testing
Requires-Dist: pytest (>=7.1.3) ; extra == 'testing'
Requires-Dist: mypy (>=0.971) ; extra == 'testing'
Requires-Dist: flake8 (>=5.0.4) ; extra == 'testing'
Requires-Dist: tox (>=3.25.1) ; extra == 'testing'

[![Python application](https://github.com/c17hawke/HTMLrenderer-c17hawke/actions/workflows/ci.yml/badge.svg)](https://github.com/c17hawke/HTMLrenderer-c17hawke/actions/workflows/ci.yml)

# HTMLrenderer-c17hawke
A small package for rendering HTML pages in jupyter notebooks

# How to use -

* install the latest package 

> * in jupyter notebook -
```
    !pip install HTMLrenderer
```

> * in command prompt -
```bash    
    pip install HTMLrenderer
```

* Now run below snippets of code in your jupyter-notebooks cell to render your website as an IFrame-

## default use case -
```python
from HTMLrenderer.render import render_site

URL="use your https URL here"
render_site(URL)
```

## custom use case -
```python
from HTMLrenderer.render import render_site

URL="use your https URL here"
render_site(URL, width="100%", height=600)
```
