Metadata-Version: 2.4
Name: Looprlib-MIT
Version: 2.0.1
Summary: ##ARCHIVED## - This is a quick and easy to use Library for python that adds a bunch of random functions.
Author-email: Matthew Carter <mjcarter002@gmail.com>
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENCE.txt
Requires-Dist: requests>=2.28.0
Dynamic: license-file

﻿# !!!#DISCALMER#!!!
This project of mine has been archived because I have switched over to using the MIT licence on a seperate PyPI project.\
This one is licenced under MIT.\
The new MIT licenced code package is at https://pypi.org/project/SeaKrait/
Sorry for the many recent changes.\
This change will 100% be permanent.
\
\
\
\
\
# Welcome to Looprlib MIT!
### What is Looprlib MIT
Looprlib MIT is a module for python that adds "really random" things, and is "kinda useless" :)\
This is the newer MIT licence version of Looprlib as looprlib development has taken a turn to use the MIT licence instead
### 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
    print(looprlib.loopmath.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!


### This is the MIT release!
 to see test releases go to: https://test.pypi.org/project/Looprlib/ \
 And Original releases go to: https://pypi.org/project/Looprlib/
