pattern__premier-essai~20171216-163012.py 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 "——————————"
  19. print "mots :"
  20. print phrase.words
  21. print "——————————"
  22. print "groupes de mots :"
  23. print phrase.chunks
  24. '''
  25. print "——————————"
  26. print "structure, phrase :"
  27. print phrase.__dict__.keys()
  28. print "——————————"
  29. print "structure, mot :"
  30. print phrase.words[0].__dict__.keys()
  31. print "——————————"
  32. print "structure, chunk (groupe de mots) :"
  33. print phrase.chunks[0].__dict__.keys()
  34. '''
  35. '''
  36. for mot in phrase.words:
  37. # print mot.__dict__.keys()
  38. print "---"
  39. imprimer_structure_mot( mot )
  40. # imprimer_la_structure_de_la_phrase( phrase.words[0] )
  41. '''