Metadata-Version: 2.4
Name: romanutils
Version: 0.1.0
Summary: A Python library for Roman numeral manipulation
Home-page: https://github.com/Cyrus-spc-tech/Romanutils.git
Author: Tanish
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary

A Python library for Roman numeral manipulation romanutils
# Description:

romanutils is a Python module designed to facilitate the manipulation and conversion between integers and Roman numerals. This utility provides an easy-to-use interface for developers and enthusiasts looking to work with Roman numeral representations in their applications.

>>Features
Integer to Roman Conversion: Convert integers (1-3999) to their equivalent Roman numeral representation.
Roman to Integer Conversion: Convert valid Roman numerals back to their integer form.
Validation: Check the validity of Roman numerals to ensure correct formatting.
Customizable Output: Options to format the output for different use cases.
Installation
You can install romanutils via pip:

Copy
pip install romanutils
Usage
Hereâ€™s a quick example of how to use the module:

Copy
from romanutils import roman_to_int, int_to_roman

# Convert integer to Roman numeral
roman_numeral = itor(2023)
print(roman_numeral)  # Output: MMXXIII

# Convert Roman numeral to integer
integer_value = rtoi('MMXXIII')
print(integer_value)  # Output: 2023

# Contribution
Contributions are welcome! Please open an issue or submit a pull request for any improvements or features.

Feel free to contribute as much as possible! Whether it's reporting bugs, suggesting features, or submitting pull requests, your input is valuable.

>> Open Issues: Check the issues page for current tasks and bugs.
>> Feature Requests: Have an idea? Let us know on the feature request page.
>> Pull Requests: We welcome contributions!




