SeaKrait is the official rebundle and successor to Looprlib and Looprlib-Mit.
All future updates and new features will be released exclusively under the SeaKrait name.
SeaKrait was made to change the cofusing name "Looprlib" to something more friendly like Seakrait (Maybe this is a bad example IDK)
Everything from the originals are still here.
This is the only version that will continue to update
- Simplified Math Utilities: Quick logical and evaluation helper functions.
- Friendly API: Clear, descriptive function names replacing the older
Looprlibsyntax. - Lightweight & Fast: Zero heavy third-party dependencies.
You could use this to test positivity of an number and get a result with this:
Here is the positivity function.
def positivity(i,pos,neg,zero):
if i > 0:
return pos
elif i < 0:
return neg
else:
return zero
import seakr
print(seakr.seamath.positivity(100,21,32,123))
Install SeaKrait instantly via pip:
pip install SeaKrait
to see Test releases go to: https://test.pypi.org/project/Looprlib/
And Original releases go to: https://pypi.org/project/Looprlib/
Releases on Anaconda are also planed in the future