un-premier-essai-avec-pattern~20171216-160058.py 877 B

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