https://github.com/naimetti/rfc3339-validator
A pure python RFC3339 validator
https://github.com/naimetti/rfc3339-validator
datetime rfc3339 validator
Last synced: 3 months ago
JSON representation
A pure python RFC3339 validator
- Host: GitHub
- URL: https://github.com/naimetti/rfc3339-validator
- Owner: naimetti
- License: mit
- Created: 2019-10-24T18:08:36.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-26T20:59:27.000Z (about 3 years ago)
- Last Synced: 2025-09-29T11:20:46.880Z (4 months ago)
- Topics: datetime, rfc3339, validator
- Language: Python
- Size: 24.4 KB
- Stars: 8
- Watchers: 1
- Forks: 11
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
# rfc3339-validator
A pure python RFC3339 validator
[](https://pypi.python.org/pypi/rfc3339_validator)
[](https://travis-ci.org/naimetti/rfc3339-validator)
# 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