├── requirements.txt
├── setup.cfg
├── tests
├── __init__.py
├── test_lemmatizers.py
├── test_np_extractors.py
├── test_parsers.py
├── test_sentiments.py
└── test_taggers.py
├── docs
└── src
│ ├── authors.rst
│ ├── readme.rst
│ ├── contributing.rst
│ ├── changelog.rst
│ ├── _themes
│ └── sphinx_rtd_theme
│ │ ├── static
│ │ ├── fonts
│ │ │ ├── Lato-Bold.ttf
│ │ │ ├── Inconsolata.ttf
│ │ │ ├── Lato-Regular.ttf
│ │ │ ├── Lato
│ │ │ │ ├── lato-bold.eot
│ │ │ │ ├── lato-bold.ttf
│ │ │ │ ├── lato-bold.woff
│ │ │ │ ├── lato-bold.woff2
│ │ │ │ ├── lato-italic.eot
│ │ │ │ ├── lato-italic.ttf
│ │ │ │ ├── lato-italic.woff
│ │ │ │ ├── lato-italic.woff2
│ │ │ │ ├── lato-regular.eot
│ │ │ │ ├── lato-regular.ttf
│ │ │ │ ├── lato-regular.woff
│ │ │ │ ├── lato-bolditalic.eot
│ │ │ │ ├── lato-bolditalic.ttf
│ │ │ │ ├── lato-regular.woff2
│ │ │ │ ├── lato-bolditalic.woff
│ │ │ │ └── lato-bolditalic.woff2
│ │ │ ├── RobotoSlab-Bold.ttf
│ │ │ ├── Inconsolata-Bold.ttf
│ │ │ ├── RobotoSlab-Regular.ttf
│ │ │ ├── Inconsolata-Regular.ttf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ ├── fontawesome-webfont.woff2
│ │ │ └── RobotoSlab
│ │ │ │ ├── roboto-slab-v7-bold.eot
│ │ │ │ ├── roboto-slab-v7-bold.ttf
│ │ │ │ ├── roboto-slab-v7-bold.woff
│ │ │ │ ├── roboto-slab-v7-bold.woff2
│ │ │ │ ├── roboto-slab-v7-regular.eot
│ │ │ │ ├── roboto-slab-v7-regular.ttf
│ │ │ │ ├── roboto-slab-v7-regular.woff
│ │ │ │ └── roboto-slab-v7-regular.woff2
│ │ ├── css
│ │ │ └── badge_only.css
│ │ └── js
│ │ │ └── theme.js
│ │ ├── theme.conf
│ │ ├── searchbox.html
│ │ ├── __init__.py
│ │ ├── versions.html
│ │ ├── search.html
│ │ ├── footer.html
│ │ ├── breadcrumbs.html
│ │ ├── layout_old.html
│ │ └── layout.html
│ ├── license.rst
│ ├── quickstart.rst
│ ├── extensions.rst
│ ├── advanced_usage.rst
│ ├── _templates
│ ├── side-secondary.html
│ └── side-primary.html
│ ├── docs_makefile.rst
│ ├── make_info.rst
│ ├── api_reference.rst
│ ├── project_makefile.rst
│ ├── index.rst
│ ├── Makefile
│ └── conf.py
├── requirements-dev.txt
├── requirements-tests.txt
├── MANIFEST.in
├── tox.ini
├── .travis.yml
├── textblob-de.wpr
├── textblob-de_wing6.wpr
├── textblob-de_wing7.wpr
├── textblob_de
├── __init__.py
├── ext
│ └── _pattern
│ │ ├── text
│ │ └── de
│ │ │ ├── __main__.py
│ │ │ ├── de-morphology.txt
│ │ │ ├── de-context.txt
│ │ │ └── __init__.py
│ │ ├── compat.py
│ │ └── __init__.py
├── packages.py
├── base.py
├── taggers.py
├── lemmatizers.py
├── sentiments.py
├── parsers.py
├── np_extractors.py
└── compat.py
├── .gitignore
├── AUTHORS.rst
├── LICENSE
├── CONTRIBUTING.rst
├── run_tests.py
├── NOTICE
├── setup.py
├── Makefile
├── prepare_docs.py
├── HISTORY.rst
├── README.md
└── README.rst
/requirements.txt:
--------------------------------------------------------------------------------
1 | textblob>=0.9.0
2 |
--------------------------------------------------------------------------------
/setup.cfg:
--------------------------------------------------------------------------------
1 | [wheel]
2 | universal = 1
3 |
--------------------------------------------------------------------------------
/tests/__init__.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 |
--------------------------------------------------------------------------------
/docs/src/authors.rst:
--------------------------------------------------------------------------------
1 | .. include:: ../../AUTHORS.rst
--------------------------------------------------------------------------------
/docs/src/readme.rst:
--------------------------------------------------------------------------------
1 | .. include:: ../../README.rst
2 |
--------------------------------------------------------------------------------
/docs/src/contributing.rst:
--------------------------------------------------------------------------------
1 | .. include:: ../../CONTRIBUTING.rst
--------------------------------------------------------------------------------
/requirements-dev.txt:
--------------------------------------------------------------------------------
1 | sphinx
2 | sphinx_rtd_theme
3 | wheel
4 | twine
--------------------------------------------------------------------------------
/docs/src/changelog.rst:
--------------------------------------------------------------------------------
1 | .. _changelog:
2 |
3 | .. include:: ../../HISTORY.rst
4 |
--------------------------------------------------------------------------------
/requirements-tests.txt:
--------------------------------------------------------------------------------
1 | setuptools
2 | pep8==1.5.7
3 | autopep8
4 | flake8
5 | nose>=1.3.0
6 | pytest
7 | tox>=1.5.0
8 | docformatter
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato-Bold.ttf
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/Inconsolata.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/Inconsolata.ttf
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato-Regular.ttf
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-bold.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-bold.eot
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-bold.ttf
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-bold.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-bold.woff
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/RobotoSlab-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/RobotoSlab-Bold.ttf
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/Inconsolata-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/Inconsolata-Bold.ttf
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-bold.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-bold.woff2
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-italic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-italic.eot
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-italic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-italic.ttf
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-italic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-italic.woff
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-italic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-italic.woff2
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-regular.eot
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-regular.ttf
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-regular.woff
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/RobotoSlab-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/RobotoSlab-Regular.ttf
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/Inconsolata-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/Inconsolata-Regular.ttf
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-bolditalic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-bolditalic.eot
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-bolditalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-bolditalic.ttf
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-regular.woff2
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-bolditalic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-bolditalic.woff
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-bolditalic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/Lato/lato-bolditalic.woff2
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/RobotoSlab/roboto-slab-v7-bold.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/RobotoSlab/roboto-slab-v7-bold.eot
--------------------------------------------------------------------------------
/docs/src/_themes/sphinx_rtd_theme/static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/markuskiller/textblob-de/HEAD/docs/src/_themes/sphinx_rtd_theme/static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf
--------------------------------------------------------------------------------
/docs/src/license.rst:
--------------------------------------------------------------------------------
1 | =======
2 | LICENSE
3 | =======
4 |
5 | `Human readable generic MIT License
6 | 8 |
9 | 10 | 11 |12 | TextBlob is a Python (2 and 3) library for processing textual data. It provides a consistent API for diving into common natural language processing (NLP) tasks such as part-of-speech tagging, noun phrase extraction, sentiment analysis, and more. 13 |
14 | 15 | 16 |{{ _('Your search did not match any documents. Please make sure that all words are spelled correctly and that you\'ve selected enough categories.') }}
36 | {% endif %} 37 | {% endif %} 38 |{{ context|e }}
45 |6 | 8 |
9 | 10 |11 | TextBlob is a Python (2 and 3) library for processing textual data. It provides a consistent API for diving into common natural language processing (NLP) tasks such as part-of-speech tagging, noun phrase extraction, sentiment analysis, and more. 12 |
13 | 14 | 15 |If you find TextBlob useful, please consider supporting its author:
30 | 31 |32 | 35 |
36 | 37 | 40 | 41 |Your donation helps move TextBlob forward.
-------------------------------------------------------------------------------- /tests/test_np_extractors.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """Test cases for np extractors.""" 3 | from __future__ import unicode_literals 4 | import unittest 5 | from nose.tools import * # PEP8 asserts 6 | 7 | from textblob_de import PatternParserNPExtractor, NLTKPunktTokenizer 8 | 9 | 10 | class TestPatternParserNPExtractor(unittest.TestCase): 11 | 12 | def setUp(self): 13 | self.extractor = PatternParserNPExtractor( 14 | tokenizer=NLTKPunktTokenizer()) 15 | self.text = "Peter hat ein schönes Auto. Er wohnt in Zürich. " \ 16 | "Seine zwei Katzen heissen Tim und Struppi." 17 | 18 | self.parsed_sentences_expected = [ 19 | 'Peter/NNP/B-NP/O hat/VB/B-VP/O ein/DT/B-NP/O ' 20 | 'schönes/JJ/I-NP/O Auto/NN/I-NP/O ././O/O', 21 | 'Er/PRP/B-NP/O wohnt/NN/I-NP/O in/IN/B-PP/B-PNP ' 22 | 'Zürich/NNP/B-NP/I-PNP ././O/O', 'Seine/PRP$/B-NP/O ' 23 | 'zwei/CD/I-NP/O Katzen/NNS/I-NP/O heissen/VB/B-VP/O ' 24 | 'Tim/NNP/B-NP/O und/CC/I-NP/O Struppi/NNP/I-NP/O ././O/O'] 25 | 26 | def test_parse_text(self): 27 | assert_equal( 28 | self.extractor._parse_text( 29 | self.text), 30 | self.parsed_sentences_expected) 31 | 32 | def test_extract(self): 33 | noun_phrases = self.extractor.extract(self.text) 34 | assert_true("Peter" in noun_phrases) 35 | assert_true("schönes Auto" in noun_phrases) 36 | # only words tagged as nouns are capitalized other words are normalised 37 | assert_true("er" in noun_phrases) 38 | assert_true("Zürich" in noun_phrases) 39 | # added 'und'/'oder' to noun phrase splitters and insignificant 40 | assert_false("Tim und Struppi" in noun_phrases) 41 | 42 | if __name__ == '__main__': 43 | unittest.main() 44 | -------------------------------------------------------------------------------- /docs/src/api_reference.rst: -------------------------------------------------------------------------------- 1 | .. _api: 2 | 3 | API Reference 4 | ============= 5 | 6 | Blob Classes 7 | ------------ 8 | 9 | .. automodule:: textblob_de.blob 10 | :members: 11 | :inherited-members: 12 | 13 | .. _api_base_classes: 14 | 15 | Base Classes 16 | ------------ 17 | 18 | .. automodule:: textblob_de.base 19 | :members: 20 | 21 | Tokenizers 22 | ---------- 23 | 24 | .. automodule:: textblob_de.tokenizers 25 | :members: 26 | :inherited-members: 27 | 28 | POS Taggers 29 | ----------- 30 | 31 | .. automodule:: textblob_de.taggers 32 | :members: 33 | :inherited-members: 34 | 35 | Noun Phrase Extractors 36 | ---------------------- 37 | 38 | .. automodule:: textblob_de.np_extractors 39 | :members: BaseNPExtractor, ConllExtractor, FastNPExtractor 40 | :inherited-members: 41 | 42 | 43 | Sentiment Analyzers 44 | ------------------- 45 | 46 | .. automodule:: textblob_de.sentiments 47 | :members: 48 | :inherited-members: 49 | 50 | 51 | Parsers 52 | ------- 53 | 54 | .. automodule:: textblob_de.parsers 55 | :members: 56 | :inherited-members: 57 | 58 | .. _api_classifiers: 59 | 60 | Classifiers (from `TextBlob`_ main package) 61 | ------------------------------------------- 62 | 63 | .. automodule:: textblob.classifiers 64 | :members: 65 | :inherited-members: 66 | 67 | Blobber 68 | ------- 69 | 70 | .. autoclass:: textblob_de.blob.BlobberDE 71 | :members: 72 | :special-members: 73 | :exclude-members: __weakref__ 74 | 75 | File Formats (from `TextBlob`_ main package) 76 | -------------------------------------------- 77 | 78 | .. automodule:: textblob.formats 79 | :members: 80 | :inherited-members: 81 | 82 | 83 | Exceptions (from `TextBlob`_ main package) 84 | ------------------------------------------ 85 | .. module:: textblob.exceptions 86 | 87 | .. autoexception:: textblob.exceptions.MissingCorpusException 88 | 89 | 90 | .. _TextBlob: http://textblob.readthedocs.org/ 91 | 92 | -------------------------------------------------------------------------------- /docs/src/_themes/sphinx_rtd_theme/footer.html: -------------------------------------------------------------------------------- 1 | 52 | 53 | -------------------------------------------------------------------------------- /tests/test_parsers.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Code adapted from the main `TextBlob`_ library. 3 | # 4 | # :repo: `https://github.com/sloria/TextBlob`_ 5 | # :source: tests/test_parsers.py 6 | # :version: 2013-10-21 (a88e86a76a) 7 | # 8 | # :modified: 2014-08-29asdf asdf asdf asdf 22
203 | {%- endblock %} 204 | 205 | 206 | 207 | -------------------------------------------------------------------------------- /textblob_de/ext/_pattern/text/de/de-morphology.txt: -------------------------------------------------------------------------------- 1 | XX e fchar ADJA 926.737301587302 2 | ADJA t fhassuf 1 VVPP 245.959523809524 3 | XX e fchar ADJA 968.372222222222 4 | ADJA t fhassuf 1 VVPP 244.85 5 | XX 1 fchar CARDNUM 130.4 6 | ADJA . fgoodleft VVINF 112.697421269564 7 | - hassuf 1 TRUNC 91 8 | XX i fchar ADJD 60 9 | XX 0 fchar CARDNUM 58.9333333333333 10 | sich goodleft VVFIN 46.8139830308869 11 | sche hassuf 4 ADJA 45 12 | NN Dr. fgoodright NE 40 13 | ADJA e faddsuf 1 ADJD 37.75 14 | XX 2 fchar CARDNUM 32 15 | XX t fchar VVFIN 30 16 | ADJA die fgoodleft VVFIN 29.3333333333333 17 | VVPP die fgoodleft VVFIN 24.2666666666667 18 | ig hassuf 2 ADJD 24 19 | . hassuf 1 ADJA 20.2 20 | XX 5 fchar CARDNUM 20 21 | lich hassuf 4 ADJD 19 22 | ADJA zu fgoodright VVINF 18.0166666666667 23 | ) char LINUM 18 24 | < char SGML 16.0041666666667 25 | Ü char NN 16 26 | ADJA werden fgoodleft VVPP 15.5 27 | XX 3 fchar CARDNUM 15 28 | ist goodright ADV 14.2858158208037 29 | einem goodleft APPR 13.9597235705344 30 | worden goodleft VVPP 13.5 31 | ADJD t fhassuf 1 VVFIN 13 32 | ADJA der fgoodleft VVFIN 12 33 | asse hassuf 4 NE 12 34 | da haspref 2 PAV 11.9545454545455 35 | NN chen fhassuf 4 ADJA 11 36 | end hassuf 3 ADJD 11 37 | VVINF en faddsuf 2 VVPP 10.9874686716792 38 | bar hassuf 3 ADJD 10 39 | isch hassuf 4 ADJD 10 40 | XX 4 fchar CARDNUM 10 41 | Prof. goodright NE 9.99583333333333 42 | XX a fchar ADV 9.33333333333333 43 | Ä char NN 8 44 | ADJA im fgoodleft VVFIN 8 45 | ADJA ns fhassuf 2 ADV 7.85714285714286 46 | ADJA - fhaspref 1 NN 7 47 | S hassuf 1 NE 7 48 | NN Hans fgoodright NE 7 49 | VVINF werden fgoodleft VVPP 6.44444444444444 50 | VVFIN werden fgoodright VMFIN 6.43508771929825 51 | er addpref 2 VVFIN 6.4 52 | VVINF en fdeletesuf 2 ADJA 7 53 | VVINF z fchar VVIZU 7 54 | VVIZU zu fgoodright VVINF 11 55 | VVPP der fgoodleft VVFIN 6.4 56 | ADJA . fgoodleft VVFIN 6.07142857142857 57 | ADJA l fhassuf 1 ADJD 6 58 | dem addsuf 3 APPR 6 59 | s addpref 1 ARTIND 5.84673984272608 60 | VVPP auch fgoodleft VVFIN 5.27777777777778 61 | wir goodleft VVFIN 5.26041666666667 62 | s deletepref 1 PPOSAT 5.15789473684211 63 | Ö char NN 5 64 | NN r fdeletesuf 1 ADJA 5 65 | ADJA sie fgoodleft VVFIN 5 66 | ADJA fen fhassuf 3 VVPP 5 67 | VVPP l fhaspref 1 VVFIN 5 68 | NN ann fhassuf 3 NE 5 69 | rich hassuf 4 NE 5 70 | ADJA nicht fgoodleft ADV 5 71 | ADJA ken fhassuf 3 VVINF 5 72 | abzu haspref 4 VVIZU 5 73 | Da deletepref 2 PAV 5 74 | ih haspref 2 PPOSAT 5 75 | uns haspref 3 PPOSAT 5 76 | VVFIN " fgoodleft ARTDEF 4.84444430354394 77 | VVINF e fhassuf 1 VVFIN 4.71372549019608 78 | VVFIN werden fgoodright VMFIN 5.84199584199584 79 | I hassuf 1 NE 4.5 80 | VVFIN r fhassuf 1 ADV 4.44444444444444 81 | ADJA der fgoodleft NN 4 82 | hes hassuf 3 ADJA 4 83 | alen hassuf 4 ADJA 4 84 | iche hassuf 4 ADJA 4 85 | eht hassuf 3 VVFIN 4 86 | ADJA insgesamt fgoodleft VVFIN 4 87 | VVPP man fgoodleft VVFIN 4 88 | ADJA Wir fgoodright VVFIN 4 89 | VVINF ang fhaspref 3 VVPP 4 90 | H hassuf 1 NE 4 91 | T hassuf 1 NE 4 92 | V hassuf 1 NE 4 93 | Z hassuf 1 NE 4 94 | rg hassuf 2 NE 4 95 | ADJA immer fgoodright ADJD 4 96 | XX 9 fchar CARDNUM 4 97 | eb haspref 2 ADV 4 98 | VVFIN sen fhassuf 3 VVINF 4 99 | gabe addsuf 4 APPR 4 100 | XX o fchar FM 4 101 | anz haspref 3 VVIZU 4 102 | dem deletesuf 3 PAV 4 103 | VVFIN des fgoodleft APPR 3.68518518518519 104 | VVPP it fhassuf 2 ADJD 3.66666666666667 105 | je deletepref 2 PIAT 3.66666666666667 106 | VVPP ver fdeletepref 3 VVFIN 3.33333333333333 107 | ADJD des fgoodleft APPR 3.25 108 | CARDNUM . fchar LINUM 3.15804002760524 109 | gewählt goodright VAFIN 3.08424815695397 110 | ADJA F fchar NN 3 111 | ADV A fchar NN 3 112 | ADV ein fgoodright NN 3 113 | VVFIN de fhassuf 2 ADJA 3 114 | äre hassuf 3 ADJA 3 115 | VVFIN die fgoodright ADJA 3 116 | erl haspref 3 VVFIN 3 117 | ADJA mmen fhassuf 4 VVFIN 3 118 | ADJA wiederum fgoodleft VVFIN 3 119 | VVPP das fgoodleft VVFIN 3 120 | ADJD en fhassuf 2 VVPP 3 121 | NN gt fhassuf 2 VVPP 3 122 | ADJA esen fhassuf 4 VVPP 3 123 | A hassuf 1 NE 3 124 | K hassuf 1 NE 3 125 | tein hassuf 4 NE 3 126 | NN iger fhassuf 4 NE 3 127 | nn deletesuf 2 ADV 3 128 | ADJA hr fhassuf 2 ADV 3 129 | mal deletesuf 3 ADV 3 130 | lls hassuf 3 ADV 3 131 | ADJA in fgoodleft ADV 3 132 | VVFIN hat fgoodright ADV 3 133 | VMFIN die fgoodright ADV 3 134 | ADJA kann fgoodleft VVINF 3 135 | ADJA wird fgoodleft VVINF 3 136 | c hassuf 1 FM 3 137 | nige hassuf 4 PIAT 3 138 | kö haspref 2 VMFIN 3 139 | S deletepref 1 PPOSAT 3 140 | ADV Studium fgoodleft APPRART 3 141 | ADV en faddsuf 2 VVFIN 2.9469696969697 142 | ADV e faddsuf 1 ADJD 3.33333333333333 143 | VVFIN em faddsuf 2 ADJD 2.9047619047619 144 | iben hassuf 4 VVFIN 2.83333333333333 145 | da addpref 2 APPR 2.80864197530864 146 | VVINF der fgoodright ADJA 2.73333333333333 147 | ADJA mal faddsuf 3 CARD 3 148 | NN Hochschulen fgoodleft ADJA 2.70652173913043 149 | ADV di fhaspref 2 PDAT 2.54365079365079 150 | VVIZU o fchar VVPP 2.5 151 | VVPP ein fgoodleft ADV 2.5 152 | vorz haspref 4 VVIZU 3 153 | wo deletepref 2 PWAV 2.5 154 | welc haspref 4 PRELS 2.4078431372549 155 | VVINF im fgoodleft VVFIN 2.2952380952381 156 | VVFIN Irchel fgoodright VAFIN 3.14748265433197 157 | VVFIN sind fgoodleft VVPP 2.25 158 | lich hassuf 4 ADJD 2.25 159 | bei deletepref 3 PIAT 2.15 160 | wenn goodleft KON 2.05813439434129 161 | VVFIN W fchar NN 2 162 | - deletepref 1 NN 2 163 | ADJA sich fgoodleft NN 2 164 | NE der fgoodleft NN 2 165 | ADJA Franken fgoodleft NN 2 166 | VVINF m fdeletesuf 1 ADJA 2 167 | PAV e fhassuf 1 ADJA 2 168 | Wic haspref 3 ADJA 2 169 | bare hassuf 4 ADJA 2 170 | iale hassuf 4 ADJA 2 171 | Allg haspref 4 ADJA 2 172 | XX c fchar VVFIN 2 173 | FM g fchar VVFIN 2 174 | VVPP t fdeletesuf 1 VVFIN 2 175 | ADJA er fdeletepref 2 VVFIN 2 176 | ADJA rn fhassuf 2 VVFIN 2 177 | VVPP sc fhaspref 2 VVFIN 2 178 | ADJA hme fhassuf 3 VVFIN 2 179 | tes haspref 3 VVFIN 2 180 | exi haspref 3 VVFIN 2 181 | dau haspref 3 VVFIN 2 182 | VVPP bed fhaspref 3 VVFIN 2 183 | ADJA res fhaspref 3 VVFIN 2 184 | elen hassuf 4 VVFIN 2 185 | ADJA ehen fhassuf 4 VVFIN 2 186 | begi haspref 4 VVFIN 2 187 | ADJA de faddsuf 2 VVFIN 2 188 | ADJA ver faddpref 3 VVFIN 2 189 | VVFIN h faddpref 1 ADJA 2 190 | ADJA folgende fgoodleft VVFIN 2 191 | ADJA er fgoodleft VVFIN 2 192 | ADJA den fgoodleft VVFIN 2 193 | VVPP nicht fgoodleft VVFIN 2 194 | ADJA Er fgoodright VVFIN 2 195 | VVINF eben fhassuf 4 VVPP 2 196 | darg haspref 4 VVPP 2 197 | beig haspref 4 VVPP 2 198 | NN Universität fgoodright NE 2.33333333333333 199 | ung hassuf 3 NN 3 200 | O hassuf 1 NE 2 201 | P hassuf 1 NE 2 202 | W hassuf 1 NE 2 203 | NN y fhassuf 1 NE 2 204 | zi hassuf 2 NE 2 205 | lm hassuf 2 NE 2 206 | sh hassuf 2 NE 2 207 | NN rd fhassuf 2 NE 2 208 | NN dt fhassuf 2 NE 2 209 | Gi haspref 2 NE 2 210 | NN art fhassuf 3 NE 2 211 | Bus haspref 3 NE 2 212 | Gal haspref 3 NE 2 213 | Bas haspref 3 NE 2 214 | NN ener fhassuf 4 NE 2 215 | Schn haspref 4 NE 2 216 | NN Gebäude fgoodright NE 2 217 | ADJA v fhassuf 1 ADJD 2 218 | am hassuf 2 ADJD 2 219 | ig hassuf 2 ADJD 2 220 | wer hassuf 3 ADJD 2 221 | VVFIN ant fhassuf 3 ADJD 2 222 | ADV sch fhassuf 3 ADJD 2 223 | VVPP ent fhassuf 3 ADJD 2 224 | ADJA hter fhassuf 4 ADJD 2 225 | VVFIN echt fhassuf 4 ADJD 2 226 | land addsuf 4 ADJD 2 227 | XX 6 fchar CARDNUM 2 228 | NN Fakultät fgoodright CARDNUM 2 229 | XX n fchar ADV 2 230 | st deletesuf 2 ADV 2 231 | hl deletesuf 2 ADV 2 232 | so hassuf 2 ADV 2 233 | ADJA ts fhassuf 2 ADV 2 234 | VVFIN se fhassuf 2 ADV 2 235 | VVFIN ei fhaspref 2 ADV 2 236 | NN Je fhaspref 2 ADV 2 237 | ies hassuf 3 ADV 2 238 | upt hassuf 3 ADV 2 239 | och hassuf 3 ADV 2 240 | nig hassuf 3 ADV 2 241 | ADJD frü fhaspref 3 ADV 2 242 | Viel deletepref 4 ADV 2 243 | mals hassuf 4 ADV 2 244 | nsam hassuf 4 ADV 2 245 | natü haspref 4 ADV 2 246 | ADJD sondern fgoodright ADV 2 247 | VVFIN sehr fgoodright ADV 2 248 | ADJA ühen fhassuf 4 VVINF 2 249 | ADJD A fchar APPR 2 250 | XX . fchar APPR 2 251 | ADJA ls fhassuf 2 APPR 2 252 | äss hassuf 3 APPR 2 253 | ink haspref 3 APPR 2 254 | ADV des fgoodleft APPR 2 255 | VVFIN einer fgoodleft APPR 2 256 | NN é fchar FM 2 257 | ty hassuf 2 FM 2 258 | ADJA ur fhassuf 2 FM 2 259 | ADJA ce fhassuf 2 FM 2 260 | cus hassuf 3 FM 2 261 | ing hassuf 3 FM 2 262 | ling hassuf 4 NN 2 263 | ces hassuf 3 FM 2 264 | put hassuf 3 FM 2 265 | ions hassuf 4 FM 2 266 | arch hassuf 4 FM 2 267 | Public goodleft FM 2 268 | Dar deletepref 3 PAV 2 269 | manc haspref 4 PIAT 2 270 | eini haspref 4 PIAT 2 271 | wol haspref 3 VMFIN 2 272 | möc haspref 3 VMFIN 2 273 | müs haspref 3 VMFIN 2 274 | ss deletesuf 2 KOUS 2 275 | fern deletesuf 4 KOUS 2 276 | PAV hdem fhassuf 4 KOUS 2 277 | VVFIN als fgoodright KOUS 2 278 | D addpref 1 PPER 2 279 | ADJD dass fgoodright PPER 2 280 | ohl hassuf 3 KON 2 281 | wür deletepref 3 VAFIN 2 282 | ches addsuf 4 PIS 2 283 | eses hassuf 4 PDAT 2 284 | im hassuf 2 APPRART 2 285 | NN anderen fgoodleft APPRART 2 286 | XX S fchar XY 2 287 | wiev haspref 4 PWAT 2 288 | KON c fchar ADV 1.99358974358974 -------------------------------------------------------------------------------- /docs/src/_themes/sphinx_rtd_theme/layout.html: -------------------------------------------------------------------------------- 1 | {# TEMPLATE VAR SETTINGS #} 2 | {%- set url_root = pathto('', 1) %} 3 | {%- if url_root == '#' %}{% set url_root = '' %}{% endif %} 4 | {%- if not embedded and docstitle %} 5 | {%- set titlesuffix = " — "|safe + docstitle|e %} 6 | {%- else %} 7 | {%- set titlesuffix = "" %} 8 | {%- endif %} 9 | {%- set lang_attr = 'en' if language == None else (language | replace('_', '-')) %} 10 | 11 | 12 | 13 | 14 | 15 | 16 | {{ metatags }} 17 | 18 | {% block htmltitle %} 19 |