Skip to main content

No project description provided

Project description

fh-plotly

Use Plotly charts with FastHTML.

Installation

pip install fh-plotly

Make sure to add the right headers to your FastHTML app:

from fasthtml.common import fast_app
from fh_plotly import plotly_headers


app, rt = fast_app(
    hdrs = plotly_headers
)

This ensures that the required javascript and css files are always loaded.

Examples

Run examples/test_app.py to see the examples in action.

python examples/test_app.py

The gist of conversion to Plotly is with the plotly2fasthtml function.

from fh_plotly import plotly2fasthtml

def generate_line_chart():
    df = pd.DataFrame({'y': [1, 2, 3, 2], 'x': [3, 1, 2, 4]})
    fig = px.line(df, x='x', y='y')
    return plotly2fasthtml(fig)

Contributing

Feel free to open an issue or a pull request to add FastHTML Plotly functionality.

Please install with poetry install for contributing.

poetry install

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fh_plotly-0.1.0.tar.gz (2.2 kB view hashes)

Uploaded Source

Built Distribution

fh_plotly-0.1.0-py3-none-any.whl (2.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page