pattern__phrase_vers_dot--2-label-pos-abbr.py 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. import imports.arguments as ARG
  4. from pattern.fr import parse, split
  5. texte_brut = ARG.obtenir( '-p', u"Suivez les flèches, attention aux trous." )
  6. texte_traite = parse( texte_brut )
  7. numero_mot = -1
  8. def imprimer_erreur ( erreur ):
  9. print '💩 erreur : ' + str( erreur )
  10. def demarrer_graphe () :
  11. print 'digraph G {'
  12. print ' graph [ rankdir=LR ];'
  13. def ajouter_noeud_mot ( word, numero ):
  14. print ' ' + str( numero ) + ' [label="' + word.string + '"];'
  15. def ajouter_noeud_type ( word, numero ):
  16. type_pos = word.type.replace( '.', 'point' ).replace( ',', 'virgule' )
  17. print ' type__' + str( numero ) + '__' + type_pos + ' [label="' + word.type + '"];'
  18. print ' ' + str( numero ) +' -> type__' + str( numero ) + '__' + type_pos;
  19. def lier_a_noeud_precedent ( numero ):
  20. if ( numero_mot > 0 ):
  21. print ' ' + str( numero - 1 ) + ' -> ' + str ( numero )
  22. def clore_graphe () :
  23. print '}'
  24. demarrer_graphe ()
  25. # pour chaque phrase
  26. for phrase in split( texte_traite ):
  27. # pour chaque mot
  28. for word in phrase.words:
  29. # on incrément le numéro du mot
  30. numero_mot = numero_mot + 1
  31. ajouter_noeud_mot ( word, numero_mot )
  32. ajouter_noeud_type ( word, numero_mot )
  33. lier_a_noeud_precedent ( numero_mot )
  34. clore_graphe ()