GreekRomanUtils


NameGreekRomanUtils JSON
Version 1.0.2 PyPI version JSON
download
home_pagehttps://github.com/PavelKotDRM/GreekRomanNumerical
SummaryThe module converts Arabic numerals to Greek and Roman numbers
upload_time2024-09-11 13:33:55
maintainerNone
docs_urlNone
authorPKALab
requires_python>=3.7
licenseNone
keywords python greek roman
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # English

## Module converting Arabic numerals to Greek and Roman numbers

### Description

The library converts Arabic numbers, such as `1234`, to Roman equivalents, such as `MCCXXXIV`, or Greek — `Α_ΣΛΔ`.

This module can also output Greek numbers in different formats. For example, the number `20005003001` can be represented as `Κ___Ε__Γ_Α` or `Κ~Ε~Γ~Α`. In addition, it is possible to output the text name of the digits, for example, `Kappa macron Epsilon macron Gamma macron Alpha`, or output them in lowercase.  

### The structure of the project

There are two main classes: `GreekConvert` and `RomanConvert`. They implement the logic of converting to the corresponding numbers. There are also classes `GreekAlphabet` and `RomanNumberAlphabet`, which are used to store lists and dictionaries.  
There are proprietary data types `GreekNumber` and `RomanNumber` for working with Greek and Roman numbers, which will allow you to perform basic mathematical operations with them.

### Main functions

**For "GreekConvert":**

- `change_capital`: A flag that controls the conversion of characters to upper or lower case.
- `create_greek_number`: creates the `GreekNumber` class
- `convert` — the function of converting an Arabic number to a Greek one, for example, the number `20005003001` is converted to `Κ___Ε__Γ_Α'.
- `convert_position` is a function for converting an Arabic number to a Greek number according to a given pattern, for example, the number `20005003001` is converted to `Κ~Ε~Γ~Α'.
- `convert_to_arabic` is a function for converting a Greek number to an Arabic one.
- `covert_to_position_arabic` — This function is used in combination with `convert_position` and converts a Greek number to an Arabic one.
- `unicode_to_name` — the function converts a Unicode character into its name.
- `name_to_unicode` is the reverse operation for unicode_to_name.

**The "GreekNumber" class:**

- `set_number`: set a new value
- `set_positional`: set the number output flag
- `set_capital`: set the upper case flag
- `get_number`: get the current number
- `get_positional`: get the flag value
- `get_capital`: get the flag value
- And basic mathematical operations

**For "RomanConvert":**

- `create_roman_number`: creates the `RomanNumber` class
- `convert` — the method converts an Arabic number to a Roman number.
- `convert_to_arabic` is the reverse method for `convert`.

**For "RomanNumber":**

- `set_number`: set a new value
- `get_number`: get the current number
- And basic mathematical operations

----------------------

## Ru

## Модуль преобразование арабских цифр в греческие и римские числа

## Описание

Библиотека преобразует арабские числа, такие как `1234`, в римские эквиваленты, например, `MCCXXXIV`, или греческие — `Α_ΣΛΔ`.

Также этот модуль может выводить греческие цифры в разных форматах. Например, число `20005003001` можно представить как `Κ___Ε__Γ_Α` или `Κ~Ε~Γ~Α`. Кроме того, есть возможность выводить текстовое название цифр, например, `Kappa macron Epsilon macron Gamma macron Alpha`, или выводить их в нижнем регистре.  

## Структура пректа

Есть два основных класса: `GreekConvert` и `RomanConvert`. Они реализуют логику преобразования в соответствующие числа. Также есть классы `GreekAlphabet` и `RomanNumberAlphabet`, которые используются для хранения списков и словарей.  
Есть собственные типы данных `GreekNumber` и `RomanNumber` для работы с греческими и римскими числами, что позволит выполнять с ними базовые математические операции.

## Основные функции

**Для «GreekConvert»:**

