# Convert FODP to HTML in Python

> Convert FODP presentations to HTML5 documents in Python. Use the Aspose.Slides Python API to export a presentation as HTML5.

Source: https://products.aspose.com/slides/python-net/conversion/fodp-to-html/
Updated: 2026-08-11



## Convert FODP to HTML in Python

[*Aspose.Slides for Python via .NET*](/slides/python-net/) lets you convert FODP presentations to HTML5 documents programmatically. Load the presentation and call `Presentation.save` with `SaveFormat.HTML5`.

The HTML5 output renders slide content in a browser without requiring Microsoft PowerPoint.

Install the library from [PyPI](https://pypi.org/project/aspose-slides/) by using the following command:

### Console/Terminal

```console
pip install aspose-slides
```

## How to Convert FODP to HTML in Python

These are the steps to convert an FODP file to HTML using Python.

Load the FODP file into a `Presentation` instance.

Call `Presentation.save` with the output path and `SaveFormat.HTML5`.

The presentation is saved as an HTML5 document at the specified path.

## System Requirements

Before running the Python conversion sample, make sure your environment meets these requirements.

- Microsoft Windows, macOS, or 64-bit Linux (see the [system requirements](https://docs.aspose.com/slides/python-net/system-requirements/)).
- Python 3.5 or later.
- Aspose.Slides for Python via .NET installed in your environment.

### This sample code shows how to convert FODP to HTML in Python

```python
with slides.Presentation("presentation.fodp") as presentation:
    presentation.save("presentation.html", slides.export.SaveFormat.HTML5)
```

## Save FODP as HTML in Python

Use Aspose.Slides for Python via .NET to perform FODP-to-HTML conversion in your application.

## Other Supported Conversions

- [FODP TO BMP](/slides/python-net/conversion/fodp-to-bmp/) — Bitmap Image
- [FODP TO EMF](/slides/python-net/conversion/fodp-to-emf/) — Enhanced Metafile Format
- [FODP TO GIF](/slides/python-net/conversion/fodp-to-gif/) — Graphics Interchange Format
- [FODP TO JPG](/slides/python-net/conversion/fodp-to-jpg/) — JPEG Image
- [FODP TO ODP](/slides/python-net/conversion/fodp-to-odp/) — OpenDocument Presentation Format
- [FODP TO OTP](/slides/python-net/conversion/fodp-to-otp/) — OpenDocument Presentation Template
- [FODP TO PDF](/slides/python-net/conversion/fodp-to-pdf/) — Portable Document Format
- [FODP TO PNG](/slides/python-net/conversion/fodp-to-png/) — Portable Network Graphics
- [FODP TO POT](/slides/python-net/conversion/fodp-to-pot/) — PowerPoint 97–2003 Template
- [FODP TO POTM](/slides/python-net/conversion/fodp-to-potm/) — PowerPoint Macro-Enabled Template
- [FODP TO POTX](/slides/python-net/conversion/fodp-to-potx/) — PowerPoint Template
- [FODP TO PPS](/slides/python-net/conversion/fodp-to-pps/) — PowerPoint Slide Show
- [FODP TO PPSM](/slides/python-net/conversion/fodp-to-ppsm/) — Macro-enabled Slide Show
- [FODP TO PPSX](/slides/python-net/conversion/fodp-to-ppsx/) — PowerPoint Slide Show
- [FODP TO PPT](/slides/python-net/conversion/fodp-to-ppt/) — PowerPoint 97-2003 Presentation
- [FODP TO PPTM](/slides/python-net/conversion/fodp-to-pptm/) — Macro-enabled Presentation File
- [FODP TO PPTX](/slides/python-net/conversion/fodp-to-pptx/) — Open XML Presentation Format
- [FODP TO SVG](/slides/python-net/conversion/fodp-to-svg/) — Scalable Vector Graphics
- [FODP TO SWF](/slides/python-net/conversion/fodp-to-swf/) — SWF Format
- [FODP TO TIFF](/slides/python-net/conversion/fodp-to-tiff/) — Tagged Image File Format
- [FODP TO XPS](/slides/python-net/conversion/fodp-to-xps/) — XML Paper Specification
