DEV Community

API Tier
API Tier

Posted on

How to Convert Web to PDF Using PYTHON?

WEB TO PDF Conversion

APITier extract web content as PDF from web url or html content. The APITier is converting web url or html content to PDF file. It is very Simple, easy to integrate, self-explanatory API will get you up and running in under 10 minutes. Web to PDF Conversion API is easy to use and fast API.

You can easily call this API using python code. We’ve provided below in python code. Below are two steps for how to convert web to pdf using python.

Step 1

Users can need to create account and register without providing Card Details. Users can register Free with a user name (email) and password. Get free access API KEY

The registered user gets the Unique API KEY, to access the API. API KEY can be used to access endpoints of the WEB Conversion API.

Step 2

Create your PYTHON Project and install their all dependencies. After that add this code.

In this code need to add

  • Your Web URL or HTML content. For Example - https://www.apitier.com
  • Your APITier API KEY. For Example - hv90CBlVBN9R6Tbfx4wsg3CxRTXyk9CA6bvx2f11
import requests
import json

url = "https://web.apitier.com/convert/url/to/pdf?x-api-key={x-api-key}"

payload = json.dumps({
  "url": "https://www.apitier.com"
})
headers = {
  'Content-Type': 'application/json'
}

response = requests.request("POST", url, headers=headers, data=payload)

print(response.text)
Enter fullscreen mode Exit fullscreen mode

Top comments (0)