- `change_capital`: флаг, управляющий преобразованием символов в верхний или нижний регистр.
- `create_greek_number`: создает класс `GreekNumber`
- `convert` — функция преобразования арабского числа в греческое, например, число `20005003001` преобразуется в `Κ___Ε__Γ_Α`.
- `convert_position` — функция преобразования арабского числа в греческое в соответствии с заданным шаблоном, например, число `20005003001` преобразуется в `Κ~Ε~Γ~Α`.
- `convert_to_arabic` — функция преобразования греческого числа в арабское.
- `covert_to_position_arabic` — эта функция используется в сочетании с `convert_position` и преобразует греческое число в арабское.
- `unicode_to_name` — функция преобразует символ Unicode в его название.
- `name_to_unicode` — обратная операция для `unicode_to_name`.

**Класс «GreekNumber»:**

- `set_number`: установить новое значение
- `set_positional`: установить флаг вывода числа
- `set_capital`: установить флаг верхниго регистра
- `get_number`: получить нынешнее число
- `get_positional`: получить значение флага
- `get_capital`: получить значение флага
- И базывые математические операции

**Для «RomanConvert»:**

- `create_roman_number`: создает класс `RomanNumber`
- `convert` — метод преобразует арабское число в римское.
- `convert_to_arabic` — обратный метод для `convert`.

**Для «RomanNumber»:**

- `set_number`: установить новое значение
- `get_number`: получить нынешнее число
- И базывые математические операции

**Схема пректа**  
![ScheemProject](./Diagrams/ArabicToRoman.drawio.svg)

## License

