Skip to main content

Aspose.HTML for Python via .NET is a powerful API for Python that provides a headless browser functionality, allowing you to work with HTML documents in a variety of ways. With this API, you can easily create new HTML documents or open existing ones from different sources. Once you have the document, you can perform various manipulation operations, such as removing and replacing HTML nodes.

Project description

Process & Manipulate HTML via Python API

banner

Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support

Aspose.HTML for Python via .NET is a powerful API for Python that provides headless browser functionality, allowing you to work with HTML documents. With this API, you can easily create new HTML documents or open existing ones from different sources. Once you have the document, you can perform various manipulation operations, such as removing and replacing HTML nodes, rendering, and converting HTML to other popular formats, etc.

HTML API Features

The following are some popular features of Aspose.HTML for Python via .NET:

General Features

  • Create, Load, and Read Documents. Create, load, and modify HTML, XHTML, Markdown, or SVG documents with full control over elements, attributes, and structure using a powerful DOM-based API.
  • Load EPUB and MHTML file Formats. Open, read, and convert EPUB and MHTML documents with full support for their internal structure and linked resources.
  • Edit Documents. Insert, remove, clone, or replace HTML elements at any level of the DOM tree for granular control over content.
  • Save HTML Documents. Save documents along with all linked resources like CSS, fonts, and images using customizable saving options.
  • Navigate HTML. Navigate through documents using either NodeIterator or TreeWalker.
  • Sandboxing. Configure a Sandbox environment that is independent of the execution machine, ensuring a secure and isolated environment for running and testing.

Data Extraction

  • DOM Traversal. Navigate and manipulate the DOM tree using W3C-compliant traversal interfaces to inspect and retrieve content from HTML documents.
  • XPath Queries. Perform high-performance XPath queries to find and extract target content from large HTML documents.
  • CSS Selector and JavaScript. Use CSS selector queries and JavaScript execution to dynamically locate and extract specific elements.
  • Extract CSS Styling Information. Retrieve and analyze inline styles, embedded <style> blocks, and external stylesheets within HTML documents.
  • Extract any Data from HTML Documents. Text, attributes, form values, metadata, tables, links, or media elements: Aspose.HTML for Python via .NET enables the accurate and efficient extraction of any content for processing, analysis, or editing.

Conversion and Rendering

  • Convert Documents. Convert HTML, XHTML, SVG, MHTML, MD, and EPUB files to a wide range of formats, including PDF, XPS, DOCX, and different image formats (PNG, JPEG, BMP, TIFF, and GIF).
  • Custom Conversion Settings. Adjust page size, resolution, stylesheets, resource management, script execution, and other settings during conversion to fine-tune the output.
  • Markdown Support. Convert HTML to Markdown or vice versa for content migration and Markdown-based workflows.
  • Timeout Control. Set and control the timeout for the rendering process.

Advanced HTML Features

  • Monitor DOM Changes. Use MutationObserver to monitor DOM modifications.
  • HTML Templates. Populate HTML documents with external data sources such as XML and JSON.
  • Output Streams. Support for both single (PDF, XPS) and multiple (image formats) output file streams.
  • Check Web Accessibility. Check web documents against WCAG standards using built-in validators and accessibility rule sets.

Supported File Formats

Format Description Load Save
HTML HyperText Markup Language format ✔️ ✔️
XHTML eXtensible HyperText Markup Language format ✔️ ✔️
MHTML MIME HTML format ✔️ ✔️
EPUB E-book file format ✔️
SVG Scalable Vector Graphics format ✔️ ✔️
MD Markdown markup language format ✔️ ✔️
PDF Portable Document Format ✔️
XPS XML Paper Specification format ✔️
DOCX Microsoft Word Open XML document format ✔️
TIFF Tagged Image File Format ✔️
JPEG Joint Photographic Experts Group format ✔️
PNG Portable Network Graphics format ✔️
BMP Bitmap Picture format ✔️
GIF Graphics Interchange Format ✔️
WEBP Modern image format providing both lossy and lossless compression ✔️

