pdf form data extraction with pypdf : how to get only key+values?

I’m not a python guru (lire used to R). I use pypdf package (v3.4.1) to extract data from a pdf form I have created and filled with acrobat. I can read the form fields with f = PdfReader(‘test_formulaire.pdf’) ffields = f.get_fields() ffields is a dict object of size 3 (3 keys : ‘a1′,’a2′,’a5’). Each "key"… Read More pdf form data extraction with pypdf : how to get only key+values?