python-frog 0.6.6__tar.gz → 0.6.8__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-frog
3
- Version: 0.6.6
3
+ Version: 0.6.8
4
4
  Summary: Python binding to Frog, an NLP suite for Dutch doing part-of-speech tagging, lemmatisation, morphological analysis, named-entity recognition, shallow parsing, and dependency parsing.
5
5
  Home-page: https://github.com/proycon/python-frog
6
6
  Author: Maarten van Gompel
@@ -17,6 +17,11 @@ morphological analysis, named entity recognition, shallow parsing, and
17
17
  dependency parsing. The tool itself is implemented in C++
18
18
  (https://languagemachines.github.io/frog). The binding requires Python 3.6 or higher.
19
19
 
20
+ Demo
21
+ ------------------
22
+
23
+ .. image:: https://raw.githubusercontent.com/CLARIAH/wp3-demos/master/python-frog.gif
24
+
20
25
  Installation
21
26
  ----------------
22
27
 
@@ -161,5 +166,3 @@ An example can be found below:
161
166
  for word in output.words():
162
167
  print(word.text() + " " + word.pos() + " " + word.lemma())
163
168
 
164
-
165
-