braille 0.0.1__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.
braille/__init__.py
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from braillebase import *
|
|
2
|
+
from brailletable import *
|
|
3
|
+
from braillebasejapanese import *
|
|
4
|
+
from braillebaseportuguese import *
|
|
5
|
+
from braillebasearabic import *
|
|
6
|
+
from braillebaseenglish import *
|
|
7
|
+
|
|
8
|
+
bb = BrailleBase
|
|
9
|
+
bt = BrailleTable
|
|
10
|
+
bbj = BrailleBaseJapanese
|
|
11
|
+
bbp = BrailleBasePortuguese
|
|
12
|
+
bba = BrailleBaseArabic
|
|
13
|
+
bbe = BrailleBaseEnglish
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: braille
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A complete and extensible Unicode Braille processing library. Multilanguage version
|
|
5
|
+
Author: Nagao Yuji
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/DukaCrazy/braille
|
|
8
|
+
Project-URL: Documentation, https://github.com/DukaCrazy/braille
|
|
9
|
+
Project-URL: Source, https://github.com/DukaCrazy/braille
|
|
10
|
+
Keywords: braille,unicode,accessibility,API,binary,blind,education
|
|
11
|
+
Requires-Python: >=3.6
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
Requires-Dist: braillebase>=0.0.12
|
|
15
|
+
Requires-Dist: brailletable>=1.0.1
|
|
16
|
+
Requires-Dist: braillebasejapanese>=0.0.6
|
|
17
|
+
Requires-Dist: braillebaseportuguese>=0.0.4
|
|
18
|
+
Requires-Dist: braillebasearabic>=0.0.1
|
|
19
|
+
Requires-Dist: braillebaseenglish>=0.0.1
|
|
20
|
+
Dynamic: license-file
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
## lib
|
|
24
|
+
|
|
25
|
+
### braillebase 0.0.12
|
|
26
|
+
- https://github.com/DukaCrazy/braillebase
|
|
27
|
+
### brailletable 1.0.1
|
|
28
|
+
- https://github.com/DukaCrazy/brailletable
|
|
29
|
+
### braillebasejapanese 0.0.6
|
|
30
|
+
- https://github.com/DukaCrazy/braillebasejapanese
|
|
31
|
+
### braillebaseportuguese 0.0.4
|
|
32
|
+
- https://github.com/DukaCrazy/braillebaseportuguese
|
|
33
|
+
### braillebasearabic 0.0.1
|
|
34
|
+
- https://github.com/DukaCrazy/braillebasearabic
|
|
35
|
+
### braillebaseenglish 0.0.1
|
|
36
|
+
- https://github.com/DukaCrazy/braillebaseenglish
|
|
37
|
+
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
braille/__init__.py,sha256=eh3LUcvJWGp99g_KTLfDElnKvrNo9JWSO7hyU5vquwo,338
|
|
2
|
+
braille-0.0.1.dist-info/licenses/LICENSE,sha256=wEIZF9bHjZVT20FDDAkIeQ6GvrUqEZ03XXcOyvHy-Zs,638
|
|
3
|
+
braille-0.0.1.dist-info/METADATA,sha256=Z_S_KB2akr1NQBXr0deX1ZWOpPOI5LhMvo9EhOsqMVU,1280
|
|
4
|
+
braille-0.0.1.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
5
|
+
braille-0.0.1.dist-info/top_level.txt,sha256=sokVqk5dSwH-bpcb2mTZnaGF6TDugHeUKhkyXrVXqBU,8
|
|
6
|
+
braille-0.0.1.dist-info/RECORD,,
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
Copyright (c) 2026 Yuu
|
|
6
|
+
|
|
7
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
+
you may not use this file except in compliance with the License.
|
|
9
|
+
You may obtain a copy of the License at:
|
|
10
|
+
|
|
11
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
|
|
13
|
+
Unless required by applicable law or agreed to in writing, software
|
|
14
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
|
+
See the License for the specific language governing permissions and
|
|
17
|
+
limitations under the License.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
braille
|