isEvenAPI
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 π
Main features
- Cache Memorization βΏ
- API Retry Handler β»
Install
From PyPI π
pip install isEvenApi
Or from GitHub π±
pip install git+https:/github.com/UltiRequiem/isEvenAPI
Usage
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.
Alternatives
A simpler aproach π
def is_even(number):
return number % 2 == 0
CLI Tool
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.
Support
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 β
Authors
Eliaz Bobadilla (a.k.a UltiRequiem) - Creator and Maintainer πͺ
See also the full list of contributors who participated in this project.
Versioning
We use SemVer for versioning. For the versions available, see the tags.
Note
I did this because Iβm learning how to upload packages to PYPI with GitHub actions.
Licence
Licensed under the MIT License.