fipv


Namefipv JSON
Version 1.0.1 PyPI version JSON
download
home_pagehttps://github.com/eredotpkfr/fipv
SummaryFast IP validator for bulk IP data.
upload_time2024-09-17 08:23:30
maintainerNone
docs_urlNone
authoreredotpkfr
requires_python>=3.9
licenseMIT
keywords fast validation validator validate ipv4 ipv6 ipv6_cidr ipv4_cidr
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Test](https://github.com/eredotpkfr/fipv/actions/workflows/python-package-test.yml/badge.svg)](https://github.com/eredotpkfr/fipv/actions/workflows/python-package-test.yml)
[![PyPI](https://img.shields.io/pypi/v/fipv)](https://pypi.org/project/fipv/)
[![Github Pages](https://img.shields.io/badge/github-pages-orange.svg)](https://www.erdoganyoksul.com/fipv/)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/fipv)
[![License: MIT](https://img.shields.io/badge/license-MIT-informational.svg)](https://opensource.org/licenses/MIT)
[![Stars](https://img.shields.io/github/stars/eredotpkfr/fipv?style=social)](https://github.com/eredotpkfr/fipv/stargazers)
# fipv
It stands out as a high-speed Python package meticulously built in C language 🤙 It elegantly consolidates core IP address validation functions into a robust C-based implementation, ensuring unparalleled speed compared to alternatives

🎯 **Key Features**
- 🚀 **Efficiency and Performance:** The C-based implementation of `fipv` guarantees exceptional speed and minimal RAM usage, making it a top choice for high-performance IP address validation in Python applications
- 📚 **Simplified Usage:** Explore [github pages](https://www.erdoganyoksul.com/fipv/) for easy-to-follow documentation and package references

âš¡ **Available Validators**
- IPv4
- IPv4 CIDR
- IPv6
- IPv6 CIDR

## Installation
```sh
$ pip3 install fipv
```
## Usage
### Basic Validation
```python
import fipv

# Basic C validation functions
print(
    fipv.ipv4("127.0.0.1"),
    fipv.ipv4_cidr("127.0.0.1/44"),
    fipv.ipv6("::1"),
    fipv.ipv6_cidr("::1/129"),
)

# Output
# True False True False
```
### Bulk Validation
```python
import fipv

# Validate bulk IPv4 data
ips = ['127.0.0.1'] * 1000000
valids = [ip for ip in ips if fipv.ipv4(ip)]
print(len(valids))

# Output
# 1000000
```

## Test Benchmark (2021-10-07)
In this test, it was tested validation speed and average RAM usage with different python validators and different data types. Finally results saved to below table

🟢 Valid 🔴 Invalid
<table>
  <thead>
    <tr>
      <th align="center" scope="col">Test ID</th>
      <th align="center" scope="col" colspan="2" scope="colgroup">Test Data Count</th>
      <th align="center" scope="col">Total Data</th>
      <th align="center" scope="col">Data Type</th>
      <th align="center">Project</th>
      <th align="center">Validation Duration</th>
      <th align="center">Avr. RAM Usage (MB)</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th align="center" rowspan="3" scope="rowgroup">1</th>
      <th align="center" scope="row">🟢</th>
      <td align="center">500K</td>
      <td align="center" rowspan="3">1M</td>
      <td align="center" rowspan="3">IPv4</td>
      <td align="center">
        <a href="https://github.com/kvesteri/validators" target="_blank">validators</a>
      </td>
      <td align="center">0m12,975s</td>
      <td align="center">85M</td>
    </tr>
    <tr>
      <th align="center" scope="row">🔴</th>
      <td align="center">500K</td>
      <td align="center">
        <a href="https://docs.python.org/3/library/ipaddress.html" target="_blank">ipaddress</a>
      </td>
      <td align="center">0m2,007s</td>
      <td align="center">80M</td>
    </tr>
    <tr>
      <th align="center" scope="row">N/A</th>
      <td align="center">N/A</td>
      <td align="center">fipv</td>
      <td align="center">0m0,635s</td>
      <td align="center">76M</td>
    </tr>
  </tbody>
  <tbody>
    <tr>
      <th align="center" rowspan="3" scope="rowgroup">2</th>
      <th align="center" scope="row">🟢</th>
      <td align="center">1M</td>
      <td align="center" rowspan="3">2M</td>
      <td align="center" rowspan="3">IPv4</td>
      <td align="center">
        <a href="https://github.com/kvesteri/validators" target="_blank">validators</a>
      </td>
      <td align="center">0m25,682s</td>
      <td align="center">151M</td>
    </tr>
    <tr>
      <th align="center" scope="row">🔴</th>
      <td align="center">1M</td>
      <td align="center">
        <a href="https://docs.python.org/3/library/ipaddress.html" target="_blank">ipaddress</a>
      </td>
      <td align="center">0m3,937s</td>
      <td align="center">154M</td>
    </tr>
    <tr>
      <th align="center" scope="row">N/A</th>
      <td align="center">N/A</td>
      <td align="center">fipv</td>
      <td align="center">0m1,193s</td>
      <td align="center">150M</td>
    </tr>
  </tbody>
  <tbody>
    <tr>
      <th align="center" rowspan="3" scope="rowgroup">3</th>
      <th align="center" scope="row">🟢</th>
      <td align="center">500K</td>
      <td align="center" rowspan="3">1M</td>
      <td align="center" rowspan="3">IPv4 CIDR</td>
      <td align="center">
        <a href="https://github.com/kvesteri/validators" target="_blank">validators</a>
      </td>
      <td align="center">0m19,721s</td>
      <td align="center">96M</td>
    </tr>
    <tr>
      <th align="center" scope="row">🔴</th>
      <td align="center">500K</td>
      <td align="center">
        <a href="https://docs.python.org/3/library/ipaddress.html" target="_blank">ipaddress</a>
      </td>
      <td align="center">0m8,662s</td>
      <td align="center">89M</td>
    </tr>
    <tr>
      <th align="center" scope="row">N/A</th>
      <td align="center">N/A</td>
      <td align="center">fipv</td>
      <td align="center">0m0,909s</td>
      <td align="center">77M</td>
    </tr>
  </tbody>
  <tbody>
    <tr>
      <th align="center" rowspan="3" scope="rowgroup">4</th>
      <th align="center" scope="row">🟢</th>
      <td align="center">1M</td>
      <td align="center" rowspan="3">2M</td>
      <td align="center" rowspan="3">IPv4 CIDR</td>
      <td align="center">
        <a href="https://github.com/kvesteri/validators" target="_blank">validators</a>
      </td>
      <td align="center">0m39,457s</td>
      <td align="center">179M</td>
    </tr>
    <tr>
      <th align="center" scope="row">🔴</th>
      <td align="center">1M</td>
      <td align="center">
        <a href="https://docs.python.org/3/library/ipaddress.html" target="_blank">ipaddress</a>
      </td>
      <td align="center">0m17,029s</td>
      <td align="center">174M</td>
    </tr>
    <tr>
      <th align="center" scope="row">N/A</th>
      <td align="center">N/A</td>
      <td align="center">fipv</td>
      <td align="center">0m1,779s</td>
      <td align="center">174M</td>
    </tr>
  </tbody>
  <tbody>
    <tr>
      <th align="center" rowspan="3" scope="rowgroup">5</th>
      <th align="center" scope="row">🟢</th>
      <td align="center">500K</td>
      <td align="center" rowspan="3">1M</td>
      <td align="center" rowspan="3">IPv6</td>
      <td align="center">
        <a href="https://github.com/kvesteri/validators" target="_blank">validators</a>
      </td>
      <td align="center">0m12,633s</td>
      <td align="center">96M</td>
    </tr>
    <tr>
      <th align="center" scope="row">🔴</th>
      <td align="center">500K</td>
      <td align="center">
        <a href="https://docs.python.org/3/library/ipaddress.html" target="_blank">ipaddress</a>
      </td>
      <td align="center">0m2,802s</td>
      <td align="center">92M</td>
    </tr>
    <tr>
      <th align="center" scope="row">N/A</th>
      <td align="center">N/A</td>
      <td align="center">fipv</td>
      <td align="center">0m0,684s</td>
      <td align="center">87M</td>
    </tr>
  </tbody>
  <tbody>
    <tr>
      <th align="center" rowspan="3" scope="rowgroup">6</th>
      <th align="center" scope="row">🟢</th>
      <td align="center">1M</td>
      <td align="center" rowspan="3">2M</td>
      <td align="center" rowspan="3">IPv6</td>
      <td align="center">
        <a href="https://github.com/kvesteri/validators" target="_blank">validators</a>
      </td>
      <td align="center">0m26,449s</td>
      <td align="center">183M</td>
    </tr>
    <tr>
      <th align="center" scope="row">🔴</th>
      <td align="center">1M</td>
      <td align="center">
        <a href="https://docs.python.org/3/library/ipaddress.html" target="_blank">ipaddress</a>
      </td>
      <td align="center">0m5,605s</td>
      <td align="center">177M</td>
    </tr>
    <tr>
      <th align="center" scope="row">N/A</th>
      <td align="center">N/A</td>
      <td align="center">fipv</td>
      <td align="center">0m1,308s</td>
      <td align="center">172M</td>
    </tr>
  </tbody>
  <tbody>
    <tr>
      <th align="center" rowspan="3" scope="rowgroup">7</th>
      <th align="center" scope="row">🟢</th>
      <td align="center">500K</td>
      <td align="center" rowspan="3">1M</td>
      <td align="center" rowspan="3">IPv6 CIDR</td>
      <td align="center">
        <a href="https://github.com/kvesteri/validators" target="_blank">validators</a>
      </td>
      <td align="center">0m20,936s</td>
      <td align="center">99M</td>
    </tr>
    <tr>
      <th align="center" scope="row">🔴</th>
      <td align="center">500K</td>
      <td align="center">
        <a href="https://docs.python.org/3/library/ipaddress.html" target="_blank">ipaddress</a>
      </td>
      <td align="center">0m10,778s</td>
      <td align="center">95M</td>
    </tr>
    <tr>
      <th align="center" scope="row">N/A</th>
      <td align="center">N/A</td>
      <td align="center">fipv</td>
      <td align="center">0m0,958s</td>
      <td align="center">93M</td>
    </tr>
  </tbody>
  <tbody>
    <tr>
      <th align="center" rowspan="3" scope="rowgroup">8</th>
      <th align="center" scope="row">🟢</th>
      <td align="center">1M</td>
      <td align="center" rowspan="3">2M</td>
      <td align="center" rowspan="3">IPv6 CIDR</td>
      <td align="center">
        <a href="https://github.com/kvesteri/validators" target="_blank">validators</a>
      </td>
      <td align="center">0m51,382s</td>
      <td align="center">184M</td>
    </tr>
    <tr>
      <th align="center" scope="row">🔴</th>
      <td align="center">1M</td>
      <td align="center">
        <a href="https://docs.python.org/3/library/ipaddress.html" target="_blank">ipaddress</a>
      </td>
      <td align="center">0m25,563s</td>
      <td align="center">184M</td>
    </tr>
    <tr>
      <th align="center" scope="row">N/A</th>
      <td align="center">N/A</td>
      <td align="center">fipv</td>
      <td align="center">0m1,862s</td>
      <td align="center">168M</td>
    </tr>
  </tbody>
</table>

## Contact
Blog - [erdoganyoksul.com](https://www.erdoganyoksul.com)<br/>
Mail - erdoganyoksul3@gmail.com

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/eredotpkfr/fipv",
    "name": "fipv",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "fast, validation, validator, validate, ipv4, ipv6, ipv6_cidr, ipv4_cidr",
    "author": "eredotpkfr",
    "author_email": "erdoganyoksul3@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/b1/f5/69b61d2e09aa30119f5cabe6cfcac9774e10baa45eee433ceb596b4156f7/fipv-1.0.1.tar.gz",
    "platform": null,
    "description": "[![Test](https://github.com/eredotpkfr/fipv/actions/workflows/python-package-test.yml/badge.svg)](https://github.com/eredotpkfr/fipv/actions/workflows/python-package-test.yml)\n[![PyPI](https://img.shields.io/pypi/v/fipv)](https://pypi.org/project/fipv/)\n[![Github Pages](https://img.shields.io/badge/github-pages-orange.svg)](https://www.erdoganyoksul.com/fipv/)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/fipv)\n[![License: MIT](https://img.shields.io/badge/license-MIT-informational.svg)](https://opensource.org/licenses/MIT)\n[![Stars](https://img.shields.io/github/stars/eredotpkfr/fipv?style=social)](https://github.com/eredotpkfr/fipv/stargazers)\n# fipv\nIt stands out as a high-speed Python package meticulously built in C language \ud83e\udd19 It elegantly consolidates core IP address validation functions into a robust C-based implementation, ensuring unparalleled speed compared to alternatives\n\n\ud83c\udfaf **Key Features**\n- \ud83d\ude80 **Efficiency and Performance:** The C-based implementation of `fipv` guarantees exceptional speed and minimal RAM usage, making it a top choice for high-performance IP address validation in Python applications\n- \ud83d\udcda **Simplified Usage:** Explore [github pages](https://www.erdoganyoksul.com/fipv/) for easy-to-follow documentation and package references\n\n\u26a1 **Available Validators**\n- IPv4\n- IPv4 CIDR\n- IPv6\n- IPv6 CIDR\n\n## Installation\n```sh\n$ pip3 install fipv\n```\n## Usage\n### Basic Validation\n```python\nimport fipv\n\n# Basic C validation functions\nprint(\n    fipv.ipv4(\"127.0.0.1\"),\n    fipv.ipv4_cidr(\"127.0.0.1/44\"),\n    fipv.ipv6(\"::1\"),\n    fipv.ipv6_cidr(\"::1/129\"),\n)\n\n# Output\n# True False True False\n```\n### Bulk Validation\n```python\nimport fipv\n\n# Validate bulk IPv4 data\nips = ['127.0.0.1'] * 1000000\nvalids = [ip for ip in ips if fipv.ipv4(ip)]\nprint(len(valids))\n\n# Output\n# 1000000\n```\n\n## Test Benchmark (2021-10-07)\nIn this test, it was tested validation speed and average RAM usage with different python validators and different data types. Finally results saved to below table\n\n\ud83d\udfe2 Valid \ud83d\udd34 Invalid\n<table>\n  <thead>\n    <tr>\n      <th align=\"center\" scope=\"col\">Test ID</th>\n      <th align=\"center\" scope=\"col\" colspan=\"2\" scope=\"colgroup\">Test Data Count</th>\n      <th align=\"center\" scope=\"col\">Total Data</th>\n      <th align=\"center\" scope=\"col\">Data Type</th>\n      <th align=\"center\">Project</th>\n      <th align=\"center\">Validation Duration</th>\n      <th align=\"center\">Avr. RAM Usage (MB)</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr>\n      <th align=\"center\" rowspan=\"3\" scope=\"rowgroup\">1</th>\n      <th align=\"center\" scope=\"row\">\ud83d\udfe2</th>\n      <td align=\"center\">500K</td>\n      <td align=\"center\" rowspan=\"3\">1M</td>\n      <td align=\"center\" rowspan=\"3\">IPv4</td>\n      <td align=\"center\">\n        <a href=\"https://github.com/kvesteri/validators\" target=\"_blank\">validators</a>\n      </td>\n      <td align=\"center\">0m12,975s</td>\n      <td align=\"center\">85M</td>\n    </tr>\n    <tr>\n      <th align=\"center\" scope=\"row\">\ud83d\udd34</th>\n      <td align=\"center\">500K</td>\n      <td align=\"center\">\n        <a href=\"https://docs.python.org/3/library/ipaddress.html\" target=\"_blank\">ipaddress</a>\n      </td>\n      <td align=\"center\">0m2,007s</td>\n      <td align=\"center\">80M</td>\n    </tr>\n    <tr>\n      <th align=\"center\" scope=\"row\">N/A</th>\n      <td align=\"center\">N/A</td>\n      <td align=\"center\">fipv</td>\n      <td align=\"center\">0m0,635s</td>\n      <td align=\"center\">76M</td>\n    </tr>\n  </tbody>\n  <tbody>\n    <tr>\n      <th align=\"center\" rowspan=\"3\" scope=\"rowgroup\">2</th>\n      <th align=\"center\" scope=\"row\">\ud83d\udfe2</th>\n      <td align=\"center\">1M</td>\n      <td align=\"center\" rowspan=\"3\">2M</td>\n      <td align=\"center\" rowspan=\"3\">IPv4</td>\n      <td align=\"center\">\n        <a href=\"https://github.com/kvesteri/validators\" target=\"_blank\">validators</a>\n      </td>\n      <td align=\"center\">0m25,682s</td>\n      <td align=\"center\">151M</td>\n    </tr>\n    <tr>\n      <th align=\"center\" scope=\"row\">\ud83d\udd34</th>\n      <td align=\"center\">1M</td>\n      <td align=\"center\">\n        <a href=\"https://docs.python.org/3/library/ipaddress.html\" target=\"_blank\">ipaddress</a>\n      </td>\n      <td align=\"center\">0m3,937s</td>\n      <td align=\"center\">154M</td>\n    </tr>\n    <tr>\n      <th align=\"center\" scope=\"row\">N/A</th>\n      <td align=\"center\">N/A</td>\n      <td align=\"center\">fipv</td>\n      <td align=\"center\">0m1,193s</td>\n      <td align=\"center\">150M</td>\n    </tr>\n  </tbody>\n  <tbody>\n    <tr>\n      <th align=\"center\" rowspan=\"3\" scope=\"rowgroup\">3</th>\n      <th align=\"center\" scope=\"row\">\ud83d\udfe2</th>\n      <td align=\"center\">500K</td>\n      <td align=\"center\" rowspan=\"3\">1M</td>\n      <td align=\"center\" rowspan=\"3\">IPv4 CIDR</td>\n      <td align=\"center\">\n        <a href=\"https://github.com/kvesteri/validators\" target=\"_blank\">validators</a>\n      </td>\n      <td align=\"center\">0m19,721s</td>\n      <td align=\"center\">96M</td>\n    </tr>\n    <tr>\n      <th align=\"center\" scope=\"row\">\ud83d\udd34</th>\n      <td align=\"center\">500K</td>\n      <td align=\"center\">\n        <a href=\"https://docs.python.org/3/library/ipaddress.html\" target=\"_blank\">ipaddress</a>\n      </td>\n      <td align=\"center\">0m8,662s</td>\n      <td align=\"center\">89M</td>\n    </tr>\n    <tr>\n      <th align=\"center\" scope=\"row\">N/A</th>\n      <td align=\"center\">N/A</td>\n      <td align=\"center\">fipv</td>\n      <td align=\"center\">0m0,909s</td>\n      <td align=\"center\">77M</td>\n    </tr>\n  </tbody>\n  <tbody>\n    <tr>\n      <th align=\"center\" rowspan=\"3\" scope=\"rowgroup\">4</th>\n      <th align=\"center\" scope=\"row\">\ud83d\udfe2</th>\n      <td align=\"center\">1M</td>\n      <td align=\"center\" rowspan=\"3\">2M</td>\n      <td align=\"center\" rowspan=\"3\">IPv4 CIDR</td>\n      <td align=\"center\">\n        <a href=\"https://github.com/kvesteri/validators\" target=\"_blank\">validators</a>\n      </td>\n      <td align=\"center\">0m39,457s</td>\n      <td align=\"center\">179M</td>\n    </tr>\n    <tr>\n      <th align=\"center\" scope=\"row\">\ud83d\udd34</th>\n      <td align=\"center\">1M</td>\n      <td align=\"center\">\n        <a href=\"https://docs.python.org/3/library/ipaddress.html\" target=\"_blank\">ipaddress</a>\n      </td>\n      <td align=\"center\">0m17,029s</td>\n      <td align=\"center\">174M</td>\n    </tr>\n    <tr>\n      <th align=\"center\" scope=\"row\">N/A</th>\n      <td align=\"center\">N/A</td>\n      <td align=\"center\">fipv</td>\n      <td align=\"center\">0m1,779s</td>\n      <td align=\"center\">174M</td>\n    </tr>\n  </tbody>\n  <tbody>\n    <tr>\n      <th align=\"center\" rowspan=\"3\" scope=\"rowgroup\">5</th>\n      <th align=\"center\" scope=\"row\">\ud83d\udfe2</th>\n      <td align=\"center\">500K</td>\n      <td align=\"center\" rowspan=\"3\">1M</td>\n      <td align=\"center\" rowspan=\"3\">IPv6</td>\n      <td align=\"center\">\n        <a href=\"https://github.com/kvesteri/validators\" target=\"_blank\">validators</a>\n      </td>\n      <td align=\"center\">0m12,633s</td>\n      <td align=\"center\">96M</td>\n    </tr>\n    <tr>\n      <th align=\"center\" scope=\"row\">\ud83d\udd34</th>\n      <td align=\"center\">500K</td>\n      <td align=\"center\">\n        <a href=\"https://docs.python.org/3/library/ipaddress.html\" target=\"_blank\">ipaddress</a>\n      </td>\n      <td align=\"center\">0m2,802s</td>\n      <td align=\"center\">92M</td>\n    </tr>\n    <tr>\n      <th align=\"center\" scope=\"row\">N/A</th>\n      <td align=\"center\">N/A</td>\n      <td align=\"center\">fipv</td>\n      <td align=\"center\">0m0,684s</td>\n      <td align=\"center\">87M</td>\n    </tr>\n  </tbody>\n  <tbody>\n    <tr>\n      <th align=\"center\" rowspan=\"3\" scope=\"rowgroup\">6</th>\n      <th align=\"center\" scope=\"row\">\ud83d\udfe2</th>\n      <td align=\"center\">1M</td>\n      <td align=\"center\" rowspan=\"3\">2M</td>\n      <td align=\"center\" rowspan=\"3\">IPv6</td>\n      <td align=\"center\">\n        <a href=\"https://github.com/kvesteri/validators\" target=\"_blank\">validators</a>\n      </td>\n      <td align=\"center\">0m26,449s</td>\n      <td align=\"center\">183M</td>\n    </tr>\n    <tr>\n      <th align=\"center\" scope=\"row\">\ud83d\udd34</th>\n      <td align=\"center\">1M</td>\n      <td align=\"center\">\n        <a href=\"https://docs.python.org/3/library/ipaddress.html\" target=\"_blank\">ipaddress</a>\n      </td>\n      <td align=\"center\">0m5,605s</td>\n      <td align=\"center\">177M</td>\n    </tr>\n    <tr>\n      <th align=\"center\" scope=\"row\">N/A</th>\n      <td align=\"center\">N/A</td>\n      <td align=\"center\">fipv</td>\n      <td align=\"center\">0m1,308s</td>\n      <td align=\"center\">172M</td>\n    </tr>\n  </tbody>\n  <tbody>\n    <tr>\n      <th align=\"center\" rowspan=\"3\" scope=\"rowgroup\">7</th>\n      <th align=\"center\" scope=\"row\">\ud83d\udfe2</th>\n      <td align=\"center\">500K</td>\n      <td align=\"center\" rowspan=\"3\">1M</td>\n      <td align=\"center\" rowspan=\"3\">IPv6 CIDR</td>\n      <td align=\"center\">\n        <a href=\"https://github.com/kvesteri/validators\" target=\"_blank\">validators</a>\n      </td>\n      <td align=\"center\">0m20,936s</td>\n      <td align=\"center\">99M</td>\n    </tr>\n    <tr>\n      <th align=\"center\" scope=\"row\">\ud83d\udd34</th>\n      <td align=\"center\">500K</td>\n      <td align=\"center\">\n        <a href=\"https://docs.python.org/3/library/ipaddress.html\" target=\"_blank\">ipaddress</a>\n      </td>\n      <td align=\"center\">0m10,778s</td>\n      <td align=\"center\">95M</td>\n    </tr>\n    <tr>\n      <th align=\"center\" scope=\"row\">N/A</th>\n      <td align=\"center\">N/A</td>\n      <td align=\"center\">fipv</td>\n      <td align=\"center\">0m0,958s</td>\n      <td align=\"center\">93M</td>\n    </tr>\n  </tbody>\n  <tbody>\n    <tr>\n      <th align=\"center\" rowspan=\"3\" scope=\"rowgroup\">8</th>\n      <th align=\"center\" scope=\"row\">\ud83d\udfe2</th>\n      <td align=\"center\">1M</td>\n      <td align=\"center\" rowspan=\"3\">2M</td>\n      <td align=\"center\" rowspan=\"3\">IPv6 CIDR</td>\n      <td align=\"center\">\n        <a href=\"https://github.com/kvesteri/validators\" target=\"_blank\">validators</a>\n      </td>\n      <td align=\"center\">0m51,382s</td>\n      <td align=\"center\">184M</td>\n    </tr>\n    <tr>\n      <th align=\"center\" scope=\"row\">\ud83d\udd34</th>\n      <td align=\"center\">1M</td>\n      <td align=\"center\">\n        <a href=\"https://docs.python.org/3/library/ipaddress.html\" target=\"_blank\">ipaddress</a>\n      </td>\n      <td align=\"center\">0m25,563s</td>\n      <td align=\"center\">184M</td>\n    </tr>\n    <tr>\n      <th align=\"center\" scope=\"row\">N/A</th>\n      <td align=\"center\">N/A</td>\n      <td align=\"center\">fipv</td>\n      <td align=\"center\">0m1,862s</td>\n      <td align=\"center\">168M</td>\n    </tr>\n  </tbody>\n</table>\n\n## Contact\nBlog - [erdoganyoksul.com](https://www.erdoganyoksul.com)<br/>\nMail - erdoganyoksul3@gmail.com\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Fast IP validator for bulk IP data.",
    "version": "1.0.1",
    "project_urls": {
        "Bug Reports": "https://github.com/eredotpkfr/fipv/issues",
        "Documentation": "https://www.erdoganyoksul.com/fipv/",
        "Homepage": "https://github.com/eredotpkfr/fipv",
        "Say Thanks (star the project)": "https://github.com/eredotpkfr/fipv"
    },
    "split_keywords": [
        "fast",
        " validation",
        " validator",
        " validate",
        " ipv4",
        " ipv6",
        " ipv6_cidr",
        " ipv4_cidr"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b1f569b61d2e09aa30119f5cabe6cfcac9774e10baa45eee433ceb596b4156f7",
                "md5": "ffd0417b9f38f550a23374e79f09755d",
                "sha256": "7bd6d26977e6f6fbc69925ae6190a0ffc9d120aaa4b78bef0d0ff2208dba0096"
            },
            "downloads": -1,
            "filename": "fipv-1.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "ffd0417b9f38f550a23374e79f09755d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 8745,
            "upload_time": "2024-09-17T08:23:30",
            "upload_time_iso_8601": "2024-09-17T08:23:30.978010Z",
            "url": "https://files.pythonhosted.org/packages/b1/f5/69b61d2e09aa30119f5cabe6cfcac9774e10baa45eee433ceb596b4156f7/fipv-1.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-17 08:23:30",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "eredotpkfr",
    "github_project": "fipv",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "fipv"
}
        
Elapsed time: 2.76157s