linkture 3.2.4__tar.gz → 3.2.5__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.
- {linkture-3.2.4 → linkture-3.2.5}/PKG-INFO +3 -3
- {linkture-3.2.4 → linkture-3.2.5}/README.md +2 -2
- {linkture-3.2.4 → linkture-3.2.5}/pyproject.toml +1 -1
- {linkture-3.2.4 → linkture-3.2.5}/src/linkture/linkture.py +2 -2
- {linkture-3.2.4 → linkture-3.2.5}/src/linkture/res/resources.db +0 -0
- {linkture-3.2.4 → linkture-3.2.5}/LICENSE +0 -0
- {linkture-3.2.4 → linkture-3.2.5}/src/linkture/__init__.py +0 -0
- {linkture-3.2.4 → linkture-3.2.5}/src/linkture/__main__.py +0 -0
- {linkture-3.2.4 → linkture-3.2.5}/src/linkture/res/custom.json +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: linkture
|
3
|
-
Version: 3.2.
|
3
|
+
Version: 3.2.5
|
4
4
|
Summary: PARSE and PROCESS BIBLE SCRIPTURE REFERENCES: extract, tag, link, rewrite, translate, BCV-encode and decode
|
5
5
|
Keywords: bible,scriptures,scripture-references,scripture-translation,scripture-parser,scripture-linker
|
6
6
|
Author-Email: "Eryk J." <infiniti@inventati.org>
|
@@ -68,9 +68,9 @@ options:
|
|
68
68
|
-v show version and exit
|
69
69
|
-q don't show errors
|
70
70
|
-o out-file output file (terminal output if not provided)
|
71
|
-
--language {Cebuano,Chinese,Danish,Dutch,English,Ewe,French,German,Greek,Hungarian,Italian,Japanese,Korean,Norwegian,Polish,Portuguese,Romanian,Russian,Spanish,Swedish,Tagalog,Ukrainian}
|
71
|
+
--language {Cebuano,Chinese,Danish,Dutch,English,Ewe,French,German,Greek,Hungarian,Indonesian,Italian,Japanese,Korean,Norwegian,Polish,Portuguese,Romanian,Russian,Spanish,Swedish,Tagalog,Ukrainian}
|
72
72
|
indicate source language for book names (English if unspecified)
|
73
|
-
--translate {Cebuano,Chinese,Danish,Dutch,English,Ewe,French,German,Greek,Hungarian,Italian,Japanese,Korean,Norwegian,Polish,Portuguese,Romanian,Russian,Spanish,Swedish,Tagalog,Ukrainian}
|
73
|
+
--translate {Cebuano,Chinese,Danish,Dutch,English,Ewe,French,German,Greek,Hungarian,Indonesian,Italian,Japanese,Korean,Norwegian,Polish,Portuguese,Romanian,Russian,Spanish,Swedish,Tagalog,Ukrainian}
|
74
74
|
indicate output language for book names (same as source if unspecified)
|
75
75
|
-s separator segment separator (space by default)
|
76
76
|
-u capitalize (upper-case) book names
|
@@ -39,9 +39,9 @@ options:
|
|
39
39
|
-v show version and exit
|
40
40
|
-q don't show errors
|
41
41
|
-o out-file output file (terminal output if not provided)
|
42
|
-
--language {Cebuano,Chinese,Danish,Dutch,English,Ewe,French,German,Greek,Hungarian,Italian,Japanese,Korean,Norwegian,Polish,Portuguese,Romanian,Russian,Spanish,Swedish,Tagalog,Ukrainian}
|
42
|
+
--language {Cebuano,Chinese,Danish,Dutch,English,Ewe,French,German,Greek,Hungarian,Indonesian,Italian,Japanese,Korean,Norwegian,Polish,Portuguese,Romanian,Russian,Spanish,Swedish,Tagalog,Ukrainian}
|
43
43
|
indicate source language for book names (English if unspecified)
|
44
|
-
--translate {Cebuano,Chinese,Danish,Dutch,English,Ewe,French,German,Greek,Hungarian,Italian,Japanese,Korean,Norwegian,Polish,Portuguese,Romanian,Russian,Spanish,Swedish,Tagalog,Ukrainian}
|
44
|
+
--translate {Cebuano,Chinese,Danish,Dutch,English,Ewe,French,German,Greek,Hungarian,Indonesian,Italian,Japanese,Korean,Norwegian,Polish,Portuguese,Romanian,Russian,Spanish,Swedish,Tagalog,Ukrainian}
|
45
45
|
indicate output language for book names (same as source if unspecified)
|
46
46
|
-s separator segment separator (space by default)
|
47
47
|
-u capitalize (upper-case) book names
|
@@ -27,7 +27,7 @@
|
|
27
27
|
"""
|
28
28
|
|
29
29
|
__app__ = 'linkture'
|
30
|
-
__version__ = 'v3.2.
|
30
|
+
__version__ = 'v3.2.5'
|
31
31
|
|
32
32
|
|
33
33
|
import json, regex, sqlite3
|
@@ -36,7 +36,7 @@ from pathlib import Path
|
|
36
36
|
from unidecode import unidecode
|
37
37
|
|
38
38
|
|
39
|
-
_available_languages = ('Cebuano', 'Chinese', 'Danish', 'Dutch', 'English', 'Ewe', 'French', 'German', 'Greek', 'Hungarian', 'Italian', 'Japanese', 'Korean', 'Norwegian', 'Polish', 'Portuguese', 'Romanian', 'Russian', 'Spanish', 'Swedish', 'Tagalog', 'Ukrainian')
|
39
|
+
_available_languages = ('Cebuano', 'Chinese', 'Danish', 'Dutch', 'English', 'Ewe', 'French', 'German', 'Greek', 'Hungarian', 'Indonesian', 'Italian', 'Japanese', 'Korean', 'Norwegian', 'Polish', 'Portuguese', 'Romanian', 'Russian', 'Spanish', 'Swedish', 'Tagalog', 'Ukrainian')
|
40
40
|
_non_latin = ('Chinese', 'Greek', 'Japanese', 'Korean', 'Russian', 'Ukrainian')
|
41
41
|
|
42
42
|
|
index cee1c2b..2500a66 100644
|
|
Binary file
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|