I'm creating a script to get a pdf and rewrite it in text.
from StringIO import StringIO
from slate import PDF
from subprocess import Popen, PIPE, call
import uuid
#pego pdf existente
url = "/tmp/arquivo.pdf"
with open(url, "r") as arq:...
asked by
27.10.2016 / 22:59