kreuzberg 3.16.0__py3-none-any.whl → 3.17.0__py3-none-any.whl
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.
- kreuzberg/__init__.py +2 -0
- kreuzberg/_config.py +8 -9
- kreuzberg/_extractors/_base.py +0 -46
- kreuzberg/_extractors/_html.py +1 -1
- kreuzberg/_extractors/_pandoc.py +2 -2
- kreuzberg/_extractors/_pdf.py +4 -4
- kreuzberg/_gmft.py +2 -2
- kreuzberg/_mcp/server.py +1 -1
- kreuzberg/_mime_types.py +1 -1
- kreuzberg/_ocr/_easyocr.py +4 -9
- kreuzberg/_ocr/_paddleocr.py +1 -1
- kreuzberg/_ocr/_tesseract.py +15 -25
- kreuzberg/_token_reduction/__init__.py +11 -0
- kreuzberg/_token_reduction/_reducer.py +439 -0
- kreuzberg/_token_reduction/_stopwords.py +116 -0
- kreuzberg/_token_reduction/stopwords/af_stopwords.json +53 -0
- kreuzberg/_token_reduction/stopwords/ar_stopwords.json +482 -0
- kreuzberg/_token_reduction/stopwords/bg_stopwords.json +261 -0
- kreuzberg/_token_reduction/stopwords/bn_stopwords.json +400 -0
- kreuzberg/_token_reduction/stopwords/br_stopwords.json +1205 -0
- kreuzberg/_token_reduction/stopwords/ca_stopwords.json +280 -0
- kreuzberg/_token_reduction/stopwords/cs_stopwords.json +425 -0
- kreuzberg/_token_reduction/stopwords/da_stopwords.json +172 -0
- kreuzberg/_token_reduction/stopwords/de_stopwords.json +622 -0
- kreuzberg/_token_reduction/stopwords/el_stopwords.json +849 -0
- kreuzberg/_token_reduction/stopwords/en_stopwords.json +1300 -0
- kreuzberg/_token_reduction/stopwords/eo_stopwords.json +175 -0
- kreuzberg/_token_reduction/stopwords/es_stopwords.json +734 -0
- kreuzberg/_token_reduction/stopwords/et_stopwords.json +37 -0
- kreuzberg/_token_reduction/stopwords/eu_stopwords.json +100 -0
- kreuzberg/_token_reduction/stopwords/fa_stopwords.json +801 -0
- kreuzberg/_token_reduction/stopwords/fi_stopwords.json +849 -0
- kreuzberg/_token_reduction/stopwords/fr_stopwords.json +693 -0
- kreuzberg/_token_reduction/stopwords/ga_stopwords.json +111 -0
- kreuzberg/_token_reduction/stopwords/gl_stopwords.json +162 -0
- kreuzberg/_token_reduction/stopwords/gu_stopwords.json +226 -0
- kreuzberg/_token_reduction/stopwords/ha_stopwords.json +41 -0
- kreuzberg/_token_reduction/stopwords/he_stopwords.json +196 -0
- kreuzberg/_token_reduction/stopwords/hi_stopwords.json +227 -0
- kreuzberg/_token_reduction/stopwords/hr_stopwords.json +181 -0
- kreuzberg/_token_reduction/stopwords/hu_stopwords.json +791 -0
- kreuzberg/_token_reduction/stopwords/hy_stopwords.json +47 -0
- kreuzberg/_token_reduction/stopwords/id_stopwords.json +760 -0
- kreuzberg/_token_reduction/stopwords/it_stopwords.json +634 -0
- kreuzberg/_token_reduction/stopwords/ja_stopwords.json +136 -0
- kreuzberg/_token_reduction/stopwords/kn_stopwords.json +84 -0
- kreuzberg/_token_reduction/stopwords/ko_stopwords.json +681 -0
- kreuzberg/_token_reduction/stopwords/ku_stopwords.json +64 -0
- kreuzberg/_token_reduction/stopwords/la_stopwords.json +51 -0
- kreuzberg/_token_reduction/stopwords/lt_stopwords.json +476 -0
- kreuzberg/_token_reduction/stopwords/lv_stopwords.json +163 -0
- kreuzberg/_token_reduction/stopwords/ml_stopwords.json +11 -0
- kreuzberg/_token_reduction/stopwords/mr_stopwords.json +101 -0
- kreuzberg/_token_reduction/stopwords/ms_stopwords.json +477 -0
- kreuzberg/_token_reduction/stopwords/ne_stopwords.json +490 -0
- kreuzberg/_token_reduction/stopwords/nl_stopwords.json +415 -0
- kreuzberg/_token_reduction/stopwords/no_stopwords.json +223 -0
- kreuzberg/_token_reduction/stopwords/pl_stopwords.json +331 -0
- kreuzberg/_token_reduction/stopwords/pt_stopwords.json +562 -0
- kreuzberg/_token_reduction/stopwords/ro_stopwords.json +436 -0
- kreuzberg/_token_reduction/stopwords/ru_stopwords.json +561 -0
- kreuzberg/_token_reduction/stopwords/si_stopwords.json +193 -0
- kreuzberg/_token_reduction/stopwords/sk_stopwords.json +420 -0
- kreuzberg/_token_reduction/stopwords/sl_stopwords.json +448 -0
- kreuzberg/_token_reduction/stopwords/so_stopwords.json +32 -0
- kreuzberg/_token_reduction/stopwords/st_stopwords.json +33 -0
- kreuzberg/_token_reduction/stopwords/sv_stopwords.json +420 -0
- kreuzberg/_token_reduction/stopwords/sw_stopwords.json +76 -0
- kreuzberg/_token_reduction/stopwords/ta_stopwords.json +129 -0
- kreuzberg/_token_reduction/stopwords/te_stopwords.json +54 -0
- kreuzberg/_token_reduction/stopwords/th_stopwords.json +118 -0
- kreuzberg/_token_reduction/stopwords/tl_stopwords.json +149 -0
- kreuzberg/_token_reduction/stopwords/tr_stopwords.json +506 -0
- kreuzberg/_token_reduction/stopwords/uk_stopwords.json +75 -0
- kreuzberg/_token_reduction/stopwords/ur_stopwords.json +519 -0
- kreuzberg/_token_reduction/stopwords/vi_stopwords.json +647 -0
- kreuzberg/_token_reduction/stopwords/yo_stopwords.json +62 -0
- kreuzberg/_token_reduction/stopwords/zh_stopwords.json +796 -0
- kreuzberg/_token_reduction/stopwords/zu_stopwords.json +31 -0
- kreuzberg/_types.py +35 -3
- kreuzberg/_utils/_image_preprocessing.py +1 -1
- kreuzberg/_utils/_ref.py +14 -6
- kreuzberg/exceptions.py +0 -1
- kreuzberg/extraction.py +25 -9
- {kreuzberg-3.16.0.dist-info → kreuzberg-3.17.0.dist-info}/METADATA +4 -3
- kreuzberg-3.17.0.dist-info/RECORD +128 -0
- kreuzberg-3.16.0.dist-info/RECORD +0 -61
- {kreuzberg-3.16.0.dist-info → kreuzberg-3.17.0.dist-info}/WHEEL +0 -0
- {kreuzberg-3.16.0.dist-info → kreuzberg-3.17.0.dist-info}/entry_points.txt +0 -0
- {kreuzberg-3.16.0.dist-info → kreuzberg-3.17.0.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,172 @@
|
|
1
|
+
[
|
2
|
+
"ad",
|
3
|
+
"af",
|
4
|
+
"aldrig",
|
5
|
+
"alle",
|
6
|
+
"alt",
|
7
|
+
"anden",
|
8
|
+
"andet",
|
9
|
+
"andre",
|
10
|
+
"at",
|
11
|
+
"bare",
|
12
|
+
"begge",
|
13
|
+
"blev",
|
14
|
+
"blive",
|
15
|
+
"bliver",
|
16
|
+
"da",
|
17
|
+
"de",
|
18
|
+
"dem",
|
19
|
+
"den",
|
20
|
+
"denne",
|
21
|
+
"der",
|
22
|
+
"deres",
|
23
|
+
"det",
|
24
|
+
"dette",
|
25
|
+
"dig",
|
26
|
+
"din",
|
27
|
+
"dine",
|
28
|
+
"disse",
|
29
|
+
"dit",
|
30
|
+
"dog",
|
31
|
+
"du",
|
32
|
+
"efter",
|
33
|
+
"ej",
|
34
|
+
"eller",
|
35
|
+
"en",
|
36
|
+
"end",
|
37
|
+
"ene",
|
38
|
+
"eneste",
|
39
|
+
"enhver",
|
40
|
+
"er",
|
41
|
+
"et",
|
42
|
+
"far",
|
43
|
+
"fem",
|
44
|
+
"fik",
|
45
|
+
"fire",
|
46
|
+
"flere",
|
47
|
+
"fleste",
|
48
|
+
"for",
|
49
|
+
"fordi",
|
50
|
+
"forrige",
|
51
|
+
"fra",
|
52
|
+
"få",
|
53
|
+
"får",
|
54
|
+
"før",
|
55
|
+
"god",
|
56
|
+
"godt",
|
57
|
+
"ham",
|
58
|
+
"han",
|
59
|
+
"hans",
|
60
|
+
"har",
|
61
|
+
"havde",
|
62
|
+
"have",
|
63
|
+
"hej",
|
64
|
+
"helt",
|
65
|
+
"hende",
|
66
|
+
"hendes",
|
67
|
+
"her",
|
68
|
+
"hos",
|
69
|
+
"hun",
|
70
|
+
"hvad",
|
71
|
+
"hvem",
|
72
|
+
"hver",
|
73
|
+
"hvilken",
|
74
|
+
"hvis",
|
75
|
+
"hvor",
|
76
|
+
"hvordan",
|
77
|
+
"hvorfor",
|
78
|
+
"hvornår",
|
79
|
+
"i",
|
80
|
+
"ikke",
|
81
|
+
"ind",
|
82
|
+
"ingen",
|
83
|
+
"intet",
|
84
|
+
"ja",
|
85
|
+
"jeg",
|
86
|
+
"jer",
|
87
|
+
"jeres",
|
88
|
+
"jo",
|
89
|
+
"kan",
|
90
|
+
"kom",
|
91
|
+
"komme",
|
92
|
+
"kommer",
|
93
|
+
"kun",
|
94
|
+
"kunne",
|
95
|
+
"lad",
|
96
|
+
"lav",
|
97
|
+
"lidt",
|
98
|
+
"lige",
|
99
|
+
"lille",
|
100
|
+
"man",
|
101
|
+
"mand",
|
102
|
+
"mange",
|
103
|
+
"med",
|
104
|
+
"meget",
|
105
|
+
"men",
|
106
|
+
"mens",
|
107
|
+
"mere",
|
108
|
+
"mig",
|
109
|
+
"min",
|
110
|
+
"mine",
|
111
|
+
"mit",
|
112
|
+
"mod",
|
113
|
+
"må",
|
114
|
+
"ned",
|
115
|
+
"nej",
|
116
|
+
"ni",
|
117
|
+
"nogen",
|
118
|
+
"noget",
|
119
|
+
"nogle",
|
120
|
+
"nu",
|
121
|
+
"ny",
|
122
|
+
"nyt",
|
123
|
+
"når",
|
124
|
+
"nær",
|
125
|
+
"næste",
|
126
|
+
"næsten",
|
127
|
+
"og",
|
128
|
+
"også",
|
129
|
+
"okay",
|
130
|
+
"om",
|
131
|
+
"op",
|
132
|
+
"os",
|
133
|
+
"otte",
|
134
|
+
"over",
|
135
|
+
"på",
|
136
|
+
"se",
|
137
|
+
"seks",
|
138
|
+
"selv",
|
139
|
+
"ser",
|
140
|
+
"ses",
|
141
|
+
"sig",
|
142
|
+
"sige",
|
143
|
+
"sin",
|
144
|
+
"sine",
|
145
|
+
"sit",
|
146
|
+
"skal",
|
147
|
+
"skulle",
|
148
|
+
"som",
|
149
|
+
"stor",
|
150
|
+
"store",
|
151
|
+
"syv",
|
152
|
+
"så",
|
153
|
+
"sådan",
|
154
|
+
"tag",
|
155
|
+
"tage",
|
156
|
+
"thi",
|
157
|
+
"ti",
|
158
|
+
"til",
|
159
|
+
"to",
|
160
|
+
"tre",
|
161
|
+
"ud",
|
162
|
+
"under",
|
163
|
+
"var",
|
164
|
+
"ved",
|
165
|
+
"vi",
|
166
|
+
"vil",
|
167
|
+
"ville",
|
168
|
+
"vor",
|
169
|
+
"vores",
|
170
|
+
"være",
|
171
|
+
"været"
|
172
|
+
]
|