Metadata-Version: 2.1
Name: Intx
Version: 0.0.2
Summary: An extension to the base type int with some handy functions
Home-page: https://github.com/SH4D0WKING/Intx
Author: Lars Van Cauter
Author-email: larsvancauter@gmail.com
License: UNKNOWN
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

# Intx
An extension to the base integer type of python. Has features like iterating over integers (including: appending, inserting, popping) and handy stuff like isPrime() etc.

## Installing
You can get the package by doing `pip install intx` or `python3 -m pip install intx`

## Use cases
```python
x = intx(12345)
for i in x:
  print(x)
>> 1
>> 2
>> 3
>> 4
>> 5

x.isEven()
>> False
...
```

## Pypi page
[Link](https://pypi.org/project/intx/) to the Pypi page.


