Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/c17hawke/htmlrenderer-c17hawke
A small package for rendering HTML pages in jupyter notebooks
https://github.com/c17hawke/htmlrenderer-c17hawke
Last synced: 23 days ago
JSON representation
A small package for rendering HTML pages in jupyter notebooks
- Host: GitHub
- URL: https://github.com/c17hawke/htmlrenderer-c17hawke
- Owner: c17hawke
- License: mit
- Created: 2021-08-27T15:37:41.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-07T23:24:04.000Z (about 2 years ago)
- Last Synced: 2024-08-10T21:21:33.348Z (3 months ago)
- Language: Jupyter Notebook
- Homepage: https://pypi.org/project/HTMLrenderer/
- Size: 539 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![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_siteURL="use your https URL here"
render_site(URL)
```## custom use case -
```python
from HTMLrenderer.render import render_siteURL="use your https URL here"
render_site(URL, width="100%", height=600)
```