txt2ebook 0.1.119__py3-none-any.whl → 0.1.121__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 +2 -31
- 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 +1 -1
- txt2ebook/subcommands/massage.py +1 -1
- txt2ebook/subcommands/md.py +1 -1
- txt2ebook/subcommands/parse.py +1 -1
- txt2ebook/subcommands/pdf.py +1 -1
- txt2ebook/subcommands/tex.py +1 -1
- txt2ebook/subcommands/typ.py +1 -1
- txt2ebook/tokenizer.py +1 -1
- txt2ebook/txt2ebook.py +1 -1
- txt2ebook/zh_utils.py +1 -1
- {txt2ebook-0.1.119.dist-info → txt2ebook-0.1.121.dist-info}/METADATA +2 -2
- txt2ebook-0.1.121.dist-info/RECORD +53 -0
- txt2ebook-0.1.119.dist-info/RECORD +0 -53
- {txt2ebook-0.1.119.dist-info → txt2ebook-0.1.121.dist-info}/LICENSE.md +0 -0
- {txt2ebook-0.1.119.dist-info → txt2ebook-0.1.121.dist-info}/WHEEL +0 -0
- {txt2ebook-0.1.119.dist-info → txt2ebook-0.1.121.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.121"
|
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
|
@@ -32,7 +32,7 @@ logger = logging.getLogger(__name__)
|
|
32
32
|
|
33
33
|
|
34
34
|
def build_parser(
|
35
|
-
|
35
|
+
_args: Optional[Sequence[str]] = None,
|
36
36
|
) -> argparse.ArgumentParser:
|
37
37
|
"""Build the CLI parser."""
|
38
38
|
parser = argparse.ArgumentParser(
|
@@ -64,15 +64,6 @@ def build_parser(
|
|
64
64
|
),
|
65
65
|
)
|
66
66
|
|
67
|
-
parser.add_argument(
|
68
|
-
"-t",
|
69
|
-
"--title",
|
70
|
-
dest="title",
|
71
|
-
default=None,
|
72
|
-
help="title of the ebook (default: '%(default)s')",
|
73
|
-
metavar="TITLE",
|
74
|
-
)
|
75
|
-
|
76
67
|
parser.add_argument(
|
77
68
|
"-l",
|
78
69
|
"--language",
|
@@ -82,26 +73,6 @@ def build_parser(
|
|
82
73
|
metavar="LANGUAGE",
|
83
74
|
)
|
84
75
|
|
85
|
-
parser.add_argument(
|
86
|
-
"-a",
|
87
|
-
"--author",
|
88
|
-
dest="author",
|
89
|
-
default=[],
|
90
|
-
action="append",
|
91
|
-
help="author of the ebook (default: '%(default)s')",
|
92
|
-
metavar="AUTHOR",
|
93
|
-
)
|
94
|
-
|
95
|
-
parser.add_argument(
|
96
|
-
"-tr",
|
97
|
-
"--translator",
|
98
|
-
dest="translator",
|
99
|
-
default=[],
|
100
|
-
action="append",
|
101
|
-
help="translator of the ebook (default: '%(default)s')",
|
102
|
-
metavar="TRANSLATOR",
|
103
|
-
)
|
104
|
-
|
105
76
|
parser.add_argument(
|
106
77
|
"-fw",
|
107
78
|
"--fullwidth",
|
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
|
@@ -216,13 +216,13 @@ class Parser:
|
|
216
216
|
toc[-1].add_paragraph(token.value)
|
217
217
|
|
218
218
|
# Use authors if set explicitly from command line.
|
219
|
-
if self.config.author:
|
219
|
+
if hasattr(self.config, "author") and self.config.author:
|
220
220
|
authors = self.config.author
|
221
221
|
|
222
|
-
if self.config.title:
|
222
|
+
if hasattr(self.config, "title") and self.config.title:
|
223
223
|
book_title = self.config.title
|
224
224
|
|
225
|
-
if self.config.translator:
|
225
|
+
if hasattr(self.config, "translator") and self.config.translator:
|
226
226
|
authors = self.config.translator
|
227
227
|
|
228
228
|
logger.info("Found or set book title: %s", book_title)
|
txt2ebook/subcommands/env.py
CHANGED
txt2ebook/subcommands/epub.py
CHANGED
txt2ebook/subcommands/gmi.py
CHANGED
txt2ebook/subcommands/massage.py
CHANGED
txt2ebook/subcommands/md.py
CHANGED
txt2ebook/subcommands/parse.py
CHANGED
txt2ebook/subcommands/pdf.py
CHANGED
txt2ebook/subcommands/tex.py
CHANGED
txt2ebook/subcommands/typ.py
CHANGED
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.121
|
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=ZbNzBV_QfmyKh55ghTeB5sCb6O0x6-hO9jurRijST9M,2706
|
2
|
+
txt2ebook/__main__.py,sha256=L29rlfPSx9XMnVaHBYP2dyYgDmutJvONR3yUejjYwRY,855
|
3
|
+
txt2ebook/cli.py,sha256=rb2fDMFUhwHwaik7DvVXVjlMmFmk9haLVicmI5zL1aY,4977
|
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=nXbuEyf9EmgN4-3nAqD1sNzT2se4TyKq5zkUSESNHDY,8924
|
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=yA_U_dwHBo67jbN_ce1rsKwCA_W_4Zf-lZQ9KeWcRBA,3013
|
40
|
+
txt2ebook/subcommands/massage.py,sha256=ZDb0pBlOOmsVWWNaokPr9FOpOPcKmjKszlE-mLAiNxE,10192
|
41
|
+
txt2ebook/subcommands/md.py,sha256=H8aMPnwSdG1q7cT76LqjX6J9c1uUNC4fzOpU2zsV-0s,3024
|
42
|
+
txt2ebook/subcommands/parse.py,sha256=BoK0AN1ahB_0ONwrgDDU-Wyi3anvk7Uo-IJIVYHKxLQ,2713
|
43
|
+
txt2ebook/subcommands/pdf.py,sha256=KS3rzxPJG6ovt8GPJj8u1Bum5ye3zrEI0LPz21EMLZo,2981
|
44
|
+
txt2ebook/subcommands/tex.py,sha256=X6ZBfuAs_mcJe8PNjzoW339ecPynZduVbcCq0henjiA,3131
|
45
|
+
txt2ebook/subcommands/typ.py,sha256=IwCSG4ShiwgesoZ5hASKX79Hha_MLPx25YSYa0OWkrE,3375
|
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.121.dist-info/LICENSE.md,sha256=tGtFDwxWTjuR9syrJoSv1Hiffd2u8Tu8cYClfrXS_YU,31956
|
50
|
+
txt2ebook-0.1.121.dist-info/METADATA,sha256=Up3Qd081i0sGcd8q5ujD0CNCLTHJn29Y9yGvPeJ_TO8,7850
|
51
|
+
txt2ebook-0.1.121.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
52
|
+
txt2ebook-0.1.121.dist-info/entry_points.txt,sha256=JLW3Iv7eUyABlQeUFiUWQhLKfRdnB9o5SIcNlneGR0Q,77
|
53
|
+
txt2ebook-0.1.121.dist-info/RECORD,,
|
@@ -1,53 +0,0 @@
|
|
1
|
-
txt2ebook/__init__.py,sha256=iohYWQYl2xqJZNU_hSkVkfs-JeUr5IMRQzAiLUxlcEA,2701
|
2
|
-
txt2ebook/__main__.py,sha256=gMLvgpqc_BL4cBqNe0vqErRF5dlJPAbvqu1zndcAHYI,850
|
3
|
-
txt2ebook/cli.py,sha256=8yrYmixLbQCwAwdd_u0A3SSHDxIEZLI04lg53Ec3XwY,5622
|
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=XlVjCKSUdAPKvp2655xWwHMOnpA8Qhe6ysExxdl8_ss,8811
|
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.119.dist-info/LICENSE.md,sha256=tGtFDwxWTjuR9syrJoSv1Hiffd2u8Tu8cYClfrXS_YU,31956
|
50
|
-
txt2ebook-0.1.119.dist-info/METADATA,sha256=5vwCS_b0PjoI37CgdjvrtwKt5fas1hsvuPerYtNscRU,7845
|
51
|
-
txt2ebook-0.1.119.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
52
|
-
txt2ebook-0.1.119.dist-info/entry_points.txt,sha256=JLW3Iv7eUyABlQeUFiUWQhLKfRdnB9o5SIcNlneGR0Q,77
|
53
|
-
txt2ebook-0.1.119.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|