A collection of useful functions for writers to analyze text/stories
AuthorTools provides a multitude of functions for easily analyzing (your?) writing. AuthorTools is made especially for creative writers with some python skills, or developers of writing applications. It contains tools to split strings in a variety of ways, such as into sentences or by chapter, and functions to analyze text, like counting the percent of a text that is composed of dialogue (in quotes).
Installation
AuthorTools is available on PyPI.
Usage
AuthorTools provides its functions in authortools.py. After installation, you will need to import the tools.
Then, all functions should be available to you.
import authortools
authortools.word_count("Sample Text.")
There