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
- Host: GitHub
- URL: https://github.com/maharshmellow/patelib
- Owner: maharshmellow
- Created: 2016-03-31T15:30:13.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-12T00:40:35.000Z (over 8 years ago)
- Last Synced: 2025-01-14T14:13:35.975Z (4 months ago)
- Language: Python
- Homepage:
- Size: 42 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
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
```