Metadata-Version: 2.1
Name: ipy2d
Version: 0.1.0
Summary: Convert IP addresses to integers
Home-page: https://github.com/0xflotus/ipy2d
Author: 0xflotus
Author-email: 0xflotus+pypi@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
License-File: LICENSE

## ipy2d

[![ipy2d on pypi](https://badgen.net/pypi/v/ipy2d)](https://pypi.org/project/ipy2d/)

A small library to convert IP addresses to integers

### Usage

```py
from ipy2d import *

print(from_4("127.0.0.1")) # -> 2130706433
print(to_4(134744072)) # -> 8.8.8.8

print(from_6("::1")) # -> 1
print(to_6(1051570404137199630024704)) # -> 0000:0000:0000:dead:beef:0000:0000:0000
print(to_6(1051570404137199630024704, compressed=True)) # -> ::dead:beef:0:0:0
```


