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.
- {python-frog-0.6.6/python_frog.egg-info → python-frog-0.6.8}/PKG-INFO +1 -1
- {python-frog-0.6.6 → python-frog-0.6.8}/README.rst +5 -2
- python-frog-0.6.8/frog_wrapper.cpp +19880 -0
- {python-frog-0.6.6 → python-frog-0.6.8}/frog_wrapper.pyx +1 -1
- {python-frog-0.6.6 → python-frog-0.6.8/python_frog.egg-info}/PKG-INFO +1 -1
- {python-frog-0.6.6 → python-frog-0.6.8}/setup.py +11 -2
- python-frog-0.6.6/frog_wrapper.cpp +0 -13417
- {python-frog-0.6.6 → python-frog-0.6.8}/LICENSE +0 -0
- {python-frog-0.6.6 → python-frog-0.6.8}/frog_classes.pxd +0 -0
- {python-frog-0.6.6 → python-frog-0.6.8}/libfolia_classes.pxd +0 -0
- {python-frog-0.6.6 → python-frog-0.6.8}/pyproject.toml +0 -0
- {python-frog-0.6.6 → python-frog-0.6.8}/python_frog.egg-info/SOURCES.txt +0 -0
- {python-frog-0.6.6 → python-frog-0.6.8}/python_frog.egg-info/dependency_links.txt +0 -0
- {python-frog-0.6.6 → python-frog-0.6.8}/python_frog.egg-info/requires.txt +0 -0
- {python-frog-0.6.6 → python-frog-0.6.8}/python_frog.egg-info/top_level.txt +0 -0
- {python-frog-0.6.6 → python-frog-0.6.8}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python-frog
|
|
3
|
-
Version: 0.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
|
-
|