txt2ebook 0.1.74__py3-none-any.whl → 0.1.76__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 +1 -1
- txt2ebook/formats/base.py +12 -0
- txt2ebook/formats/epub.py +3 -0
- txt2ebook/formats/gmi.py +3 -0
- txt2ebook/formats/md.py +3 -0
- txt2ebook/formats/txt.py +6 -0
- txt2ebook/formats/typ.py +3 -0
- txt2ebook/locales/en/LC_MESSAGES/txt2ebook.po +6 -6
- txt2ebook/locales/txt2ebook.pot +6 -6
- txt2ebook/locales/zh-cn/LC_MESSAGES/txt2ebook.po +6 -6
- txt2ebook/locales/zh-tw/LC_MESSAGES/txt2ebook.po +6 -6
- txt2ebook/txt2ebook.py +9 -0
- {txt2ebook-0.1.74.dist-info → txt2ebook-0.1.76.dist-info}/METADATA +5 -3
- {txt2ebook-0.1.74.dist-info → txt2ebook-0.1.76.dist-info}/RECORD +17 -17
- {txt2ebook-0.1.74.dist-info → txt2ebook-0.1.76.dist-info}/LICENSE.md +0 -0
- {txt2ebook-0.1.74.dist-info → txt2ebook-0.1.76.dist-info}/WHEEL +0 -0
- {txt2ebook-0.1.74.dist-info → txt2ebook-0.1.76.dist-info}/entry_points.txt +0 -0
txt2ebook/__init__.py
CHANGED
txt2ebook/formats/base.py
CHANGED
@@ -21,6 +21,8 @@ import io
|
|
21
21
|
import logging
|
22
22
|
import os
|
23
23
|
import shutil
|
24
|
+
import subprocess
|
25
|
+
import sys
|
24
26
|
from abc import ABC, abstractmethod
|
25
27
|
from importlib import import_module
|
26
28
|
from pathlib import Path
|
@@ -64,6 +66,16 @@ class BaseWriter(ABC):
|
|
64
66
|
)
|
65
67
|
self._ = translation.gettext
|
66
68
|
|
69
|
+
def _open_file(self, filename):
|
70
|
+
if sys.platform == "linux":
|
71
|
+
subprocess.call(["xdg-open", filename])
|
72
|
+
elif sys.platform == "darwin":
|
73
|
+
subprocess.call(["open", filename])
|
74
|
+
elif sys.platform == "windows":
|
75
|
+
os.startfile(filename)
|
76
|
+
|
77
|
+
logger.info("Open file: %s using default program.", filename.resolve())
|
78
|
+
|
67
79
|
def _refresh_output_folder(self):
|
68
80
|
cwd = self._output_folder()
|
69
81
|
if self.config.purge and cwd.exists():
|
txt2ebook/formats/epub.py
CHANGED
@@ -96,6 +96,9 @@ class EpubWriter(BaseWriter):
|
|
96
96
|
epub.write_epub(output_filename, book, {})
|
97
97
|
logger.info("Generate EPUB file: %s", output_filename.resolve())
|
98
98
|
|
99
|
+
if self.config.open:
|
100
|
+
self._open_file(output_filename)
|
101
|
+
|
99
102
|
def _build_nav(self, book: epub.EpubBook) -> None:
|
100
103
|
book.add_item(epub.EpubNcx())
|
101
104
|
|
txt2ebook/formats/gmi.py
CHANGED
@@ -130,6 +130,9 @@ class GmiWriter(BaseWriter):
|
|
130
130
|
logger.info("Generate GemText file: %s", new_filename.resolve())
|
131
131
|
file.write(self._to_md())
|
132
132
|
|
133
|
+
if self.config.open:
|
134
|
+
self._open_file(new_filename)
|
135
|
+
|
133
136
|
def _to_md(self) -> str:
|
134
137
|
toc = self._to_toc("*", "# ") if self.config.with_toc else ""
|
135
138
|
return self._to_metadata_txt() + toc + self._to_body_txt()
|
txt2ebook/formats/md.py
CHANGED
@@ -129,6 +129,9 @@ class MdWriter(BaseWriter):
|
|
129
129
|
logger.info("Generate Markdown file: %s", new_filename.resolve())
|
130
130
|
file.write(self._to_md())
|
131
131
|
|
132
|
+
if self.config.open:
|
133
|
+
self._open_file(new_filename)
|
134
|
+
|
132
135
|
def _to_md(self) -> str:
|
133
136
|
toc = self._to_toc("-", "# ") if self.config.with_toc else ""
|
134
137
|
return self._to_metadata_txt() + toc + self._to_body_txt()
|
txt2ebook/formats/txt.py
CHANGED
@@ -151,6 +151,9 @@ class TxtWriter(BaseWriter):
|
|
151
151
|
file.write(self._to_txt())
|
152
152
|
logger.info("Generate TXT file: %s", new_filename.resolve())
|
153
153
|
|
154
|
+
if self.config.open:
|
155
|
+
self._open_file(new_filename)
|
156
|
+
|
154
157
|
def _overwrite_file(self) -> None:
|
155
158
|
txt_filename = Path(self.config.input_file.name)
|
156
159
|
|
@@ -158,6 +161,9 @@ class TxtWriter(BaseWriter):
|
|
158
161
|
file.write(self._to_txt())
|
159
162
|
logger.info("Overwrite txt file: %s", txt_filename.resolve())
|
160
163
|
|
164
|
+
if self.config.open:
|
165
|
+
self._open_file(txt_filename)
|
166
|
+
|
161
167
|
def _to_txt(self) -> str:
|
162
168
|
toc = self._to_toc("-") if self.config.with_toc else ""
|
163
169
|
return self._to_metadata_txt() + toc + self._to_body_txt()
|
txt2ebook/formats/typ.py
CHANGED
@@ -52,6 +52,9 @@ class TypWriter(BaseWriter):
|
|
52
52
|
logger.info("Generate PDF file: %s", pdf_filename.resolve())
|
53
53
|
typst.compile(new_filename, output=pdf_filename)
|
54
54
|
|
55
|
+
if self.config.open:
|
56
|
+
self._open_file(pdf_filename)
|
57
|
+
|
55
58
|
def _get_pagesize(self) -> str:
|
56
59
|
return self.config.page_size or self.langconf.DEFAULT_PDF_PAGE_SIZE
|
57
60
|
|
@@ -1,20 +1,20 @@
|
|
1
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:
|
1
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:141
|
2
2
|
msgid "title:"
|
3
3
|
msgstr "Title:"
|
4
4
|
|
5
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:
|
5
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:142
|
6
6
|
msgid "author:"
|
7
7
|
msgstr "Author:"
|
8
8
|
|
9
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:
|
9
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:143
|
10
10
|
msgid "translator:"
|
11
11
|
msgstr "Translator:"
|
12
12
|
|
13
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:
|
13
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:144
|
14
14
|
msgid "tag:"
|
15
15
|
msgstr "Tag:"
|
16
16
|
|
17
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:
|
17
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:155
|
18
18
|
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/gmi.py:62
|
19
19
|
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/md.py:61
|
20
20
|
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/pdf.py:126
|
@@ -22,7 +22,7 @@ msgstr "Tag:"
|
|
22
22
|
msgid "toc"
|
23
23
|
msgstr "Table of Content"
|
24
24
|
|
25
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/epub.py:
|
25
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/epub.py:147
|
26
26
|
msgid "cover"
|
27
27
|
msgstr "Cover"
|
28
28
|
|
txt2ebook/locales/txt2ebook.pot
CHANGED
@@ -1,20 +1,20 @@
|
|
1
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:
|
1
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:141
|
2
2
|
msgid "title:"
|
3
3
|
msgstr ""
|
4
4
|
|
5
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:
|
5
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:142
|
6
6
|
msgid "author:"
|
7
7
|
msgstr ""
|
8
8
|
|
9
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:
|
9
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:143
|
10
10
|
msgid "translator:"
|
11
11
|
msgstr ""
|
12
12
|
|
13
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:
|
13
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:144
|
14
14
|
msgid "tag:"
|
15
15
|
msgstr ""
|
16
16
|
|
17
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:
|
17
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:155
|
18
18
|
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/gmi.py:62
|
19
19
|
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/md.py:61
|
20
20
|
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/pdf.py:126
|
@@ -22,7 +22,7 @@ msgstr ""
|
|
22
22
|
msgid "toc"
|
23
23
|
msgstr ""
|
24
24
|
|
25
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/epub.py:
|
25
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/epub.py:147
|
26
26
|
msgid "cover"
|
27
27
|
msgstr ""
|
28
28
|
|
@@ -1,20 +1,20 @@
|
|
1
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:
|
1
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:141
|
2
2
|
msgid "title:"
|
3
3
|
msgstr "书名:"
|
4
4
|
|
5
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:
|
5
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:142
|
6
6
|
msgid "author:"
|
7
7
|
msgstr "作者:"
|
8
8
|
|
9
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:
|
9
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:143
|
10
10
|
msgid "translator:"
|
11
11
|
msgstr "翻译:"
|
12
12
|
|
13
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:
|
13
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:144
|
14
14
|
msgid "tag:"
|
15
15
|
msgstr "票签:"
|
16
16
|
|
17
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:
|
17
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:155
|
18
18
|
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/gmi.py:62
|
19
19
|
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/md.py:61
|
20
20
|
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/pdf.py:126
|
@@ -22,7 +22,7 @@ msgstr "票签:"
|
|
22
22
|
msgid "toc"
|
23
23
|
msgstr "目录"
|
24
24
|
|
25
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/epub.py:
|
25
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/epub.py:147
|
26
26
|
msgid "cover"
|
27
27
|
msgstr "封面"
|
28
28
|
|
@@ -1,20 +1,20 @@
|
|
1
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:
|
1
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:141
|
2
2
|
msgid "title:"
|
3
3
|
msgstr "书名:"
|
4
4
|
|
5
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:
|
5
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:142
|
6
6
|
msgid "author:"
|
7
7
|
msgstr "作者:"
|
8
8
|
|
9
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:
|
9
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:143
|
10
10
|
msgid "translator:"
|
11
11
|
msgstr "翻译:"
|
12
12
|
|
13
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:
|
13
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:144
|
14
14
|
msgid "tag:"
|
15
15
|
msgstr "标签:"
|
16
16
|
|
17
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:
|
17
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/base.py:155
|
18
18
|
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/gmi.py:62
|
19
19
|
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/md.py:61
|
20
20
|
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/pdf.py:126
|
@@ -22,7 +22,7 @@ msgstr "标签:"
|
|
22
22
|
msgid "toc"
|
23
23
|
msgstr "目录"
|
24
24
|
|
25
|
-
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/epub.py:
|
25
|
+
#: /home/ang/src/self/txt2ebook/txt2ebook/src/txt2ebook/formats/epub.py:147
|
26
26
|
msgid "cover"
|
27
27
|
msgstr "封面"
|
28
28
|
|
txt2ebook/txt2ebook.py
CHANGED
@@ -418,6 +418,15 @@ def build_parser(
|
|
418
418
|
help="overwrite massaged TXT_FILENAME",
|
419
419
|
)
|
420
420
|
|
421
|
+
parser.add_argument(
|
422
|
+
"-op",
|
423
|
+
"--open",
|
424
|
+
default=False,
|
425
|
+
action="store_true",
|
426
|
+
dest="open",
|
427
|
+
help="open the generated file using default program",
|
428
|
+
)
|
429
|
+
|
421
430
|
parser.add_argument(
|
422
431
|
"-q",
|
423
432
|
"--quiet",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: txt2ebook
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.76
|
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
|
@@ -78,8 +78,8 @@ usage: txt2ebook [-of OUTPUT_FOLDER] [-p] [-f {epub,gmi,md,pdf,txt,typ}]
|
|
78
78
|
[-ps SEPARATOR] [-pz PAGE_SIZE] [-rd REGEX] [-rvc REGEX]
|
79
79
|
[-rv REGEX] [-rc REGEX] [-rt REGEX] [-ra REGEX] [-rl REGEX]
|
80
80
|
[-rr REGEX REGEX] [-et {clean,condense,noindent}] [-vp] [-tp]
|
81
|
-
[-sp] [-ss] [-toc] [-hn] [-fw] [-rw] [-ow] [-
|
82
|
-
[-d] [-h] [-V]
|
81
|
+
[-sp] [-ss] [-toc] [-hn] [-fw] [-rw] [-ow] [-op] [-q] [-v]
|
82
|
+
[-y] [-d] [-h] [-V]
|
83
83
|
TXT_FILENAME [EBOOK_FILENAME]
|
84
84
|
|
85
85
|
txt2ebook/tte is a cli tool to convert txt file to ebook format.
|
@@ -139,6 +139,8 @@ optional arguments:
|
|
139
139
|
raise exception and stop parsing upon warning
|
140
140
|
-ow, --overwrite
|
141
141
|
overwrite massaged TXT_FILENAME
|
142
|
+
-op, --open
|
143
|
+
open the generated file using default program
|
142
144
|
-q, --quiet
|
143
145
|
suppress all logging
|
144
146
|
-v, --verbose
|
@@ -1,41 +1,41 @@
|
|
1
|
-
txt2ebook/__init__.py,sha256=
|
1
|
+
txt2ebook/__init__.py,sha256=M0L0IeECHEVu6jyVwK-UbifkzSVCQ7tIKj0glCXg7Ek,1765
|
2
2
|
txt2ebook/__main__.py,sha256=gMLvgpqc_BL4cBqNe0vqErRF5dlJPAbvqu1zndcAHYI,850
|
3
3
|
txt2ebook/exceptions.py,sha256=b2HDsXdqweLJbvSJEGt48nxvGkZq20SfYezSjwp77JU,842
|
4
4
|
txt2ebook/formats/__init__.py,sha256=yjZsVk2L6FkUuEpyilp1XTrJeYYljws99vebiweWAKU,2395
|
5
|
-
txt2ebook/formats/base.py,sha256=
|
6
|
-
txt2ebook/formats/epub.py,sha256=
|
7
|
-
txt2ebook/formats/gmi.py,sha256=
|
8
|
-
txt2ebook/formats/md.py,sha256=
|
5
|
+
txt2ebook/formats/base.py,sha256=5fICz70rbN9WKu0ZL1KwXsXEpDHYMry3qaFfNHilg1E,5840
|
6
|
+
txt2ebook/formats/epub.py,sha256=ZRXRnEO-qCtRIQYM9zh-VaoJfrySRdAliWr5y91l_bA,6936
|
7
|
+
txt2ebook/formats/gmi.py,sha256=deVCwFfCE7Ys9eFTnRgZUncJX6LiUM1iXG7HXFCHlPY,6783
|
8
|
+
txt2ebook/formats/md.py,sha256=D-6bGaNNtL11A-a8xZDVVUbfUMIdkeV6umTlsXpLSOA,6532
|
9
9
|
txt2ebook/formats/pdf.py,sha256=jtYuOrqwzWyG-0rpRreXWzs2jyypwiQfomijkXAe1Z0,7168
|
10
10
|
txt2ebook/formats/templates/__init__.py,sha256=PmObHFVHXD0GIw4328g1i1KoBks1m5-7u00XMNgb38U,755
|
11
11
|
txt2ebook/formats/templates/epub/__init__.py,sha256=DeIsL4WDqgTU7zCLxlCidFItvG4Nl4TMKWeoeTcUuuo,761
|
12
12
|
txt2ebook/formats/templates/epub/clean.css,sha256=AnEwMckzUSKcjKsDiWtJW1oaceuklt2tyuS1VbpVK1s,462
|
13
13
|
txt2ebook/formats/templates/epub/condense.css,sha256=Fz80ZqkPsFRmGdURduAxqMV8drD0CCUlrv41P8rUsm8,477
|
14
14
|
txt2ebook/formats/templates/epub/noindent.css,sha256=_O5Tv90TKyyPBRdgjuNKFwtKFbdheh2V9PtDhgRUg3U,483
|
15
|
-
txt2ebook/formats/txt.py,sha256=
|
16
|
-
txt2ebook/formats/typ.py,sha256=
|
15
|
+
txt2ebook/formats/txt.py,sha256=8PkJ54r-0saZYyYEH64nYSkM-oW5LnurCbAk6d2Ue78,7536
|
16
|
+
txt2ebook/formats/typ.py,sha256=LTQKe5EOot2BmaP5nYgFGnnQv2bDwjXqXWfJPcAoR0g,5234
|
17
17
|
txt2ebook/helpers/__init__.py,sha256=cQmFjEsEEI0gRxDPL-284FMS5Z-iBMcu-4qe7Icf7is,1971
|
18
18
|
txt2ebook/languages/__init__.py,sha256=oShuwgKn784v_XYrAKQM2x1h0-KEsJPeia9XWMnJTYU,758
|
19
19
|
txt2ebook/languages/en.py,sha256=LVZsvr6JLbQFrfI1XSYG54mFwzlHa0fhKghlUemkQbo,920
|
20
20
|
txt2ebook/languages/zh_cn.py,sha256=_3DnB7mDW_EJW3-jy9ZfnxIZ85zNgfXqzPoc7daBHIY,1930
|
21
21
|
txt2ebook/languages/zh_tw.py,sha256=ISjDXJes-jbOUC_5RDH8Bsc0ttBf-4Dt2HNDEBxwRgE,1464
|
22
22
|
txt2ebook/locales/en/LC_MESSAGES/txt2ebook.mo,sha256=Ym6soeijV3zsv9FUPWlJnu18-CNb5tcOTN5JsMOfV9c,672
|
23
|
-
txt2ebook/locales/en/LC_MESSAGES/txt2ebook.po,sha256=
|
24
|
-
txt2ebook/locales/txt2ebook.pot,sha256=
|
23
|
+
txt2ebook/locales/en/LC_MESSAGES/txt2ebook.po,sha256=4b4qyM3aSidV4m446Gh2Weq8Z2ydFRjBXfZJFXfY5zQ,1214
|
24
|
+
txt2ebook/locales/txt2ebook.pot,sha256=AjwzbII79t-3yJalReEQ2r554fuSlmglbwANN3g1qXo,1157
|
25
25
|
txt2ebook/locales/zh-cn/LC_MESSAGES/txt2ebook.mo,sha256=rRGW7HByDVZV8WpQkhyIFOWYNTQc4NnStrn0eGJX8Wc,675
|
26
|
-
txt2ebook/locales/zh-cn/LC_MESSAGES/txt2ebook.po,sha256=
|
26
|
+
txt2ebook/locales/zh-cn/LC_MESSAGES/txt2ebook.po,sha256=SNxJqZgNeHFU7nWEaGCPK5Bi02lQnlxbh0ix_IgA8X0,1214
|
27
27
|
txt2ebook/locales/zh-tw/LC_MESSAGES/txt2ebook.mo,sha256=1GIuOcO_bISiFcfhFez-A7mSi11Mo-x3PBobBENgMEc,675
|
28
|
-
txt2ebook/locales/zh-tw/LC_MESSAGES/txt2ebook.po,sha256=
|
28
|
+
txt2ebook/locales/zh-tw/LC_MESSAGES/txt2ebook.po,sha256=adVsPNZVKrYDNji_4MJfWsFt7W3JuCE975zN6wclnJY,1214
|
29
29
|
txt2ebook/models/__init__.py,sha256=8_k1oI_PnPMekhdZCXiTtg5WghdR6fugQEHJHsy1-Ds,925
|
30
30
|
txt2ebook/models/book.py,sha256=GYXvklHnLIuodEgbjzulyA0OSX72K37ohGBn8xDwCgw,2759
|
31
31
|
txt2ebook/models/chapter.py,sha256=buECAklNQgM3tDehzyVO9YfA_F0iXyLq2PaMZGV_Zaw,1681
|
32
32
|
txt2ebook/models/volume.py,sha256=HyT4XO9yZ8d0PgZVfMMyAYUDFv58RrUmsSFNNmU-sHY,1592
|
33
33
|
txt2ebook/parser.py,sha256=vdC--8I2c89xve7OA1OkYTDjSMwwKoyv4Wkmca0iFhE,11823
|
34
34
|
txt2ebook/tokenizer.py,sha256=y1CQ3Xf5g74o_mUZSOwrwwu0grKmgmt6x3yxCWWokhU,9318
|
35
|
-
txt2ebook/txt2ebook.py,sha256=
|
35
|
+
txt2ebook/txt2ebook.py,sha256=xIvxymFqWgRIGQt0Y0ohabKIYO-tdcpLhdbafzlmb8M,12732
|
36
36
|
txt2ebook/zh_utils.py,sha256=EgKVbwqYGaTGswQUGcOCeSfRelzwkAb9WWY9TrsX1x4,4882
|
37
|
-
txt2ebook-0.1.
|
38
|
-
txt2ebook-0.1.
|
39
|
-
txt2ebook-0.1.
|
40
|
-
txt2ebook-0.1.
|
41
|
-
txt2ebook-0.1.
|
37
|
+
txt2ebook-0.1.76.dist-info/LICENSE.md,sha256=tGtFDwxWTjuR9syrJoSv1Hiffd2u8Tu8cYClfrXS_YU,31956
|
38
|
+
txt2ebook-0.1.76.dist-info/METADATA,sha256=8dHqaZo2DlNSg5HmojB19l05putdXJXZexBUtQU3L3Y,7388
|
39
|
+
txt2ebook-0.1.76.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
40
|
+
txt2ebook-0.1.76.dist-info/entry_points.txt,sha256=IQHyIIhd0MHjSSRVC1a6tMeIoLus8D06KHL_cumvEbg,83
|
41
|
+
txt2ebook-0.1.76.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|