Metadata-Version: 2.1
Name: mathco
Version: 0.0.2
Summary: Companion for your Mathematical operations
Home-page: https://github.com/AbelR007/Mathco
Author: Abel Roy
Author-email: abelroi007@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# Mathco
### Companion for your Mathematical operations

Mathco is a Python Basic Library that can perform basic mathematical functions and operations. Easy to use.

Install Mathco : `pip install mathco`<br>
Mathco Github : [Click this link](https://github.com/AbelR007/Mathco/)

## Examples
- Simple Usage of Mathco Library
```python
from mathco import Basic
x = Basic() # Creates an instance
print(x.add(1,2)) # Gives out output as "3"
```
- Taking input from user
```python
from mathco import Basic
x = Basic()
i = input("Enter here :")
i2 = input("Enter here :")
print(x.add(i, i2))
```
## Functions available
- `x.add(x,y)` : Adds two integers
- `x.sub(x,y)` : Subtracts two integers
- `x.mul(x,y)` : Multiply two integers
- `x.div(x,y)` : Divides two integers

## Extra Details

- **License :** GNU General Public License v3.0
- **Modules Needed :** None (for v0.0.1)

### Created with ❤️ by AbelR007