Apache License 2.0  

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/PavelKotDRM/GreekRomanNumerical",
    "name": "GreekRomanUtils",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "python, greek, roman",
    "author": "PKALab",
    "author_email": "kpalab@pkotlyarov.ru",
    "download_url": "https://files.pythonhosted.org/packages/44/c8/22118a694266ac0737d6ad4bcda6b0ff91c6ff7e976f588482473493704e/greekromanutils-1.0.2.tar.gz",
    "platform": null,
    "description": "# English\n\n## Module converting Arabic numerals to Greek and Roman numbers\n\n### Description\n\nThe library converts Arabic numbers, such as `1234`, to Roman equivalents, such as `MCCXXXIV`, or Greek \u2014 `\u0391_\u03a3\u039b\u0394`.\n\nThis module can also output Greek numbers in different formats. For example, the number `20005003001` can be represented as `\u039a___\u0395__\u0393_\u0391` or `\u039a~\u0395~\u0393~\u0391`. In addition, it is possible to output the text name of the digits, for example, `Kappa macron Epsilon macron Gamma macron Alpha`, or output them in lowercase.  \n\n### The structure of the project\n\nThere are two main classes: `GreekConvert` and `RomanConvert`. They implement the logic of converting to the corresponding numbers. There are also classes `GreekAlphabet` and `RomanNumberAlphabet`, which are used to store lists and dictionaries.  \nThere are proprietary data types `GreekNumber` and `RomanNumber` for working with Greek and Roman numbers, which will allow you to perform basic mathematical operations with them.\n\n### Main functions\n\n**For \"GreekConvert\":**\n\n- `change_capital`: A flag that controls the conversion of characters to upper or lower case.\n- `create_greek_number`: creates the `GreekNumber` class\n- `convert` \u2014 the function of converting an Arabic number to a Greek one, for example, the number `20005003001` is converted to `\u039a___\u0395__\u0393_\u0391'.\n- `convert_position` is a function for converting an Arabic number to a Greek number according to a given pattern, for example, the number `20005003001` is converted to `\u039a~\u0395~\u0393~\u0391'.\n- `convert_to_arabic` is a function for converting a Greek number to an Arabic one.\n- `covert_to_position_arabic` \u2014 This function is used in combination with `convert_position` and converts a Greek number to an Arabic one.\n- `unicode_to_name` \u2014 the function converts a Unicode character into its name.\n- `name_to_unicode` is the reverse operation for unicode_to_name.\n\n**The \"GreekNumber\" class:**\n\n- `set_number`: set a new value\n- `set_positional`: set the number output flag\n- `set_capital`: set the upper case flag\n- `get_number`: get the current number\n- `get_positional`: get the flag value\n- `get_capital`: get the flag value\n- And basic mathematical operations\n\n**For \"RomanConvert\":**\n\n- `create_roman_number`: creates the `RomanNumber` class\n- `convert` \u2014 the method converts an Arabic number to a Roman number.\n- `convert_to_arabic` is the reverse method for `convert`.\n\n**For \"RomanNumber\":**\n\n- `set_number`: set a new value\n- `get_number`: get the current number\n- And basic mathematical operations\n\n----------------------\n\n## Ru\n\n## \u041c\u043e\u0434\u0443\u043b\u044c \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0430\u0440\u0430\u0431\u0441\u043a\u0438\u0445 \u0446\u0438\u0444\u0440 \u0432 \u0433\u0440\u0435\u0447\u0435\u0441\u043a\u0438\u0435 \u0438 \u0440\u0438\u043c\u0441\u043a\u0438\u0435 \u0447\u0438\u0441\u043b\u0430\n\n## \u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435\n\n\u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u0443\u0435\u0442 \u0430\u0440\u0430\u0431\u0441\u043a\u0438\u0435 \u0447\u0438\u0441\u043b\u0430, \u0442\u0430\u043a\u0438\u0435 \u043a\u0430\u043a `1234`, \u0432 \u0440\u0438\u043c\u0441\u043a\u0438\u0435 \u044d\u043a\u0432\u0438\u0432\u0430\u043b\u0435\u043d\u0442\u044b, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, `MCCXXXIV`, \u0438\u043b\u0438 \u0433\u0440\u0435\u0447\u0435\u0441\u043a\u0438\u0435 \u2014 `\u0391_\u03a3\u039b\u0394`.\n\n\u0422\u0430\u043a\u0436\u0435 \u044d\u0442\u043e\u0442 \u043c\u043e\u0434\u0443\u043b\u044c \u043c\u043e\u0436\u0435\u0442 \u0432\u044b\u0432\u043e\u0434\u0438\u0442\u044c \u0433\u0440\u0435\u0447\u0435\u0441\u043a\u0438\u0435 \u0446\u0438\u0444\u0440\u044b \u0432 \u0440\u0430\u0437\u043d\u044b\u0445 \u0444\u043e\u0440\u043c\u0430\u0442\u0430\u0445. \u041d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0447\u0438\u0441\u043b\u043e `20005003001` \u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043a\u0430\u043a `\u039a___\u0395__\u0393_\u0391` \u0438\u043b\u0438 `\u039a~\u0395~\u0393~\u0391`. \u041a\u0440\u043e\u043c\u0435 \u0442\u043e\u0433\u043e, \u0435\u0441\u0442\u044c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0432\u044b\u0432\u043e\u0434\u0438\u0442\u044c \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0446\u0438\u0444\u0440, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, `Kappa macron Epsilon macron Gamma macron Alpha`, \u0438\u043b\u0438 \u0432\u044b\u0432\u043e\u0434\u0438\u0442\u044c \u0438\u0445 \u0432 \u043d\u0438\u0436\u043d\u0435\u043c \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0435.  \n\n## \u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u043f\u0440\u0435\u043a\u0442\u0430\n\n\u0415\u0441\u0442\u044c \u0434\u0432\u0430 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0445 \u043a\u043b\u0430\u0441\u0441\u0430: `GreekConvert` \u0438 `RomanConvert`. \u041e\u043d\u0438 \u0440\u0435\u0430\u043b\u0438\u0437\u0443\u044e\u0442 \u043b\u043e\u0433\u0438\u043a\u0443 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0447\u0438\u0441\u043b\u0430. \u0422\u0430\u043a\u0436\u0435 \u0435\u0441\u0442\u044c \u043a\u043b\u0430\u0441\u0441\u044b `GreekAlphabet` \u0438 `RomanNumberAlphabet`, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044e\u0442\u0441\u044f \u0434\u043b\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0441\u043f\u0438\u0441\u043a\u043e\u0432 \u0438 \u0441\u043b\u043e\u0432\u0430\u0440\u0435\u0439.  \n\u0415\u0441\u0442\u044c \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0435 \u0442\u0438\u043f\u044b \u0434\u0430\u043d\u043d\u044b\u0445 `GreekNumber` \u0438 `RomanNumber` \u0434\u043b\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u0441 \u0433\u0440\u0435\u0447\u0435\u0441\u043a\u0438\u043c\u0438 \u0438 \u0440\u0438\u043c\u0441\u043a\u0438\u043c\u0438 \u0447\u0438\u0441\u043b\u0430\u043c\u0438, \u0447\u0442\u043e \u043f\u043e\u0437\u0432\u043e\u043b\u0438\u0442 \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c \u0441 \u043d\u0438\u043c\u0438 \u0431\u0430\u0437\u043e\u0432\u044b\u0435 \u043c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438.\n\n## \u041e\u0441\u043d\u043e\u0432\u043d\u044b\u0435 \u0444\u0443\u043d\u043a\u0446\u0438\u0438\n\n**\u0414\u043b\u044f \u00abGreekConvert\u00bb:**\n\n- `change_capital`: \u0444\u043b\u0430\u0433, \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u044e\u0449\u0438\u0439 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432 \u0432 \u0432\u0435\u0440\u0445\u043d\u0438\u0439 \u0438\u043b\u0438 \u043d\u0438\u0436\u043d\u0438\u0439 \u0440\u0435\u0433\u0438\u0441\u0442\u0440.\n- `create_greek_number`: \u0441\u043e\u0437\u0434\u0430\u0435\u0442 \u043a\u043b\u0430\u0441\u0441 `GreekNumber`\n- `convert` \u2014 \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u0440\u0430\u0431\u0441\u043a\u043e\u0433\u043e \u0447\u0438\u0441\u043b\u0430 \u0432 \u0433\u0440\u0435\u0447\u0435\u0441\u043a\u043e\u0435, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0447\u0438\u0441\u043b\u043e `20005003001` \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u0443\u0435\u0442\u0441\u044f \u0432 `\u039a___\u0395__\u0393_\u0391`.\n- `convert_position` \u2014 \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0430\u0440\u0430\u0431\u0441\u043a\u043e\u0433\u043e \u0447\u0438\u0441\u043b\u0430 \u0432 \u0433\u0440\u0435\u0447\u0435\u0441\u043a\u043e\u0435 \u0432 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0438 \u0441 \u0437\u0430\u0434\u0430\u043d\u043d\u044b\u043c \u0448\u0430\u0431\u043b\u043e\u043d\u043e\u043c, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0447\u0438\u0441\u043b\u043e `20005003001` \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u0443\u0435\u0442\u0441\u044f \u0432 `\u039a~\u0395~\u0393~\u0391`.\n- `convert_to_arabic` \u2014 \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0433\u0440\u0435\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0447\u0438\u0441\u043b\u0430 \u0432 \u0430\u0440\u0430\u0431\u0441\u043a\u043e\u0435.\n- `covert_to_position_arabic` \u2014 \u044d\u0442\u0430 \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0432 \u0441\u043e\u0447\u0435\u0442\u0430\u043d\u0438\u0438 \u0441 `convert_position` \u0438 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u0443\u0435\u0442 \u0433\u0440\u0435\u0447\u0435\u0441\u043a\u043e\u0435 \u0447\u0438\u0441\u043b\u043e \u0432 \u0430\u0440\u0430\u0431\u0441\u043a\u043e\u0435.\n- `unicode_to_name` \u2014 \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u0443\u0435\u0442 \u0441\u0438\u043c\u0432\u043e\u043b Unicode \u0432 \u0435\u0433\u043e \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435.\n- `name_to_unicode` \u2014 \u043e\u0431\u0440\u0430\u0442\u043d\u0430\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f \u0434\u043b\u044f `unicode_to_name`.\n\n**\u041a\u043b\u0430\u0441\u0441 \u00abGreekNumber\u00bb:**\n\n- `set_number`: \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043d\u043e\u0432\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435\n- `set_positional`: \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0444\u043b\u0430\u0433 \u0432\u044b\u0432\u043e\u0434\u0430 \u0447\u0438\u0441\u043b\u0430\n- `set_capital`: \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0444\u043b\u0430\u0433 \u0432\u0435\u0440\u0445\u043d\u0438\u0433\u043e \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\n- `get_number`: \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043d\u044b\u043d\u0435\u0448\u043d\u0435\u0435 \u0447\u0438\u0441\u043b\u043e\n- `get_positional`: \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0444\u043b\u0430\u0433\u0430\n- `get_capital`: \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0444\u043b\u0430\u0433\u0430\n- \u0418 \u0431\u0430\u0437\u044b\u0432\u044b\u0435 \u043c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438\n\n**\u0414\u043b\u044f \u00abRomanConvert\u00bb:**\n\n- `create_roman_number`: \u0441\u043e\u0437\u0434\u0430\u0435\u0442 \u043a\u043b\u0430\u0441\u0441 `RomanNumber`\n- `convert` \u2014 \u043c\u0435\u0442\u043e\u0434 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u0443\u0435\u0442 \u0430\u0440\u0430\u0431\u0441\u043a\u043e\u0435 \u0447\u0438\u0441\u043b\u043e \u0432 \u0440\u0438\u043c\u0441\u043a\u043e\u0435.\n- `convert_to_arabic` \u2014 \u043e\u0431\u0440\u0430\u0442\u043d\u044b\u0439 \u043c\u0435\u0442\u043e\u0434 \u0434\u043b\u044f `convert`.\n\n**\u0414\u043b\u044f \u00abRomanNumber\u00bb:**\n\n- `set_number`: \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043d\u043e\u0432\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435\n- `get_number`: \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043d\u044b\u043d\u0435\u0448\u043d\u0435\u0435 \u0447\u0438\u0441\u043b\u043e\n- \u0418 \u0431\u0430\u0437\u044b\u0432\u044b\u0435 \u043c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438\n\n**\u0421\u0445\u0435\u043c\u0430 \u043f\u0440\u0435\u043a\u0442\u0430**  \n![ScheemProject](./Diagrams/ArabicToRoman.drawio.svg)\n\n## License\n\nApache License 2.0  \n",
    "bugtrack_url": null,
    "license": null,
    "summary": "The module converts Arabic numerals to Greek and Roman numbers",
    "version": "1.0.2",
    "project_urls": {
        "Documentation": "https://github.com/PavelKotDRM/GreekRomanNumerical",
        "Homepage": "https://github.com/PavelKotDRM/GreekRomanNumerical"
    },
    "split_keywords": [
        "python",
        " greek",
        " roman"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b04336eb24380e4b84b2c7269ede82399174bf968bb46c58abc9bca06d28dcc6",
                "md5": "94659ea975a46aa9392fa484544bea34",
                "sha256": "91be15e97f228fdd4705deba7c0094b7ee75f68f0fa566bba2b229e90ad9bee6"
            },
            "downloads": -1,
            "filename": "GreekRomanUtils-1.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "94659ea975a46aa9392fa484544bea34",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 13649,
            "upload_time": "2024-09-11T13:33:54",
            "upload_time_iso_8601": "2024-09-11T13:33:54.336992Z",
            "url": "https://files.pythonhosted.org/packages/b0/43/36eb24380e4b84b2c7269ede82399174bf968bb46c58abc9bca06d28dcc6/GreekRomanUtils-1.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44c822118a694266ac0737d6ad4bcda6b0ff91c6ff7e976f588482473493704e",
                "md5": "7e21892f3f476326cf7d490b8c2ddf40",
                "sha256": "636463f8829543ac78f983dc82da456b421601b6cdf26c13d05cbd9e6a003733"
            },
            "downloads": -1,
            "filename": "greekromanutils-1.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "7e21892f3f476326cf7d490b8c2ddf40",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 12219,
            "upload_time": "2024-09-11T13:33:55",
            "upload_time_iso_8601": "2024-09-11T13:33:55.826375Z",
            "url": "https://files.pythonhosted.org/packages/44/c8/22118a694266ac0737d6ad4bcda6b0ff91c6ff7e976f588482473493704e/greekromanutils-1.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-11 13:33:55",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "PavelKotDRM",
    "github_project": "GreekRomanNumerical",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "greekromanutils"
}
        
Elapsed time: 0.53031s