Metadata-Version: 2.1
Name: xeo-simple-calc
Version: 0.0.7
Summary: A small basic calculator
Home-page: https://github.com/XeoPlay/xeo-simple-calc
Author: XeoPlay
Author-email: xeoplay123456@gmail.com
License: UNKNOWN
Description: # xeo-simple-calc
        This is my first python library. It is a simple calculator.
        
        ## How to use
        First, install the library
        ```python
        pip install xeo-simple-calc
        ```
        Next, import it
        ```python
        from xeosimplecalc import *
        ```
        Then do
        ```python
        c = Calc()
        ```
        ## Commands
        ```python
        c.add(num1, num2)
        ```
        Adds two numbers.
        
        ```python
        c.subtract(num1, num2)
        ```
        Subtracts two numbers.
        
        ```python
        c.multiply(num1, num2)
        ```
        Multiplies two numbers.
        
        ```python
        c.divide(num1, num2)
        ```
        Divides two numbers. (returns a float)
        
        ```python
        c.exponentiation(num, degree)
        ```
        Exponentiates a number to a certain degree. (Sorry the English is bad :-))
        
        ```python
        c.square_root(num)
        ```
        Returns the square root of num. (returns a float)
        
        Change Log
        ==========
        
        0.0.7 (07.07.2020)
        ------------------
        - Moved all functions into a class.
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
