skillfed

rfc3339-validator

A pure python RFC3339 validator

rfc3339-validator Permissive license MIT license Abandoned 8 v0.1.4 released

Install

rfc3339-validator on PyPI

pip

pip install rfc3339-validator

uv

uv add rfc3339-validator

poetry

poetry add rfc3339-validator

Package facts

License MIT license (permissive)
Python support supports the current Python release (>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
Install friction low — pure-Python wheel
Runtime dependencies 1 — six
Maintenance abandoned — 1,919 days since the last release
Last repo commit
First released
Popularity one of the top 1,000 most-downloaded packages on PyPI (30-day window, as of 2026-08-13)
Known vulnerabilities none known (OSV.dev, checked 2026-08-13)

Evidence: rfc3339_validator-0.1.4-py2.py3-none-any.whl

Keywords: rfc3339, validator

Development Status :: 2 - Pre-AlphaIntended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseNatural Language :: EnglishProgramming Language :: Python :: 2Programming Language :: Python :: 2.7Programming Language :: Python :: 3Programming Language :: Python :: 3.5Programming Language :: Python :: 3.6Programming Language :: Python :: 3.7Programming Language :: Python :: 3.8

About rfc3339-validator

from the package's own PyPI description — quoted content, verbatim

rfc3339-validator

A pure python RFC3339 validator

image (image) Build Status (image)

Install

```shell script pip install rfc3339-validator


# Usage

```python
from rfc3339_validator import validate_rfc3339

validate_rfc3339('1424-45-93T15:32:12.9023368Z')
>>> False

validate_rfc3339('2001-10-23T15:32:12.9023368Z')
>>> True
  • Free software: MIT license

Read as markdown · JSON record · Source repository · Homepage

AI interpretation — verify before relying

AI-generated interpretation of the package facts above; every digit, version, license, or vulnerability id it cites is grounded in the facts already shown on this page

Validates RFC3339-formatted timestamp strings, returning True or False based on conformance to the standard.

Low friction installation with a single lightweight dependency (six). However, the package is abandoned—last release was 2021-05-12 and last commit 2022-12-26, with no maintenance activity for nearly two years.

MIT license permits free use, modification, and distribution with minimal restrictions, making it suitable for both open-source and commercial projects.

Usage

pip install rfc3339-validator

from rfc3339_validator import validate_rfc3339

result = validate_rfc3339('2001-10-23T15:32:12.9023368Z')
print(result)  # True

Verdict: A minimal, permissively licensed RFC3339 validator with no known vulnerabilities and low install friction. However, its abandoned status since 2021-05-12 means no bug fixes or security updates will be forthcoming; use only if the frozen functionality meets your needs and you can maintain it independently if required.

Needs verification

  • Whether the validator correctly handles all RFC3339 edge cases beyond the documented examples.
  • Whether Python 2.7 support remains relevant given its end-of-life status.
rfc3339 timestamp validatorvalidate rfc3339 datetimerfc3339 date string checkerpython timestamp validationrfc3339 format checkerrfc3339 compliance check

Similar packages