{"id":21400729,"url":"https://github.com/navjotsrakhra/progressprinter","last_synced_at":"2026-04-05T21:04:49.408Z","repository":{"id":174187814,"uuid":"651896227","full_name":"NavjotSRakhra/ProgressPrinter","owner":"NavjotSRakhra","description":"A Java based progress bar for consoles (CMD, Powershell, Terminal)","archived":false,"fork":false,"pushed_at":"2023-06-10T17:22:07.000Z","size":84,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-23T02:45:49.752Z","etag":null,"topics":["cmd","console","java","linux","powershell","progress-bar","terminal","windows"],"latest_commit_sha":null,"homepage":"https://javadoc.io/doc/io.github.NavjotSRakhra/ProgressPrinter/latest","language":"Java","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/NavjotSRakhra.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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}},"created_at":"2023-06-10T12:28:05.000Z","updated_at":"2023-08-10T13:34:19.000Z","dependencies_parsed_at":"2023-07-17T15:48:39.078Z","dependency_job_id":null,"html_url":"https://github.com/NavjotSRakhra/ProgressPrinter","commit_stats":null,"previous_names":["navjotsrakhra/progressprinter"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NavjotSRakhra%2FProgressPrinter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NavjotSRakhra%2FProgressPrinter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NavjotSRakhra%2FProgressPrinter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NavjotSRakhra%2FProgressPrinter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NavjotSRakhra","download_url":"https://codeload.github.com/NavjotSRakhra/ProgressPrinter/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243893905,"owners_count":20364916,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["cmd","console","java","linux","powershell","progress-bar","terminal","windows"],"created_at":"2024-11-22T15:23:52.393Z","updated_at":"2025-12-30T22:23:15.358Z","avatar_url":"https://github.com/NavjotSRakhra.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Progress Printer - A console progress bar in Java\n\n[![Maven Central](https://img.shields.io/maven-central/v/io.github.NavjotSRakhra/ProgressPrinter.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22io.github.NavjotSRakhra%22%20AND%20a:%22ProgressPrinter%22)\n[![javadoc](https://javadoc.io/badge2/io.github.NavjotSRakhra/ProgressPrinter/javadoc.svg)](https://javadoc.io/doc/io.github.NavjotSRakhra/ProgressPrinter)\n\n\u003c!-- TOC --\u003e\n* [Progress Printer - A console progress bar in Java](#progress-printer---a-console-progress-bar-in-java)\n  * [Introduction](#introduction)\n  * [Preview](#preview)\n  * [Project setup](#project-setup)\n    * [Documentation](#documentation-)\n  * [License](#license)\n\u003c!-- TOC --\u003e\n\n## Introduction\n\nI needed a tool to display the process of training of my neural network. So I searched on GitHub and there were no simple\nones that I was able to find. The ones I found were incompatible with Windows hence I created one that uses simple \nASCII characters to print the progress along with the progress percentage.\n\n## Preview\n\n![](resources/Preview.gif)\n\n## Project setup\n\nThe project is build using OpenJDK 11 and is compatible with Java 11+. It is available on Maven central and can be used\nby entering the following into `\u003cdependencies\u003e` tag in maven\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003eio.github.NavjotSRakhra\u003c/groupId\u003e\n    \u003cartifactId\u003eProgressPrinter\u003c/artifactId\u003e\n    \u003cversion\u003e1.0.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\nTo use it create an instance of `ProgressPrinter` and update the process completion in fraction. Following is a sample code\n\n```java\nimport io.github.NavjotSRakhra.progressPrinter.ProgressPrinter;\n\npublic class Sample {\n    public static void main(String[] args) throws InterruptedException {\n        ProgressPrinter progressPrinter = new ProgressPrinter();\n        for (int i = 0; i \u003c 100; i++) {\n            progressPrinter.update(i / 99d);\n            Thread.sleep(500);\n        }\n    }\n}\n```\n### Documentation \n\n[Javadocs](https://javadoc.io/doc/io.github.NavjotSRakhra/ProgressPrinter/latest)\n\n## License\n\nMIT License\n\nCopyright (c) 2023 Navjot Singh Rakhra\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnavjotsrakhra%2Fprogressprinter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnavjotsrakhra%2Fprogressprinter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnavjotsrakhra%2Fprogressprinter/lists"}