{"id":16964386,"url":"https://github.com/bolorundurowb/read-time-estimator","last_synced_at":"2026-02-14T05:34:48.273Z","repository":{"id":66329716,"uuid":"252857426","full_name":"bolorundurowb/read-time-estimator","owner":"bolorundurowb","description":"Estimate read times for HTML and Markdown articles","archived":false,"fork":false,"pushed_at":"2025-09-08T01:35:33.000Z","size":56,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-25T09:58:58.786Z","etag":null,"topics":["csharp","dotnet","read-time-estimator"],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bolorundurowb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"patreon":"bolorundurowb"}},"created_at":"2020-04-03T22:42:01.000Z","updated_at":"2025-10-16T18:59:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"2b17b5b3-4537-42a1-b9b7-0682ddef279e","html_url":"https://github.com/bolorundurowb/read-time-estimator","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bolorundurowb/read-time-estimator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bolorundurowb%2Fread-time-estimator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bolorundurowb%2Fread-time-estimator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bolorundurowb%2Fread-time-estimator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bolorundurowb%2Fread-time-estimator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bolorundurowb","download_url":"https://codeload.github.com/bolorundurowb/read-time-estimator/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bolorundurowb%2Fread-time-estimator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29438608,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T05:24:35.651Z","status":"ssl_error","status_checked_at":"2026-02-14T05:24:34.830Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["csharp","dotnet","read-time-estimator"],"created_at":"2024-10-13T23:43:27.129Z","updated_at":"2026-02-14T05:34:48.255Z","avatar_url":"https://github.com/bolorundurowb.png","language":"C#","funding_links":["https://patreon.com/bolorundurowb"],"categories":[],"sub_categories":[],"readme":"# ⏳ Read Time Estimator  \n\n[![Build, Test, and Upload Coverage](https://github.com/bolorundurowb/read-time-estimator/actions/workflows/build.yml/badge.svg)](https://github.com/bolorundurowb/read-time-estimator/actions/workflows/build.yml)  [![Code Coverage](https://codecov.io/gh/bolorundurowb/read-time-estimator/branch/master/graph/badge.svg)](https://codecov.io/gh/bolorundurowb/read-time-estimator)  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)  ![NuGet Version](https://img.shields.io/nuget/v/ReadTimeEstimator)\n \n\n📖 **Read Time Estimator** is a library that provides an accurate estimate of the read time for an article in **HTML** or **Markdown**.\n\n---\n\n## 📦 Installation  \n\nYou can install the package via **NuGet**:  \n\n```sh\nInstall-Package ReadTimeEstimator\n```\n\nOr using **.NET CLI**:\n\n```sh\ndotnet add package ReadTimeEstimator\n```\n\nOr with **Paket**:\n\n```sh\npaket add ReadTimeEstimator\n```\n\n---\n\n## 🚀 Usage\n\nThis package provides two estimators:\n\n- 🖥️ `HtmlEstimator` for HTML content\n- ✍️ `MarkdownEstimator` for Markdown content\n\nEach estimator offers two methods for retrieving time estimates:\n\n- ⏱️ `ReadTimeInMinutes()` → Returns a `double` (estimated read time in minutes).\n- 🗣️ `HumanFriendlyReadTime()` → Returns a `string` (human-friendly read time).\n\n### ✅ Example Usage:\n\n```csharp\nusing ReadTimeEstimator.Implementations.Estimators;\n\nvar htmlEstimator = new HtmlEstimator();\nvar markdownEstimator = new MarkdownEstimator();\n\nvar htmlReadTime = htmlEstimator.ReadTimeInMinutes(\"\u003cdiv\u003eHello World\u003c/div\u003e\"); // 0.00727\nvar markdownReadTime = markdownEstimator.HumanFriendlyReadTime(\"# Hello World\"); // \"less than a minute\"\n```\n\n🔹 Now you can easily estimate reading time for your content! 🚀","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbolorundurowb%2Fread-time-estimator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbolorundurowb%2Fread-time-estimator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbolorundurowb%2Fread-time-estimator/lists"}