I need to process the uploaded PDF blank form and then extract the fields and then save that in database.
i can use command line like
pdfkt myform.pdf dump_data_fields but i don’t know how i can do in django
any deas
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Its more of a Python thing. You can use Python
subprocesspackage. It allows you to start subprocesses and interact with it using it’s stdin, stdout, and stderr. Here is an example of how you can invoke your command in Python (or Django):