pattern__premier-essai~20171216-162925.py 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #from __future__ import unicode_literals
  4. from pattern.fr import parse, split
  5. texte_brut = u"Le petit chat rugit alors que l'esclave humain tarde à accomplir sa tâche de nourrissage du maître et seigneur."
  6. texte = parse( texte_brut )
  7. def imprimer_structure_mot ( mot ):
  8. '''imprime la structure de la phrase'''
  9. print 'index : ' + str( mot.index )
  10. print 'string : ' + str( mot.string )
  11. print '_custom_tags : ' + str( mot._custom_tags )
  12. print 'sentence : ' + str( mot.sentence )
  13. print 'pnp : ' + str( mot.pnp )
  14. print 'chunk : ' + str( mot.chunk )
  15. print 'lemma : ' + str( mot.lemma )
  16. print 'type : ' + str( mot.type )
  17. for phrase in split( texte ):
  18. print phrase
  19. '''
  20. print "——————————"
  21. print "mots :"
  22. print phrase.words
  23. print "——————————"
  24. print "groupes de mots :"
  25. print phrase.chunks
  26. print "——————————"
  27. print "structure, phrase :"
  28. print phrase.__dict__.keys()
  29. print "——————————"
  30. print "structure, mot :"
  31. print phrase.words[0].__dict__.keys()
  32. print "——————————"
  33. print "structure, chunk (groupe de mots) :"
  34. print phrase.chunks[0].__dict__.keys()
  35. '''
  36. '''
  37. for mot in phrase.words:
  38. # print mot.__dict__.keys()
  39. print "---"
  40. imprimer_structure_mot( mot )
  41. # imprimer_la_structure_de_la_phrase( phrase.words[0] )
  42. '''