skrutable 2.0.2__tar.gz → 2.0.4__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.4}/PKG-INFO +5 -2
- skrutable-2.0.4/src/skrutable/__init__.py +1 -0
- {skrutable-2.0.2 → skrutable-2.0.4}/src/skrutable/splitting.py +2 -2
- {skrutable-2.0.2 → skrutable-2.0.4}/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.4}/LICENSE.md +0 -0
- {skrutable-2.0.2 → skrutable-2.0.4}/README.md +0 -0
- {skrutable-2.0.2 → skrutable-2.0.4}/setup.cfg +0 -0
- {skrutable-2.0.2 → skrutable-2.0.4}/setup.py +0 -0
- {skrutable-2.0.2 → skrutable-2.0.4}/src/skrutable/config.json +0 -0
- {skrutable-2.0.2 → skrutable-2.0.4}/src/skrutable/config.py +0 -0
- {skrutable-2.0.2 → skrutable-2.0.4}/src/skrutable/manual.md +0 -0
- {skrutable-2.0.2 → skrutable-2.0.4}/src/skrutable/meter_identification.py +0 -0
- {skrutable-2.0.2 → skrutable-2.0.4}/src/skrutable/meter_patterns.py +0 -0
- {skrutable-2.0.2 → skrutable-2.0.4}/src/skrutable/phonemes.py +0 -0
- {skrutable-2.0.2 → skrutable-2.0.4}/src/skrutable/scansion.py +0 -0
- {skrutable-2.0.2 → skrutable-2.0.4}/src/skrutable/scheme_detection.py +0 -0
- {skrutable-2.0.2 → skrutable-2.0.4}/src/skrutable/scheme_maps.py +0 -0
- {skrutable-2.0.2 → skrutable-2.0.4}/src/skrutable/scheme_vectors_mbh.py +0 -0
- {skrutable-2.0.2 → skrutable-2.0.4}/src/skrutable/transliteration.py +0 -0
- {skrutable-2.0.2 → skrutable-2.0.4}/src/skrutable/virAma_avoidance.py +0 -0
- {skrutable-2.0.2 → skrutable-2.0.4}/src/skrutable.egg-info/SOURCES.txt +0 -0
- {skrutable-2.0.2 → skrutable-2.0.4}/src/skrutable.egg-info/dependency_links.txt +0 -0
- {skrutable-2.0.2 → skrutable-2.0.4}/src/skrutable.egg-info/requires.txt +0 -0
- {skrutable-2.0.2 → skrutable-2.0.4}/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.4
|
|
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.4"
|
|
@@ -7,8 +7,7 @@ from skrutable.config import load_config_dict_from_json_file
|
|
|
7
7
|
config = load_config_dict_from_json_file()
|
|
8
8
|
PRESERVE_PUNCTUATION_DEFAULT = config["preserve_punctuation_default"]
|
|
9
9
|
PRESERVE_COMPOUND_HYPHENS_DEFAULT = config["preserve_compound_hyphens_default"]
|
|
10
|
-
|
|
11
|
-
SPLITTER_SERVER_URL = 'https://splitter-server-tylergneill.pythonanywhere.com'
|
|
10
|
+
SPLITTER_SERVER_URL = 'https://2018emnlp-sanskrit-splitter-server.dharma.cl/'
|
|
12
11
|
|
|
13
12
|
class Splitter(object):
|
|
14
13
|
|
|
@@ -187,6 +186,7 @@ class Splitter(object):
|
|
|
187
186
|
passing maximum of max_char_limit characters to Splitter at a time,
|
|
188
187
|
and preserving original newlines and punctuation.
|
|
189
188
|
"""
|
|
189
|
+
|
|
190
190
|
# save original punctuation
|
|
191
191
|
sentences: List[str]
|
|
192
192
|
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.4
|
|
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
|