HTML to PDF with Python and Playwright

Install Playwright and Playwright client for Python

pip install pytest-playwright
playwright install

Convert HTML to PDF and save to file

import asyncio
from playwright.async_api import async_playwright

async def main():
    async with async_playwright() as p:
        browser = await p.chromium.launch()
        page = await browser.new_page()
        await page.set_content('<html><body><h1>Hello World</h1></body></html>')
        await page.pdf(path='html.pdf')
        await browser.close()

asyncio.run(main())

Find out how to change the size of the viewport with Python and Playwright.

We created Urlbox to make converting HTML to images easy

Learn more about our website screenshot API.