pattern__premier-essai~20171216-163720.py 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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_traite = parse( texte_brut )
  7. def imprimer_erreur ( erreur ):
  8. print '💩 erreur : ' + str( erreur )
  9. def imprimer_structure_mot ( mot ):
  10. '''imprime la structure de la phrase'''
  11. print 'index : ' + str( mot.index )
  12. print 'string : ' + str( mot.string )
  13. print '_custom_tags : ' + str( mot._custom_tags )
  14. print 'sentence : ' + str( mot.sentence )
  15. print 'pnp : ' + str( mot.pnp )
  16. print 'chunk : ' + str( mot.chunk )
  17. print 'lemma : ' + str( mot.lemma )
  18. print 'type : ' + str( mot.type )
  19. for phrase in split( texte_traite ):
  20. print "——————————"
  21. print "mots :"
  22. try:
  23. print phrase.words
  24. except Exception as erreur:
  25. imprimer_erreur( erreur )
  26. print "——————————"
  27. print "groupes de mots :"
  28. try:
  29. print str(phrase.chunks)
  30. except Exception as erreur:
  31. imprimer_erreur( erreur )
  32. print "——————————"
  33. print "structure, phrase :"
  34. try:
  35. print phrase.__dict__.keys()
  36. except Exception as erreur:
  37. imprimer_erreur( erreur )
  38. print "——————————"
  39. print "structure, mot :"
  40. try:
  41. print phrase.words[0].__dict__.keys()
  42. except Exception as erreur:
  43. imprimer_erreur( erreur )
  44. print "——————————"
  45. print "structure, chunk (groupe de mots) :"
  46. print phrase.chunks[0].__dict__.keys()