Flask based API allowing users to send files to retrieve clean text without any images, signs and so on...
Create a post request, attach a file and you'll receive plain text.
- Docx
- doc
- txt
import requests
with open('test.pdf', 'rb') as f:
resp = requests.post("https://file-parser-quzy.onrender.com/plaintext", files={'file': f})
print(resp.text)