Compare commits

...

2 Commits

Author SHA1 Message Date
Dmytro Yeroshkin 5df3a48f35 Cleaned up argument parsing 2021-10-23 14:08:12 +02:00
Dmytro Yeroshkin fc6ffac5a9 Switch argument parsing to argparse 2021-10-23 13:49:23 +02:00
1 changed files with 35 additions and 11 deletions

View File

@ -1,8 +1,8 @@
#!/usr/bin/python
import argparse
import collections
import sys
import tempfile
CHAPTER_MARKER = '## '
@ -25,20 +25,46 @@ def count_words(line):
def main():
arguments = sys.argv[1:]
filename = arguments[0]
# Better argument parsing
parser = argparse.ArgumentParser()
parser.add_argument(
'-c',
'--chapter',
action='store_true',
help='output chapter-by-chapter breakdown of word counts, including how many words in each chapter are tagged with which status',
)
parser.add_argument(
'-a',
'--act',
action='store_true',
help='output act-by-act breakdown of word counts (total only)',
)
parser.add_argument(
'-pp',
action='store_true',
help='run markdown pre-processor, this allows for a multi-file input (e.g. each chapter in its own file), but requires the MarkdownPP python library',
)
parser.add_argument(
'markdown_file',
type=argparse.FileType('r'),
help='The markdown file for the novel, main file if a multi-file novel',
)
arguments = parser.parse_args()
mdfile = None
if '-pp' in arguments:
if arguments.pp:
# -pp flag to allow Markdown Preprocessing primarily to allow multi-file novel formatting
# this is implemented using a temporary file created using python's buit-in tempfile library
import MarkdownPP
mdfile = tempfile.TemporaryFile(mode='w+')
MarkdownPP.MarkdownPP(input=open(filename), output=mdfile, modules=list(MarkdownPP.modules))
MarkdownPP.MarkdownPP(
input=arguments.markdown_file, output=mdfile, modules=list(MarkdownPP.modules)
)
mdfile.seek(0)
else:
mdfile = open(filename)
mdfile = arguments.markdown_file
chapter_heading = None
act_heading = None
@ -88,7 +114,7 @@ def main():
total_word_count += word_count_by_chapter[chapter_heading]
# -c or --chapter to give a chapter-by-chapter word count summary.
if '-c' in arguments or '--chapter' in arguments:
if arguments.chapter:
for chapter_heading, chapter_word_count in word_count_by_chapter.items():
if chapter_heading is None:
continue
@ -108,15 +134,13 @@ def main():
print()
# -a or --act to give an act-by-act word count summary.
if '-a' in arguments or '--act' in arguments:
if arguments.act:
for act_heading, act_word_count in word_count_by_act.items():
if act_heading is None:
continue
print(
'act {}: {:,} words (~{}%)'.format(
act_heading, act_word_count, act_word_count * 100 // total_word_count
)
f'act {act_heading}: {act_word_count:,} words (~{act_word_count * 100// total_word_count}%)'
)
print()