Metadata-Version: 2.4
Name: Looprlib
Version: 1.4
Summary: 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

﻿
# Welcome to Looprlib!
### What is Looprlib?
Looprlib is a module for python that adds really random things, and is kinda useless :)
### 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


### This is a Non-test release!
to see test releases go to: https://test.pypi.org/project/Looprlib/
