un-premier-essai-avec-pattern~20171216-155808.py 936 B

123456789101112131415161718192021222324252627
  1. # coding:utf-8
  2. from pattern.fr import parse, split
  3. texte = parse(u"Le petit chat attend que l'esclave humain daigne lui apporter son repas.")
  4. def imprimer_structure_mot ( mot ):
  5. '''imprime la structure de la phrase'''
  6. print 'index : ' + str( phrase.index )
  7. print 'string : ' + str( phrase.string )
  8. print '_custom_tags : ' + str( phrase._custom_tags )
  9. print 'sentence : ' + str( phrase.sentence )
  10. print 'pnp : ' + str( phrase.pnp )
  11. print 'chunk : ' + str( phrase.chunk )
  12. print 'lemma : ' + str( phrase.lemma )
  13. print 'type : ' + str( phrase.type )
  14. for phrase in split( texte ):
  15. # print phrase.__dict__.keys()
  16. # print "---"
  17. # print phrase.chunks[0].__dict__.keys()
  18. # print phrase.pnp.__dict__.keys()
  19. for mot in phrase.words:
  20. print mot.__dict__.keys()
  21. print "---"
  22. #imprimer_structure_mot( mot )
  23. # imprimer_la_structure_de_la_phrase( phrase.words[0] )