Platform Independence

Aspose.HTML for Python via .NET can be used to develop applications for a vast range of operating systems, such as Windows, where Python 3.5 or later is installed. You can build both 32-bit and 64-bit Python applications.

Get Started

Are you ready to give Aspose.HTML for Python via .NET a try?

Simply run pip install aspose-html-net from the Console to fetch the package. If you already have Aspose.HTML for Python via .NET and want to upgrade the version, please run pip install --upgrade aspose-html-net to get the latest version.

You can run the following snippets in your environment to see how Aspose.HTML works, or check out the GitHub Repository or Aspose.HTML for Python via .NET Documentation for other common use cases.

Create a New HTML Document

If you want to create an HTML document programmatically from scratch, use the parameterless constructor:

import aspose.html as ah

# Initialize an empty HTML document
with ah.HTMLDocument() as document:
    # Create a text node and add it to the document
    text = document.create_text_node("Hello, World!")
    document.body.append_child(text)

    # Save the document to a file
    document.save("create-new-document.html")

Source - Create a Document in Python

Extract Images from Website

Here is an example of how to use Aspose.HTML for Python via .NET to find images specified by the <img> element:

import os
import aspose.html as ah
import aspose.html.net as ahnet

# Prepare output directory
output_dir = "output/"
os.makedirs(output_dir, exist_ok=True)

# Open HTML document from URL
with ah.HTMLDocument("https://docs.aspose.com/svg/net/drawing-basics/svg-color/") as doc:
    # Collect all <img> elements
    images = doc.get_elements_by_tag_name("img")

    # Get distinct relative image URLs
    urls = set(img.get_attribute("src") for img in images)

    # Create absolute image URLs
    abs_urls = [ah.Url(url, doc.base_uri) for url in urls]

    for url in abs_urls:
        # Create a network request
        request = ahnet.RequestMessage(url)

        # Send request
        response = doc.context.network.send(request)

        # Check whether a response is successful
        if response.is_success:
            # Parse the URL to get the file name
            file_name = os.path.basename(url.pathname)

            # Save image to the local file system
            with open(os.path.join(output_dir, file_name), "wb") as f:
                f.write(response.content.read_as_byte_array())

Source - Extract Images From Website in Python

HTML to PDF in one line of code

Aspose.HTML for Python via .NET allows you to convert HTML to PDF, XPS, Markdown, MHTML, PNG, JPEG, and other file formats. The following snippet demonstrates the conversion from HTML to PDF literally with a single line of code!

import aspose.html.converters as conv
import aspose.html.saving as sav

# Convert HTML to PDF
conv.Converter.convert_html("document.html", sav.PdfSaveOptions(), "document.pdf")

Source - Convert HTML to PDF in Python

Convert HTML to Markdown (MD)

The following snippet demonstrates the conversion from HTML to GIT-based Markdown (MD) Format:

import aspose.html.converters as conv
import aspose.html.saving as sav

# Prepare HTML code and save it to a file
code = "<h1>Header 1</h1>" \
         "<h2>Header 2</h2>" \
         "<p>Hello, World!!</p>"
with open("document.html", "w", encoding="utf-8") as f:
         f.write(code)
         f.close()
         # Call the convert_html() method to convert HTML to Markdown
         conv.Converter.convert_html("document.html", sav.MarkdownSaveOptions.git, "output.md")

Source - Creating an HTML Document

Convert EPUB to PDF using SaveOptions

The PdfSaveOptions class provides numerous properties that give you full control over a wide range of parameters and improve the process of converting EPUB to PDF format. In the example, we use the page_setup, jpeg_quality, and css.media_type properties:

import os
import aspose.html.converters as conv
import aspose.html.saving as sav
import aspose.html.drawing as dr

# Setup directories and define paths
output_dir = "output/"
input_dir = "data/"
os.makedirs(output_dir, exist_ok=True)

document_path = os.path.join(input_dir, "input.epub")
save_path = os.path.join(output_dir, "epub-to-pdf.pdf")

# Open an existing EPUB file for reading
with open(document_path, "rb") as stream:

    # Create an instance of PdfSaveOptions
    options = sav.PdfSaveOptions()
    options.page_setup.any_page = dr.Page(dr.Size(800, 600), dr.Margin(10, 10, 10, 10))
    options.css.media_type.PRINT

    # Convert EPUB to PDF
    conv.Converter.convert_epub(stream, options, save_path)

Source - Convert EPUB to PDF in Python

Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

aspose_html_net-26.1.0-py3-none-win_amd64.whl (59.0 MB view details)

Uploaded Python 3Windows x86-64

aspose_html_net-26.1.0-py3-none-win32.whl (51.7 MB view details)

Uploaded Python 3Windows x86

aspose_html_net-26.1.0-py3-none-manylinux1_x86_64.whl (82.9 MB view details)

Uploaded Python 3

aspose_html_net-26.1.0-py3-none-macosx_11_0_arm64.whl (56.3 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

aspose_html_net-26.1.0-py3-none-macosx_10_14_x86_64.whl (70.2 MB view details)

Uploaded Python 3macOS 10.14+ x86-64

File details

Details for the file aspose_html_net-26.1.0-py3-none-win_amd64.whl.

File metadata

File hashes

Hashes for aspose_html_net-26.1.0-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 35b0726bd3f231ef7e4372849c3674430f3f449b8df6b8690c746501f7402a95
MD5 8fb8df3d9b274a6176d3cb09f217c55c
BLAKE2b-256 fe1e649063d7b6f7741270bfe1dacc4581f029325b3286261e7910b3a26da2df

See more details on using hashes here.

File details

Details for the file aspose_html_net-26.1.0-py3-none-win32.whl.

File metadata

File hashes

Hashes for aspose_html_net-26.1.0-py3-none-win32.whl
Algorithm Hash digest
SHA256 081c4f3164f36badbe5c85bdc278941a0a5452ca4a774106054729e47e58eb82
MD5 2f0b29a7fe106e5baccb3b56d81f37c0
BLAKE2b-256 0e4039ee1eb6bc21d5b017113518932215cd9bfd9faad22f15c7c047c0e1ccf0

See more details on using hashes here.

File details

Details for the file aspose_html_net-26.1.0-py3-none-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for aspose_html_net-26.1.0-py3-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e1dd31deaac1bad4bf4ef3b0b4ffac4c1ab004f2bbe4e5f29326405de41d46c0
MD5 108dd4faa95a4c985dfd6f2b3c8c7c4e
BLAKE2b-256 cb81c6ef5895b3ac9eabc4565a9924cdc88cbea32fed67db6a783b487b244f77

See more details on using hashes here.

File details

Details for the file aspose_html_net-26.1.0-py3-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aspose_html_net-26.1.0-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21bf85279d081e7d4d1bdd29a3c9b3e7dff06c8fbdeb18530fc517404f10b056
MD5 d935f2ecac441045c36d712a653820d6
BLAKE2b-256 84278736327a93ecb3dd158a4cf6d4cae57784482ea9851e3b3e9b90a49335f2

See more details on using hashes here.

File details

Details for the file aspose_html_net-26.1.0-py3-none-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for aspose_html_net-26.1.0-py3-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 393ba22255c79ffe846e58ff461c6b20ea3a32d171a448e389a6dddb1fd7b5f5
MD5 72fb4e9ec9b88300f8a1ed18131e1c0d
BLAKE2b-256 6d92e304829aac1268488ca9f0ddc70306599520239618ab326387268b2771eb

See more details on using hashes here.

Supported by

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