PDF Text Extractor

GRATIS CON POSSIBILITร€ DI UPGRADE
Da Jeremy zhang | Aggiornamento a month ago | Tools
Popolaritร 

9.1 / 10

Latenza

780ms

Livello di servizio

83%

Health Check

N/A

README

Extract Text Example (Python)

import requests

filepath = "your_local_file.pdf"
files = {'file': open(filepath, 'rb')}

url = "https://pdf-text-extractor.p.rapidapi.com/extract_text"

# remember not to put 'content-type': "multipart/form-data" in the header!
headers = {
    'x-rapidapi-host': "pdf-text-extractor.p.rapidapi.com",
    'x-rapidapi-key': {your_key}  
    }

response = requests.post(url, files=files, headers=headers)
print(response.text)
Follower: 0
Creatore dell'API:
Rapid account: Jeremy Zhang
Jeremy zhang
zhangyue9306
Accedi per valutare l'API
Valutazione: 5 - Voti: 1