{"id":37022610,"url":"https://github.com/rus4j/numbify","last_synced_at":"2026-01-14T02:42:15.533Z","repository":{"id":279281347,"uuid":"938118837","full_name":"rus4j/numbify","owner":"rus4j","description":"Library for transforming numbers into text.","archived":false,"fork":false,"pushed_at":"2025-12-24T12:49:14.000Z","size":509,"stargazers_count":6,"open_issues_count":3,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-26T03:44:17.087Z","etag":null,"topics":["currency-to-words","java","number-to-words","numbers-to-text"],"latest_commit_sha":null,"homepage":"","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/rus4j.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-02-24T13:01:07.000Z","updated_at":"2025-11-12T08:43:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"b1856a3f-3aa9-4490-aed4-f9d125c9a1fa","html_url":"https://github.com/rus4j/numbify","commit_stats":null,"previous_names":["rus4j/numbify"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/rus4j/numbify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rus4j%2Fnumbify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rus4j%2Fnumbify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rus4j%2Fnumbify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rus4j%2Fnumbify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rus4j","download_url":"https://codeload.github.com/rus4j/numbify/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rus4j%2Fnumbify/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28408712,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T01:52:23.358Z","status":"online","status_checked_at":"2026-01-14T02:00:06.678Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["currency-to-words","java","number-to-words","numbers-to-text"],"created_at":"2026-01-14T02:42:13.174Z","updated_at":"2026-01-14T02:42:15.513Z","avatar_url":"https://github.com/rus4j.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Numbify\n[![EO](https://www.elegantobjects.org/badge.svg)](https://www.elegantobjects.org/)\n\n![workflow](https://github.com/rus4j/numbify/actions/workflows/gradle.yml/badge.svg)\n[![codecov](https://codecov.io/gh/rus4j/numbify/graph/badge.svg?token=L4MHCKGMQQ)](https://codecov.io/gh/rus4j/numbify)\n[![Maven Central Version](https://img.shields.io/maven-central/v/org.rus4j/numbify)](https://central.sonatype.com/artifact/org.rus4j/numbify)\n![LOC](https://raw.githubusercontent.com/rus4j/numbify/gh-pages/loc-badge.svg)\n[![Hits-of-Code](https://hitsofcode.com/github/rus4j/numbify?branch=master\u0026label=Hits-of-Code)](https://hitsofcode.com/github/rus4j/numbify/view?branch=master\u0026label=Hits-of-Code)\n[![Codacy Badge](https://api.codacy.com/project/badge/Grade/5683645ec8914bba99fbb16142656118)](https://app.codacy.com/gh/rus4j/numbify?utm_source=github.com\u0026utm_medium=referral\u0026utm_content=rus4j/numbify\u0026utm_campaign=Badge_Grade)\n\n\nNumbify ia s Java library for transforming numbers into text with wide customization options.\n\nInspired by [Ant1mas/number-to-words-ru](https://github.com/Ant1mas/number-to-words-ru)\n\n## Usage\nAdd maven dependency into your project:\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003eorg.rus4j\u003c/groupId\u003e\n    \u003cartifactId\u003enumbify\u003c/artifactId\u003e\n    \u003cverion\u003e2.3.0\u003c/verion\u003e\n\u003c/dependency\u003e\n```\nGradle dependency:\n```groovy\nimplementation 'org.rus4j:numbify:2.3.0'\n```\nThe simplest example in English:\n```java\nNumbify en = new NumbifyBuilder()\n    .english(Currency.USD)\n    .build();\nString numberInText = en.toText(25.17); // \"twenty five dollars seventeen cents\"\n```\n\nMore complex example:\n```java\nNumbify ru = new NumbifyBuilder()\n    .russian(RuDeclension.GENITIVE, Currency.NUMBER) // no specific currency in Genitive\n    .originalDecimal()\n    .capitalize()\n    .build();\nString numberInText = en.toText(25.17); // \"Двадцати пяти целых 17 сотых\"\n```\n\nCheck full documentation and list of possible options on https://rus4j.org/numbify.\n\n## Languages\n* 🇬🇧 English\n* 🇷🇺 Russian\n* more TBD\n\n## Data types\nIt supports any java numeric data types that are subclasses of `Number`\n```\n                               Number\n ┌──────┬───────┬───────┬─────┬──────┬─────────┬──────────┬─────────┐\n │      │       │       │     │      │         │          │\nByte  Short  Integer  Long  Float  Double  BigInteger  BigDecimal  ...\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frus4j%2Fnumbify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frus4j%2Fnumbify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frus4j%2Fnumbify/lists"}