txt2ebook 0.1.120__py3-none-any.whl → 0.1.122__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.
- txt2ebook/__init__.py +2 -2
- txt2ebook/__main__.py +1 -1
- txt2ebook/cli.py +1 -29
- txt2ebook/exceptions.py +1 -1
- txt2ebook/formats/__init__.py +1 -1
- txt2ebook/formats/base.py +1 -1
- txt2ebook/formats/epub.py +1 -1
- txt2ebook/formats/gmi.py +1 -1
- txt2ebook/formats/md.py +1 -1
- txt2ebook/formats/pdf.py +1 -1
- txt2ebook/formats/templates/__init__.py +1 -1
- txt2ebook/formats/templates/epub/__init__.py +1 -1
- txt2ebook/formats/tex.py +1 -1
- txt2ebook/formats/txt.py +1 -1
- txt2ebook/formats/typ.py +1 -1
- txt2ebook/helpers/__init__.py +1 -1
- txt2ebook/languages/__init__.py +1 -1
- txt2ebook/languages/en.py +1 -1
- txt2ebook/languages/zh_cn.py +1 -1
- txt2ebook/languages/zh_tw.py +1 -1
- txt2ebook/models/__init__.py +1 -1
- txt2ebook/models/book.py +1 -1
- txt2ebook/models/chapter.py +1 -1
- txt2ebook/models/volume.py +1 -1
- txt2ebook/parser.py +4 -4
- txt2ebook/subcommands/__init__.py +1 -1
- txt2ebook/subcommands/env.py +1 -1
- txt2ebook/subcommands/epub.py +1 -1
- txt2ebook/subcommands/gmi.py +11 -1
- txt2ebook/subcommands/massage.py +1 -1
- txt2ebook/subcommands/md.py +11 -1
- txt2ebook/subcommands/parse.py +11 -1
- txt2ebook/subcommands/pdf.py +1 -1
- txt2ebook/subcommands/tex.py +1 -1
- txt2ebook/subcommands/typ.py +11 -1
- txt2ebook/tokenizer.py +1 -1
- txt2ebook/txt2ebook.py +1 -1
- txt2ebook/zh_utils.py +1 -1
- {txt2ebook-0.1.120.dist-info → txt2ebook-0.1.122.dist-info}/METADATA +2 -2
- txt2ebook-0.1.122.dist-info/RECORD +53 -0
- txt2ebook-0.1.120.dist-info/RECORD +0 -53
- {txt2ebook-0.1.120.dist-info → txt2ebook-0.1.122.dist-info}/LICENSE.md +0 -0
- {txt2ebook-0.1.120.dist-info → txt2ebook-0.1.122.dist-info}/WHEEL +0 -0
- {txt2ebook-0.1.120.dist-info → txt2ebook-0.1.122.dist-info}/entry_points.txt +0 -0
txt2ebook/__init__.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (
|
1
|
+
# Copyright (c) 2021,2022,2023,2024,2025 Kian-Meng Ang
|
2
2
|
#
|
3
3
|
# This program is free software: you can redistribute it and/or modify
|
4
4
|
# it under the terms of the GNU Affero General Public License as published by
|
@@ -24,7 +24,7 @@ import langdetect
|
|
24
24
|
|
25
25
|
logger = logging.getLogger(__name__)
|
26
26
|
|
27
|
-
__version__ = "0.1.
|
27
|
+
__version__ = "0.1.122"
|
28
28
|
|
29
29
|
|
30
30
|
def setup_logger(config: argparse.Namespace) -> None:
|
txt2ebook/__main__.py
CHANGED
txt2ebook/cli.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (
|
1
|
+
# Copyright (c) 2021,2022,2023,2024,2025 Kian-Meng Ang
|
2
2
|
#
|
3
3
|
# This program is free software: you can redistribute it and/or modify
|
4
4
|
# it under the terms of the GNU Affero General Public License as published by
|
@@ -73,34 +73,6 @@ def build_parser(
|
|
73
73
|
metavar="LANGUAGE",
|
74
74
|
)
|
75
75
|
|
76
|
-
parser.add_argument(
|
77
|
-
"-fw",
|
78
|
-
"--fullwidth",
|
79
|
-
default=False,
|
80
|
-
action="store_true",
|
81
|
-
dest="fullwidth",
|
82
|
-
help="convert ASCII character from halfwidth to fullwidth",
|
83
|
-
)
|
84
|
-
|
85
|
-
parser.add_argument(
|
86
|
-
"-hn",
|
87
|
-
"--header-number",
|
88
|
-
default=False,
|
89
|
-
action="store_true",
|
90
|
-
dest="header_number",
|
91
|
-
help="convert section header from words to numbers",
|
92
|
-
)
|
93
|
-
|
94
|
-
parser.add_argument(
|
95
|
-
"-ps",
|
96
|
-
"--paragraph_separator",
|
97
|
-
dest="paragraph_separator",
|
98
|
-
type=lambda value: value.encode("utf-8").decode("unicode_escape"),
|
99
|
-
default="\n\n",
|
100
|
-
help="paragraph separator (default: %(default)r)",
|
101
|
-
metavar="SEPARATOR",
|
102
|
-
)
|
103
|
-
|
104
76
|
parser.add_argument(
|
105
77
|
"-rw",
|
106
78
|
"--raise-on-warning",
|
txt2ebook/exceptions.py
CHANGED
txt2ebook/formats/__init__.py
CHANGED
txt2ebook/formats/base.py
CHANGED
txt2ebook/formats/epub.py
CHANGED
txt2ebook/formats/gmi.py
CHANGED
txt2ebook/formats/md.py
CHANGED
txt2ebook/formats/pdf.py
CHANGED
txt2ebook/formats/tex.py
CHANGED
txt2ebook/formats/txt.py
CHANGED
txt2ebook/formats/typ.py
CHANGED
txt2ebook/helpers/__init__.py
CHANGED
txt2ebook/languages/__init__.py
CHANGED
txt2ebook/languages/en.py
CHANGED
txt2ebook/languages/zh_cn.py
CHANGED
txt2ebook/languages/zh_tw.py
CHANGED
txt2ebook/models/__init__.py
CHANGED
txt2ebook/models/book.py
CHANGED
txt2ebook/models/chapter.py
CHANGED
txt2ebook/models/volume.py
CHANGED
txt2ebook/parser.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (
|
1
|
+
# Copyright (c) 2021,2022,2023,2024,2025 Kian-Meng Ang
|
2
2
|
#
|
3
3
|
# This program is free software: you can redistribute it and/or modify
|
4
4
|
# it under the terms of the GNU Affero General Public License as published by
|
@@ -88,10 +88,10 @@ class Parser:
|
|
88
88
|
Returns:
|
89
89
|
str: The formatted section header.
|
90
90
|
"""
|
91
|
-
if not self.config.header_number or self.config.language not in (
|
91
|
+
if hasattr(self.config, "header_number") and (not self.config.header_number or self.config.language not in (
|
92
92
|
"zh-cn",
|
93
93
|
"zh-tw",
|
94
|
-
):
|
94
|
+
)):
|
95
95
|
return words
|
96
96
|
|
97
97
|
# left pad the section number if found as halfwidth integer
|
@@ -112,7 +112,7 @@ class Parser:
|
|
112
112
|
|
113
113
|
replaced_words = zh_words_to_numbers(words, length=length)
|
114
114
|
|
115
|
-
if self.config.fullwidth:
|
115
|
+
if hasattr(self.config, "fullwidth") and self.config.fullwidth:
|
116
116
|
replaced_words = zh_halfwidth_to_fullwidth(replaced_words)
|
117
117
|
|
118
118
|
logger.debug(
|
txt2ebook/subcommands/env.py
CHANGED
txt2ebook/subcommands/epub.py
CHANGED
txt2ebook/subcommands/gmi.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (
|
1
|
+
# Copyright (c) 2021,2022,2023,2024,2025 Kian-Meng Ang
|
2
2
|
#
|
3
3
|
# This program is free software: you can redistribute it and/or modify
|
4
4
|
# it under the terms of the GNU Affero General Public License as published by
|
@@ -95,6 +95,16 @@ def build_subparser(subparsers) -> None:
|
|
95
95
|
metavar="FILENAME_FORMAT",
|
96
96
|
)
|
97
97
|
|
98
|
+
gmi_parser.add_argument(
|
99
|
+
"-ps",
|
100
|
+
"--paragraph_separator",
|
101
|
+
dest="paragraph_separator",
|
102
|
+
type=lambda value: value.encode("utf-8").decode("unicode_escape"),
|
103
|
+
default="\n\n",
|
104
|
+
help="paragraph separator (default: %(default)r)",
|
105
|
+
metavar="SEPARATOR",
|
106
|
+
)
|
107
|
+
|
98
108
|
|
99
109
|
def run(args: argparse.Namespace) -> None:
|
100
110
|
"""Run md subcommand.
|
txt2ebook/subcommands/massage.py
CHANGED
txt2ebook/subcommands/md.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (
|
1
|
+
# Copyright (c) 2021,2022,2023,2024,2025 Kian-Meng Ang
|
2
2
|
#
|
3
3
|
# This program is free software: you can redistribute it and/or modify
|
4
4
|
# it under the terms of the GNU Affero General Public License as published by
|
@@ -95,6 +95,16 @@ def build_subparser(subparsers) -> None:
|
|
95
95
|
metavar="FILENAME_FORMAT",
|
96
96
|
)
|
97
97
|
|
98
|
+
md_parser.add_argument(
|
99
|
+
"-ps",
|
100
|
+
"--paragraph_separator",
|
101
|
+
dest="paragraph_separator",
|
102
|
+
type=lambda value: value.encode("utf-8").decode("unicode_escape"),
|
103
|
+
default="\n\n",
|
104
|
+
help="paragraph separator (default: %(default)r)",
|
105
|
+
metavar="SEPARATOR",
|
106
|
+
)
|
107
|
+
|
98
108
|
|
99
109
|
def run(args: argparse.Namespace) -> None:
|
100
110
|
"""Run md subcommand.
|
txt2ebook/subcommands/parse.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (
|
1
|
+
# Copyright (c) 2021,2022,2023,2024,2025 Kian-Meng Ang
|
2
2
|
#
|
3
3
|
# This program is free software: you can redistribute it and/or modify
|
4
4
|
# it under the terms of the GNU Affero General Public License as published by
|
@@ -45,6 +45,16 @@ def build_subparser(subparsers) -> None:
|
|
45
45
|
metavar="TXT_FILENAME",
|
46
46
|
)
|
47
47
|
|
48
|
+
parse_parser.add_argument(
|
49
|
+
"-ps",
|
50
|
+
"--paragraph_separator",
|
51
|
+
dest="paragraph_separator",
|
52
|
+
type=lambda value: value.encode("utf-8").decode("unicode_escape"),
|
53
|
+
default="\n\n",
|
54
|
+
help="paragraph separator (default: %(default)r)",
|
55
|
+
metavar="SEPARATOR",
|
56
|
+
)
|
57
|
+
|
48
58
|
parse_parser.set_defaults(func=run)
|
49
59
|
|
50
60
|
|
txt2ebook/subcommands/pdf.py
CHANGED
txt2ebook/subcommands/tex.py
CHANGED
txt2ebook/subcommands/typ.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (
|
1
|
+
# Copyright (c) 2021,2022,2023,2024,2025 Kian-Meng Ang
|
2
2
|
#
|
3
3
|
# This program is free software: you can redistribute it and/or modify
|
4
4
|
# it under the terms of the GNU Affero General Public License as published by
|
@@ -112,6 +112,16 @@ def build_subparser(subparsers) -> None:
|
|
112
112
|
metavar="FILENAME_FORMAT",
|
113
113
|
)
|
114
114
|
|
115
|
+
typ_parser.add_argument(
|
116
|
+
"-ps",
|
117
|
+
"--paragraph_separator",
|
118
|
+
dest="paragraph_separator",
|
119
|
+
type=lambda value: value.encode("utf-8").decode("unicode_escape"),
|
120
|
+
default="\n\n",
|
121
|
+
help="paragraph separator (default: %(default)r)",
|
122
|
+
metavar="SEPARATOR",
|
123
|
+
)
|
124
|
+
|
115
125
|
|
116
126
|
def run(args: argparse.Namespace) -> None:
|
117
127
|
"""Run typ subcommand.
|
txt2ebook/tokenizer.py
CHANGED
txt2ebook/txt2ebook.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# pylint: disable=no-value-for-parameter
|
2
|
-
# Copyright (
|
2
|
+
# Copyright (c) 2021,2022,2023,2024,2025 Kian-Meng Ang
|
3
3
|
#
|
4
4
|
# This program is free software: you can redistribute it and/or modify
|
5
5
|
# it under the terms of the GNU Affero General Public License as published by
|
txt2ebook/zh_utils.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: txt2ebook
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.122
|
4
4
|
Summary: CLI tool to convert txt file to ebook format
|
5
5
|
Home-page: https://github.com/kianmeng/txt2ebook
|
6
6
|
License: AGPL-3.0-or-later
|
@@ -205,7 +205,7 @@ txt2ebook ebook.txt
|
|
205
205
|
|
206
206
|
## Copyright and License
|
207
207
|
|
208
|
-
Copyright (c) 2021,2022,2023,2024 Kian-Meng Ang
|
208
|
+
Copyright (c) 2021,2022,2023,2024,2025 Kian-Meng Ang
|
209
209
|
|
210
210
|
This program is free software: you can redistribute it and/or modify it under
|
211
211
|
the terms of the GNU Affero General Public License as published by the Free
|
@@ -0,0 +1,53 @@
|
|
1
|
+
txt2ebook/__init__.py,sha256=azAoZvK9xXszMm1fUCaTAIsjVV71TfGUXix3_ARYDqg,2706
|
2
|
+
txt2ebook/__main__.py,sha256=L29rlfPSx9XMnVaHBYP2dyYgDmutJvONR3yUejjYwRY,855
|
3
|
+
txt2ebook/cli.py,sha256=D0jseJLlFDjLfX-yiGCC0e98a5IJ1IbRFx_mVGyYIxc,4241
|
4
|
+
txt2ebook/exceptions.py,sha256=oVtVMCqrxWq-CZ5GQYOBioil9i2kJ2mqD08IQ9A636Q,847
|
5
|
+
txt2ebook/formats/__init__.py,sha256=uNbNvSrXyfil7uIeFgYjttYB_1GkwTSPYfiDew9V4bs,2468
|
6
|
+
txt2ebook/formats/base.py,sha256=ODguJ7OBPXfRQLLeoL-G66NZihroXb4kG5-56ZrlygI,5819
|
7
|
+
txt2ebook/formats/epub.py,sha256=IVz-FmYQlcChOw38YqfKy46bPVSIrHyxA_94iz06N3Y,6941
|
8
|
+
txt2ebook/formats/gmi.py,sha256=qwNCcHh2LN4pEn0rDLpQFhLOPjLBgMU-E_dxWxewWbw,6788
|
9
|
+
txt2ebook/formats/md.py,sha256=9RWv_7cfXfAGC1MdYm0WTkjpgtXKQJTQjYOf0MqQmsc,6537
|
10
|
+
txt2ebook/formats/pdf.py,sha256=xPsTAZ0UtDjKt2sTMKDnNLEMq6gSVNnxkK9XDlMhC9A,7281
|
11
|
+
txt2ebook/formats/templates/__init__.py,sha256=f3K7pJByNmmvu-wvziks6qb2QnnLmkDjUACXyw2s60E,760
|
12
|
+
txt2ebook/formats/templates/epub/__init__.py,sha256=-XVLvnknTJTmQZY9UTH705vMcHgy56rQVRTusYawEZ4,766
|
13
|
+
txt2ebook/formats/templates/epub/clean.css,sha256=AnEwMckzUSKcjKsDiWtJW1oaceuklt2tyuS1VbpVK1s,462
|
14
|
+
txt2ebook/formats/templates/epub/condense.css,sha256=Fz80ZqkPsFRmGdURduAxqMV8drD0CCUlrv41P8rUsm8,477
|
15
|
+
txt2ebook/formats/templates/epub/noindent.css,sha256=_O5Tv90TKyyPBRdgjuNKFwtKFbdheh2V9PtDhgRUg3U,483
|
16
|
+
txt2ebook/formats/tex.py,sha256=V5B1nPR-WzGc4jqWu-BqxfQhtQsUTKM_sZZJsCcDBAk,5897
|
17
|
+
txt2ebook/formats/txt.py,sha256=j5RWF41WQfLdm-APwi8u-OE8snenDEJLzxHD_i9mxeg,7541
|
18
|
+
txt2ebook/formats/typ.py,sha256=_a3PKFh5jlHvaqRes6XvtPoDJI_HJaH7pCBbBRFeYyM,6647
|
19
|
+
txt2ebook/helpers/__init__.py,sha256=-G-BbGOY2iRmX8jNKnXXZ7tWD17_IjuDbFzT-bSrSf8,1976
|
20
|
+
txt2ebook/languages/__init__.py,sha256=1AfDn-D0q-dvODGP-9KxPHY_Wtk-ifZdN1FutZMT9-Q,763
|
21
|
+
txt2ebook/languages/en.py,sha256=e5VzZwfrO2kABMwEB0l--eo4XbOre6f6uJ-ySU3ORT8,960
|
22
|
+
txt2ebook/languages/zh_cn.py,sha256=VlNB-XvCx_aB4G-gGJJA2i49ksPRdGDiZu0qXHwsDvo,1971
|
23
|
+
txt2ebook/languages/zh_tw.py,sha256=_fdXOOSLK0nTMuBe1Om2qjb4zr2PVd6N4xi2rrYkNTI,1515
|
24
|
+
txt2ebook/locales/en/LC_MESSAGES/txt2ebook.mo,sha256=Ym6soeijV3zsv9FUPWlJnu18-CNb5tcOTN5JsMOfV9c,672
|
25
|
+
txt2ebook/locales/en/LC_MESSAGES/txt2ebook.po,sha256=YhI4ZnZVWIqR3WpbLL940xXdLwAAp9-OBQShD6QtSWU,698
|
26
|
+
txt2ebook/locales/txt2ebook.pot,sha256=NyqRL3frKSw9bry_vriA1pdXh1gh1qAUpi5_wzLb7jc,641
|
27
|
+
txt2ebook/locales/zh-cn/LC_MESSAGES/txt2ebook.mo,sha256=rRGW7HByDVZV8WpQkhyIFOWYNTQc4NnStrn0eGJX8Wc,675
|
28
|
+
txt2ebook/locales/zh-cn/LC_MESSAGES/txt2ebook.po,sha256=zVvD8AEL6gcxg4QPfc_NnDy22Qf9_AdeYejiVzbLsFc,698
|
29
|
+
txt2ebook/locales/zh-tw/LC_MESSAGES/txt2ebook.mo,sha256=1GIuOcO_bISiFcfhFez-A7mSi11Mo-x3PBobBENgMEc,675
|
30
|
+
txt2ebook/locales/zh-tw/LC_MESSAGES/txt2ebook.po,sha256=Y-oJYvufQKqiUmAJR6RAB9DZdsu2hChUUtkEApu7byI,698
|
31
|
+
txt2ebook/models/__init__.py,sha256=Z3zClWLj08Q8HgaWV1RRgIKatEhIUfYBAVWm-j4m05w,930
|
32
|
+
txt2ebook/models/book.py,sha256=jzbLM2v5aKr_p5_YqhCVDEdCmoS61nitKM6mLznjyME,2763
|
33
|
+
txt2ebook/models/chapter.py,sha256=6YvUDHzR6amGMZgkQl_xHWrYZUmlfpF7mnDLilG2BpA,1686
|
34
|
+
txt2ebook/models/volume.py,sha256=koz1KfWjvGWLFbmGEQlZ23frsP93cDsuBMySYBHiXm8,1597
|
35
|
+
txt2ebook/parser.py,sha256=ClcmWdFMSLfU-76vVnoHVAb6N7qYhCy6zmIwK0MPx9M,9006
|
36
|
+
txt2ebook/subcommands/__init__.py,sha256=ldhzvsrMsR8lZmhZef77JFz0jValpV3pytFfwJSkjls,1146
|
37
|
+
txt2ebook/subcommands/env.py,sha256=Fx2IXNmmlW-6jlMjRPI-nYp90Sbi77Z2SeL4q3cGg2w,1495
|
38
|
+
txt2ebook/subcommands/epub.py,sha256=JnQuegVYJYk20AmoG0uldtMs06coyGOF-6hslUE5_Ss,3199
|
39
|
+
txt2ebook/subcommands/gmi.py,sha256=zVvP2ZjLtDdqew4Vlab2_R3H2OmQkpMKdfND6qgppiU,3320
|
40
|
+
txt2ebook/subcommands/massage.py,sha256=ZDb0pBlOOmsVWWNaokPr9FOpOPcKmjKszlE-mLAiNxE,10192
|
41
|
+
txt2ebook/subcommands/md.py,sha256=P-oFtb2u-v2F_KU8t249-f5Ihjb_TCT_NWMlOYoq5p4,3330
|
42
|
+
txt2ebook/subcommands/parse.py,sha256=FaYTWa2yqkowwPAmHWJC7iCii2Rnus3SUHG10GjjJp4,3022
|
43
|
+
txt2ebook/subcommands/pdf.py,sha256=KS3rzxPJG6ovt8GPJj8u1Bum5ye3zrEI0LPz21EMLZo,2981
|
44
|
+
txt2ebook/subcommands/tex.py,sha256=X6ZBfuAs_mcJe8PNjzoW339ecPynZduVbcCq0henjiA,3131
|
45
|
+
txt2ebook/subcommands/typ.py,sha256=r4Xf7xSINbYfaIKkVzdyQDlUMWPvOIcbvOwC71spu6w,3682
|
46
|
+
txt2ebook/tokenizer.py,sha256=_Y34FEQghaqD-6OLuMJ1amCuF_beGb0SAO24CzsJ4qE,9595
|
47
|
+
txt2ebook/txt2ebook.py,sha256=vQPdvazg1WIBs8AEgEHfEQWkMr8wrZ0XBtx08qv4huU,13565
|
48
|
+
txt2ebook/zh_utils.py,sha256=0Yq9r-JL4HntW68vFR6TBP9yQim1a07mfsh_sp-XmaE,4887
|
49
|
+
txt2ebook-0.1.122.dist-info/LICENSE.md,sha256=tGtFDwxWTjuR9syrJoSv1Hiffd2u8Tu8cYClfrXS_YU,31956
|
50
|
+
txt2ebook-0.1.122.dist-info/METADATA,sha256=WTw4l4EPCZ4VrpAK-BWO_z-6Wdz0gmKecmILzK5RaGE,7850
|
51
|
+
txt2ebook-0.1.122.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
52
|
+
txt2ebook-0.1.122.dist-info/entry_points.txt,sha256=JLW3Iv7eUyABlQeUFiUWQhLKfRdnB9o5SIcNlneGR0Q,77
|
53
|
+
txt2ebook-0.1.122.dist-info/RECORD,,
|
@@ -1,53 +0,0 @@
|
|
1
|
-
txt2ebook/__init__.py,sha256=1bWvJEM5JDh6CZzLb2ZN4k0el8I4jieUAWPIDv2C8WA,2701
|
2
|
-
txt2ebook/__main__.py,sha256=gMLvgpqc_BL4cBqNe0vqErRF5dlJPAbvqu1zndcAHYI,850
|
3
|
-
txt2ebook/cli.py,sha256=Em3etvi8kl7UFaB_6_fN55qNqQpwQtZ5Ej9NPEjGK04,4972
|
4
|
-
txt2ebook/exceptions.py,sha256=b2HDsXdqweLJbvSJEGt48nxvGkZq20SfYezSjwp77JU,842
|
5
|
-
txt2ebook/formats/__init__.py,sha256=WhiRWGvbUjc8QZfhAIkKCg6GL8vNNlEF73meZSzYhDA,2463
|
6
|
-
txt2ebook/formats/base.py,sha256=SMt6Op88-HoIxRA-tgPBNSlrt7-KZ-m5-BytAEJT4m0,5814
|
7
|
-
txt2ebook/formats/epub.py,sha256=ZRXRnEO-qCtRIQYM9zh-VaoJfrySRdAliWr5y91l_bA,6936
|
8
|
-
txt2ebook/formats/gmi.py,sha256=deVCwFfCE7Ys9eFTnRgZUncJX6LiUM1iXG7HXFCHlPY,6783
|
9
|
-
txt2ebook/formats/md.py,sha256=D-6bGaNNtL11A-a8xZDVVUbfUMIdkeV6umTlsXpLSOA,6532
|
10
|
-
txt2ebook/formats/pdf.py,sha256=Mz-h300tKc_-NcqL6YZTTAPaBk0i9e0323LXFR8bR0U,7276
|
11
|
-
txt2ebook/formats/templates/__init__.py,sha256=PmObHFVHXD0GIw4328g1i1KoBks1m5-7u00XMNgb38U,755
|
12
|
-
txt2ebook/formats/templates/epub/__init__.py,sha256=DeIsL4WDqgTU7zCLxlCidFItvG4Nl4TMKWeoeTcUuuo,761
|
13
|
-
txt2ebook/formats/templates/epub/clean.css,sha256=AnEwMckzUSKcjKsDiWtJW1oaceuklt2tyuS1VbpVK1s,462
|
14
|
-
txt2ebook/formats/templates/epub/condense.css,sha256=Fz80ZqkPsFRmGdURduAxqMV8drD0CCUlrv41P8rUsm8,477
|
15
|
-
txt2ebook/formats/templates/epub/noindent.css,sha256=_O5Tv90TKyyPBRdgjuNKFwtKFbdheh2V9PtDhgRUg3U,483
|
16
|
-
txt2ebook/formats/tex.py,sha256=Z4nPTXcKFu2ZTsICuihDejmeNoQ9OSk7RT0VMJO2QGE,5892
|
17
|
-
txt2ebook/formats/txt.py,sha256=8PkJ54r-0saZYyYEH64nYSkM-oW5LnurCbAk6d2Ue78,7536
|
18
|
-
txt2ebook/formats/typ.py,sha256=1GpBkLWbScBr8evFDV_qaKtHPwV1MU042AHlht1tIFA,6642
|
19
|
-
txt2ebook/helpers/__init__.py,sha256=cQmFjEsEEI0gRxDPL-284FMS5Z-iBMcu-4qe7Icf7is,1971
|
20
|
-
txt2ebook/languages/__init__.py,sha256=oShuwgKn784v_XYrAKQM2x1h0-KEsJPeia9XWMnJTYU,758
|
21
|
-
txt2ebook/languages/en.py,sha256=ZUhkXzZrs3Sy11-hj0SGj5XYrMnafTHEN8WxMOJEtEo,955
|
22
|
-
txt2ebook/languages/zh_cn.py,sha256=Qtu_k9LiXkib_7Tp5Wwi3ESSKDJ59BvArW4s7jr7kwA,1966
|
23
|
-
txt2ebook/languages/zh_tw.py,sha256=MGu99-dSPq7bwS9PyRTUExJuYGtViq8d2ubrjH9C7cA,1510
|
24
|
-
txt2ebook/locales/en/LC_MESSAGES/txt2ebook.mo,sha256=Ym6soeijV3zsv9FUPWlJnu18-CNb5tcOTN5JsMOfV9c,672
|
25
|
-
txt2ebook/locales/en/LC_MESSAGES/txt2ebook.po,sha256=YhI4ZnZVWIqR3WpbLL940xXdLwAAp9-OBQShD6QtSWU,698
|
26
|
-
txt2ebook/locales/txt2ebook.pot,sha256=NyqRL3frKSw9bry_vriA1pdXh1gh1qAUpi5_wzLb7jc,641
|
27
|
-
txt2ebook/locales/zh-cn/LC_MESSAGES/txt2ebook.mo,sha256=rRGW7HByDVZV8WpQkhyIFOWYNTQc4NnStrn0eGJX8Wc,675
|
28
|
-
txt2ebook/locales/zh-cn/LC_MESSAGES/txt2ebook.po,sha256=zVvD8AEL6gcxg4QPfc_NnDy22Qf9_AdeYejiVzbLsFc,698
|
29
|
-
txt2ebook/locales/zh-tw/LC_MESSAGES/txt2ebook.mo,sha256=1GIuOcO_bISiFcfhFez-A7mSi11Mo-x3PBobBENgMEc,675
|
30
|
-
txt2ebook/locales/zh-tw/LC_MESSAGES/txt2ebook.po,sha256=Y-oJYvufQKqiUmAJR6RAB9DZdsu2hChUUtkEApu7byI,698
|
31
|
-
txt2ebook/models/__init__.py,sha256=8_k1oI_PnPMekhdZCXiTtg5WghdR6fugQEHJHsy1-Ds,925
|
32
|
-
txt2ebook/models/book.py,sha256=Q4EzFFAGigz4MPSM9Vu_F-JxNOWjm82469Vy8-vq-pw,2758
|
33
|
-
txt2ebook/models/chapter.py,sha256=buECAklNQgM3tDehzyVO9YfA_F0iXyLq2PaMZGV_Zaw,1681
|
34
|
-
txt2ebook/models/volume.py,sha256=HyT4XO9yZ8d0PgZVfMMyAYUDFv58RrUmsSFNNmU-sHY,1592
|
35
|
-
txt2ebook/parser.py,sha256=oA_O7i9bK7FQy8NiIEbGS3bkDcNcDwUX951ieoDmyhg,8919
|
36
|
-
txt2ebook/subcommands/__init__.py,sha256=RU5YLwFz_SLrFpMz8vSYU6dwco3ZGe97zSVwFl1fMp4,1141
|
37
|
-
txt2ebook/subcommands/env.py,sha256=nY7mmBkV2y1WonwUpJZAAZ141aeUCUtPZRACk18WoaY,1490
|
38
|
-
txt2ebook/subcommands/epub.py,sha256=SdU4NYCNgGbioe-6Je88gvQbycIQDa4sPcvlnUvSOrY,3194
|
39
|
-
txt2ebook/subcommands/gmi.py,sha256=l_YaxXwdp9L8h2xu2bTNPcY5hOGp6sJAEE9E1zuL1rc,3008
|
40
|
-
txt2ebook/subcommands/massage.py,sha256=VB31ZKAKIprK6ccigpmHr87LTNjgHxlXxYvbhy7Zfds,10187
|
41
|
-
txt2ebook/subcommands/md.py,sha256=MF74qdG7aHDRRI0XZYGlZdyMz07HKDQ7-xSe_dhAbsU,3019
|
42
|
-
txt2ebook/subcommands/parse.py,sha256=nklsxk_S2iswPWKlqa_azbjQOi5PHx8BwMuXV5yCOCs,2708
|
43
|
-
txt2ebook/subcommands/pdf.py,sha256=SVsFz3oW4RDLM51O7G7Y8PqoTNoKOSEYMqDfak6DDgg,2976
|
44
|
-
txt2ebook/subcommands/tex.py,sha256=TEOazBTfFlE1-eW1oyG1g_IE8hXYZUvKbmH3sBAFMHo,3126
|
45
|
-
txt2ebook/subcommands/typ.py,sha256=l5CKeHIrnGHRMvjowXr3mT5WgWEHTQc34nJYgtzGKJw,3370
|
46
|
-
txt2ebook/tokenizer.py,sha256=KJud1GAZIzeZtPWjAKc78q675pOfvIhBQYqOTmkfJm8,9590
|
47
|
-
txt2ebook/txt2ebook.py,sha256=zNgxSmvEPpw7iiOq4gf9K5jsrJm0BqNQGM3MSAYh0F0,13560
|
48
|
-
txt2ebook/zh_utils.py,sha256=EgKVbwqYGaTGswQUGcOCeSfRelzwkAb9WWY9TrsX1x4,4882
|
49
|
-
txt2ebook-0.1.120.dist-info/LICENSE.md,sha256=tGtFDwxWTjuR9syrJoSv1Hiffd2u8Tu8cYClfrXS_YU,31956
|
50
|
-
txt2ebook-0.1.120.dist-info/METADATA,sha256=nij4cG-km_NypJnT50Ftwn6yWDt3HJZvO_RiqyUwb9Y,7845
|
51
|
-
txt2ebook-0.1.120.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
52
|
-
txt2ebook-0.1.120.dist-info/entry_points.txt,sha256=JLW3Iv7eUyABlQeUFiUWQhLKfRdnB9o5SIcNlneGR0Q,77
|
53
|
-
txt2ebook-0.1.120.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|