Skip to main content

CLI to calculates the time some text takes the average human to read, based on Medium's read time forumula.

Project description

📖 Readtime-CLI

CLI to calculates the time some text takes the average human to read, based on Medium's read time forumula.

🧮 Algorithm

Medium's Help Center says,

Read time is based on the average reading speed of an adult (roughly 265 WPM). We take the total word count of a post and translate it into minutes, with an adjustment made for images. For posts in Chinese, Japanese and Korean, it's a function of number of characters (500 characters/min) with an adjustment made for images.

Source

Double checking with real articles, the English algorithm is:

seconds = num_words / 265 * 60 + img_weight * num_images

With img_weight starting at 12 and decreasing one second with each image encountered, with a minium img_weight of 3 seconds.

Requirements

MacOS or Linux

Python 3.9+

Readtime-CLI stands on the shouders of giants:

🛠 Installation

Poetry

poetry add readtime-cli

Pip

virtualenv venv
. venv/bin/activate
pip install readtime-cli

💻 Usage

Version

readtime version

Calculate Read time Markdown files

readtime md FILE_PATH [OPTIONS]

Calculate Read time HTML files

readtime html FILE_PATH [OPTIONS]

Calculate Read time Text files

readtime text FILE_PATH [OPTIONS]

Options for all commands

--wpm INTEGER          Word Per Minute  [default: 265]
--language [en|pt-br]  [default: Languages.en]
--help                 Show this message and exit.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

readtime_cli-0.2.3.tar.gz (3.3 kB view hashes)

Uploaded Source

Built Distribution

readtime_cli-0.2.3-py3-none-any.whl (3.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page