langcode-turner 0.0.1__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.
@@ -0,0 +1,46 @@
1
+ Metadata-Version: 2.1
2
+ Name: langcode_turner
3
+ Version: 0.0.1
4
+ Summary: langcode turn, support iso 639-1, iso 639-2, iso 639-3
5
+ Home-page: https://github.com/felikspeegel/langcode_turner
6
+ Author: Feliks Peegel
7
+ Author-email: felikspeegel@gmail.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Requires-Python: >=3.6
11
+ Description-Content-Type: text/markdown
12
+ License-File: license
13
+
14
+ # langcode_turner
15
+
16
+ A tool to turn language code to other language code.
17
+ Such as ISO 639-1 to ISO 639-3.
18
+ en -> eng
19
+ or
20
+ ISO 639-3 to ISO 639-1
21
+ est -> et
22
+
23
+ # Usage
24
+
25
+ ## install
26
+ ```
27
+ pip install langcode_turner
28
+ ```
29
+
30
+ ## use
31
+ ```python
32
+ from langcode_turner import LangcodeTurner
33
+
34
+ langcode = LangcodeTurner("cho")
35
+ print(langcode.iso_639_3)
36
+
37
+ ```
38
+
39
+
40
+
41
+ # License
42
+ MIT License
43
+
44
+ # Author
45
+ Feliks Peegel
46
+
@@ -0,0 +1,33 @@
1
+ # langcode_turner
2
+
3
+ A tool to turn language code to other language code.
4
+ Such as ISO 639-1 to ISO 639-3.
5
+ en -> eng
6
+ or
7
+ ISO 639-3 to ISO 639-1
8
+ est -> et
9
+
10
+ # Usage
11
+
12
+ ## install
13
+ ```
14
+ pip install langcode_turner
15
+ ```
16
+
17
+ ## use
18
+ ```python
19
+ from langcode_turner import LangcodeTurner
20
+
21
+ langcode = LangcodeTurner("cho")
22
+ print(langcode.iso_639_3)
23
+
24
+ ```
25
+
26
+
27
+
28
+ # License
29
+ MIT License
30
+
31
+ # Author
32
+ Feliks Peegel
33
+
@@ -0,0 +1,46 @@
1
+ Metadata-Version: 2.1
2
+ Name: langcode_turner
3
+ Version: 0.0.1
4
+ Summary: langcode turn, support iso 639-1, iso 639-2, iso 639-3
5
+ Home-page: https://github.com/felikspeegel/langcode_turner
6
+ Author: Feliks Peegel
7
+ Author-email: felikspeegel@gmail.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Requires-Python: >=3.6
11
+ Description-Content-Type: text/markdown
12
+ License-File: license
13
+
14
+ # langcode_turner
15
+
16
+ A tool to turn language code to other language code.
17
+ Such as ISO 639-1 to ISO 639-3.
18
+ en -> eng
19
+ or
20
+ ISO 639-3 to ISO 639-1
21
+ est -> et
22
+
23
+ # Usage
24
+
25
+ ## install
26
+ ```
27
+ pip install langcode_turner
28
+ ```
29
+
30
+ ## use
31
+ ```python
32
+ from langcode_turner import LangcodeTurner
33
+
34
+ langcode = LangcodeTurner("cho")
35
+ print(langcode.iso_639_3)
36
+
37
+ ```
38
+
39
+
40
+
41
+ # License
42
+ MIT License
43
+
44
+ # Author
45
+ Feliks Peegel
46
+
@@ -0,0 +1,7 @@
1
+ README.md
2
+ license
3
+ setup.py
4
+ langcode_turner.egg-info/PKG-INFO
5
+ langcode_turner.egg-info/SOURCES.txt
6
+ langcode_turner.egg-info/dependency_links.txt
7
+ langcode_turner.egg-info/top_level.txt
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) [year] [fullname]
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,21 @@
1
+ import setuptools
2
+
3
+ with open("README.md", "r") as f:
4
+ long_description = f.read()
5
+
6
+ setuptools.setup(
7
+ name="langcode_turner",
8
+ version="0.0.1",
9
+ author="Feliks Peegel",
10
+ author_email="felikspeegel@gmail.com",
11
+ description="langcode turn, support iso 639-1, iso 639-2, iso 639-3",
12
+ long_description=long_description,
13
+ long_description_content_type="text/markdown",
14
+ url="https://github.com/felikspeegel/langcode_turner",
15
+ packages=setuptools.find_packages(),
16
+ classifiers=[
17
+ "Programming Language :: Python :: 3",
18
+ "License :: OSI Approved :: MIT License",
19
+ ],
20
+ python_requires=">=3.6",
21
+ )