An open API service indexing awesome lists of open source software.

https://github.com/maharshmellow/patelib

Reusable Code and Stuff
https://github.com/maharshmellow/patelib

Last synced: 3 months ago
JSON representation

Reusable Code and Stuff

Awesome Lists containing this project

README

        

## INSTALLATION
### With PIP
`$ pip install git+https://github.com/maharshmellow/patelib.git`

- might have to use pip2, pip3 depending on the version installed
- might have to use `sudo` if user doesn't have enough permissions

### Without PIP

`$ git clone https://github.com/maharshmellow/patelib.git`

`$ cd patelib`

`$ python3 setup.py install`

**To Update:**
Complete either method again

## USAGE (in python)
```python
>>> from patelib.number.isPrime import *
>>> isPrime(59)
True
```