New possibility, you can install the library with the following command :
`py -m pip install shypan`
Website PyPi : [https://pypi.org/project/shypan/](url)
**Here are all the possible functions :**
- `EncodingUser(msg, dataType)`
> Used to do a user encoding with verification
> Example : `number = EncodingUser("Please enter a number", int)`
- `CalcAdd(nb1, nb2)`
> Used to perform an addition
> Example : `result = CalcAdd(3, 5)`
- CalcDeff(nb1, nb2)
> Used to perform an difference
> Example : `result = CalcDeff(5, 2)`
- `CalcDiv(nb1, nb2)`
> Used to perform an division
> Example : `result = CalcDiv(3, 6)`
- `CalcSin(nb)`
> Used to perform an sinus
> Example : `result = CalcSin(500)`
- `CalcCos(nb)`
> Used to perform an cosinus
> Example : `result = CalcCos(120)`
- `CalcSqrt(nb)`
> Used to perform an square root
> Example : `result = CalcSqrt(200)`
- `CalcPow(nb1, power)`
> Used to calculate the power of the encoded number
> Example : `result = CalcPow(50, 3)`
- `CalcLog(nb)`
> Used to perform an logarithm
> Example : `result = CalcLog(20)`
- `CalcExp(nb)`
> Used to perform an exposant
> Example : `result = CalcExp(7)`
- `CalcTan(nb)`
> Used to perform an tangent
> Example : `result = CalcTan(10)`
- `CalcCotan(nb)`
> Used to perform an Co-tangent
> Example : `result = CalcCotan(17)`