-
-
Save abevieiramota/50e81cdb6706d4f40d72b4985b081961 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
principal = {'titulos': []} | |
for match_titulo in FIND_TITLE.finditer(cf): | |
titulo = {'titulo_identificador': match_titulo.group('titulo_numero'), 'capitulos': []} | |
principal['titulos'].append(titulo) | |
for match_capitulo in FIND_CHAPTER.finditer(match_titulo.group(0)): | |
capitulo = { 'capitulo_identificador': match_capitulo.group('capitulo_numero')} | |
titulo['capitulos'].append(capitulo) | |
principal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment