Metadata-Version: 2.4
Name: armstrong-checker
Version: 0.1.3
Summary: Library to check if a number is Armstrong
Author: João Pedro Calaça Costa
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

# armstrong-checker

A Python library to check if a number is an Armstrong number.

To use:
    from armstrong_checker import armstrong

    armstrong("153")



Explanations

armstrong() receives a string containing a number.
This number must be an integer.
If any other parameter is passed, the function will return an error.

The return value of this function is a Boolean.
The highest Armstrong number tested was:
115132219018763992565095597973971522401

So, I guarantee it will work with any number below that😃😜.


## Instalation

```bash
pip install armstrong-checker
