Metadata-Version: 2.4
Name: CatDot-py
Version: 26.1.1
Summary: This is a combined package of all my other packages designed with multi-functionality
Author-email: Matthew Carter <mjcarter002@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/Orbits-Studio-Programing/CatDot-py
Project-URL: Bug Tracker, https://github.com/Orbits-Studio-Programing/CatDot-py/issues
Keywords: SeaKrait,Seacret,CatDot
Classifier: Programming Language :: Python :: 3.13
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENCE.txt
Dynamic: license-file


# Welcome to CatDot-py! 🐟
### What is CatDot-py? 🐟

CatDot-py is the official rebundle and successor of `Looprlib`, `Looprlib-Mit`, `SeaKrait`, and `Seacret`. \
All future updates and new features will be released exclusively under the CatDot-py name.\
CatDot-py was made to bundle all my packages to make production easier.\
Everything from the originals are still here.\
This is the only version that will continue to update from now on.

Seacret - Make code not readable to humans
CrackDown (Never Released) - Make code very simple to write
SeaKrait - Adds various functions


## Features

- **Simplified Math Utilities:** Quick logical and evaluation helper functions.
- **Cross Ability:** Being able to cross use function between multiple modules.
- **Lightweight & Fast:** Zero heavy third-party dependencies.





### Use Cases
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

### Example in package
    
    import SeaKrait as seakr
    print(seakr.seamath.positivity(100,21,32,123))

#### if 100 is positive the result is 21
#### if 100 is negative the result is 32
#### if 100 is equal to 0  the result is 123

#### in this case the function will print 21 to the terminal!


### Other Material
SeaKrait - https://github.com/Orbits-Studio-Programing/SeaKrait \

#### Originals
Looprlib - https://pypi.org/project/Looprlib/ \
Looprlib MIT - https://pypi.org/project/Looprlib-MIT/
