un-premier-essai-avec-pattern~20171216-151051.py 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # coding:utf-8
  2. from pattern.fr import parsetree, parse, split
  3. texte = parse(u"Le petit chat attend que l'esclave humain daigne lui apporter son repas.")
  4. def imprimer_la_structure_de_la_phrase ( phrase ):
  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. #print texte
  15. for phrase in split( texte ):
  16. print phrase.__dict__.keys()
  17. print "---"
  18. print phrase.chunks[0].__dict__.keys()
  19. # print phrase.pnp.__dict__.keys()
  20. #imprimer_la_structure_de_la_phrase( phrase.words[0] )
  21. '''
  22. print "---"
  23. print "contenu :"
  24. print split( texte ).words[0].__dict__.keys()
  25. print ""
  26. print 'index : ' + str( split( texte ).words[0].index )
  27. print 'string : ' + str( split( texte ).words[0].string )
  28. print '_custom_tags : ' + str( split( texte ).words[0]._custom_tags )
  29. print 'sentence : ' + str( split( texte ).words[0].sentence )
  30. print 'pnp : ' + str( split( texte ).words[0].pnp )
  31. print 'chunk : ' + str( split( texte ).words[0].chunk )
  32. print 'lemma : ' + str( split( texte ).words[0].lemma )
  33. print 'type : ' + str( split( texte ).words[0].type )
  34. '''
  35. #print split( texte ).words[0].type
  36. # 'index', 'string', '_custom_tags', 'sentence', 'pnp', 'chunk', 'lemma', 'type'
  37. '''
  38. for lexeme in lexemes:
  39. for chunk in lexeme.chunks:
  40. print chunk.type, [(w.string, w.type) for w in chunk.words]
  41. '''