The premier Python package for checking the even-ness of a number via an API. Built-ins are overrated, microservices are always best, regardless of scope. I read it in a medium article, so...
I did this when I was learning Python 😆
- Cache Memorization ➿
- API Retry Handler ♻
From PyPI 🐍
pip install isEvenApi
Or from GitHub 🐱
pip install git+https:/github.com/UltiRequiem/isEvenAPI
As simple as possible 🤗
from is_even import is_even, is_odd, adverstiment
print(is_even(10)) # True
print(is_odd(10)) # False
print(adverstiment()) # An Advertisement
Check the examples/
directory for more information.
A simpler aproach 👇
def is_even(number):
return number % 2 == 0
The installation process is the same as before.
The normal way 🧐
is_even 6 2
True
True
Or with the verbose mode 🍹
is_even 6 2 --verbose
6 is even.
2 is even.
Open an Issue, I will check it a soon as possible 👀
If you want to hurry me up a bit send me a tweet 😆
Consider supporting me on Patreon if you like my work 🚀
Don't forget to start the repo ⭐
Eliaz Bobadilla (a.k.a UltiRequiem) - Creator and Maintainer 💪
See also the full list of contributors who participated in this project.
We use SemVer for versioning. For the versions available, see the tags.
I did this because I'm learning how to upload packages to PYPI with GitHub actions.
Licensed under the MIT License.