[Python] Parsing di un file ldif invalido

Alessandro T. tagliare3 a yahoo.it
Mer 14 Set 2022 18:19:50 CEST


On 14/09/22 14:55, Valerio Pachera wrote:
> [...]
> #!/usr/bin/env python3
>
> import sys
> from ldif3 import LDIFParser
>
> ldif_path = sys.argv[1]
>
> with open(ldif_path, 'rb') as ldif_file:
>     parser = LDIFParser(ldif_file)
>
>     for dn, entry in parser.parse():
>         print(dn, entry['cn'])
> [...]
> Ogni suggerimento è ben accetto :-)
>
>

Ciao,
hai provato ad usare l'attributo strict?

     parser = LDIFParser(ldif_file, strict=False)


-- 
Alessandro T.

R: Perché leggiamo dall'alto al basso e da sinistra a destra.
D: Perché dovrei iniziare la risposta all'e-mail dopo il testo citato?



Maggiori informazioni sulla lista Python