skrutable 2.0.2__tar.gz → 2.0.3__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.
- {skrutable-2.0.2 → skrutable-2.0.3}/PKG-INFO +5 -2
- skrutable-2.0.3/src/skrutable/__init__.py +1 -0
- {skrutable-2.0.2 → skrutable-2.0.3}/src/skrutable/splitting.py +5 -0
- {skrutable-2.0.2 → skrutable-2.0.3}/src/skrutable.egg-info/PKG-INFO +5 -2
- skrutable-2.0.2/src/skrutable/__init__.py +0 -1
- {skrutable-2.0.2 → skrutable-2.0.3}/LICENSE.md +0 -0
- {skrutable-2.0.2 → skrutable-2.0.3}/README.md +0 -0
- {skrutable-2.0.2 → skrutable-2.0.3}/setup.cfg +0 -0
- {skrutable-2.0.2 → skrutable-2.0.3}/setup.py +0 -0
- {skrutable-2.0.2 → skrutable-2.0.3}/src/skrutable/config.json +0 -0
- {skrutable-2.0.2 → skrutable-2.0.3}/src/skrutable/config.py +0 -0
- {skrutable-2.0.2 → skrutable-2.0.3}/src/skrutable/manual.md +0 -0
- {skrutable-2.0.2 → skrutable-2.0.3}/src/skrutable/meter_identification.py +0 -0
- {skrutable-2.0.2 → skrutable-2.0.3}/src/skrutable/meter_patterns.py +0 -0
- {skrutable-2.0.2 → skrutable-2.0.3}/src/skrutable/phonemes.py +0 -0
- {skrutable-2.0.2 → skrutable-2.0.3}/src/skrutable/scansion.py +0 -0
- {skrutable-2.0.2 → skrutable-2.0.3}/src/skrutable/scheme_detection.py +0 -0
- {skrutable-2.0.2 → skrutable-2.0.3}/src/skrutable/scheme_maps.py +0 -0
- {skrutable-2.0.2 → skrutable-2.0.3}/src/skrutable/scheme_vectors_mbh.py +0 -0
- {skrutable-2.0.2 → skrutable-2.0.3}/src/skrutable/transliteration.py +0 -0
- {skrutable-2.0.2 → skrutable-2.0.3}/src/skrutable/virAma_avoidance.py +0 -0
- {skrutable-2.0.2 → skrutable-2.0.3}/src/skrutable.egg-info/SOURCES.txt +0 -0
- {skrutable-2.0.2 → skrutable-2.0.3}/src/skrutable.egg-info/dependency_links.txt +0 -0
- {skrutable-2.0.2 → skrutable-2.0.3}/src/skrutable.egg-info/requires.txt +0 -0
- {skrutable-2.0.2 → skrutable-2.0.3}/src/skrutable.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: skrutable
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.3
|
|
4
4
|
Summary: skrutable library for working with Sanskrit text
|
|
5
5
|
Home-page: https://github.com/tylergneill/skrutable
|
|
6
6
|
Author: Tyler Neill
|
|
@@ -8,8 +8,11 @@ Author-email: tyler.g.neill@gmail.com
|
|
|
8
8
|
License: CC BY-SA 4.0
|
|
9
9
|
Keywords: Sanskrit text transliteration scansion meter identification sandhi compound splitting
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
|
-
Provides-Extra: testing
|
|
12
11
|
License-File: LICENSE.md
|
|
12
|
+
Requires-Dist: numpy
|
|
13
|
+
Requires-Dist: requests
|
|
14
|
+
Provides-Extra: testing
|
|
15
|
+
Requires-Dist: pytest; extra == "testing"
|
|
13
16
|
|
|
14
17
|
# skrutable
|
|
15
18
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "2.0.3"
|
|
@@ -187,6 +187,11 @@ class Splitter(object):
|
|
|
187
187
|
passing maximum of max_char_limit characters to Splitter at a time,
|
|
188
188
|
and preserving original newlines and punctuation.
|
|
189
189
|
"""
|
|
190
|
+
|
|
191
|
+
# TODO: Remove once 2018 splitter server restored
|
|
192
|
+
if splitter_model == 'splitter_2018':
|
|
193
|
+
return "The server for the 2018 model is temporarily down, please use splitter_model 'dharmamitra_2024_sept' instead."
|
|
194
|
+
|
|
190
195
|
# save original punctuation
|
|
191
196
|
sentences: List[str]
|
|
192
197
|
saved_punctuation: List[str]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: skrutable
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.3
|
|
4
4
|
Summary: skrutable library for working with Sanskrit text
|
|
5
5
|
Home-page: https://github.com/tylergneill/skrutable
|
|
6
6
|
Author: Tyler Neill
|
|
@@ -8,8 +8,11 @@ Author-email: tyler.g.neill@gmail.com
|
|
|
8
8
|
License: CC BY-SA 4.0
|
|
9
9
|
Keywords: Sanskrit text transliteration scansion meter identification sandhi compound splitting
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
|
-
Provides-Extra: testing
|
|
12
11
|
License-File: LICENSE.md
|
|
12
|
+
Requires-Dist: numpy
|
|
13
|
+
Requires-Dist: requests
|
|
14
|
+
Provides-Extra: testing
|
|
15
|
+
Requires-Dist: pytest; extra == "testing"
|
|
13
16
|
|
|
14
17
|
# skrutable
|
|
15
18
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "2.0.2"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|