Skip to main content

Syntax validator for email, hostname, url, uri and ip address, compliant to RFC specifications

Project description

What is this?

Syntax validator compliant to RFC specifications for

  • Email
  • Hostname
  • URL
  • URI
  • IPv4 and IPv6
  • Mac address

Installation

This module can be installed from pypi website

pip install checkifvalid

Checking IPv4 or IPv6 syntax

import checkifvalid

checkifvalid.ipv6_address("::1")
True

checkifvalid.ipv4_address("127.0.0.1")
True

checkifvalid.ipv4_address("127.0.0.257")
False

Checking URL syntax

import checkifvalid

checkifvalid.url("https://www.google.com")
True

Other syntax validator

import checkifvalid

checkifvalid.email("john.doe@example.com")
True

checkifvalid.uri("sip:support@john.doe:443",)
True

checkifvalid.mac_address("00:11:22:33:44:55")
True

checkifvalid.hostname("john@doe")
False

For developpers

Run test units

python3 -m unittest discover tests/ -v

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

checkifvalid-0.1.1.tar.gz (6.9 kB view hashes)

Uploaded Source

Built Distribution

checkifvalid-0.1.1-py3-none-any.whl (10.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page