METADATA 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. Metadata-Version: 2.1
  2. Name: rfc3339-validator
  3. Version: 0.1.4
  4. Summary: A pure python RFC3339 validator
  5. Home-page: https://github.com/naimetti/rfc3339-validator
  6. Author: Nicolas Aimetti
  7. Author-email: naimetti@yahoo.com.ar
  8. License: MIT license
  9. Keywords: rfc3339 validator
  10. Platform: UNKNOWN
  11. Classifier: Development Status :: 2 - Pre-Alpha
  12. Classifier: Intended Audience :: Developers
  13. Classifier: License :: OSI Approved :: MIT License
  14. Classifier: Natural Language :: English
  15. Classifier: Programming Language :: Python :: 2
  16. Classifier: Programming Language :: Python :: 2.7
  17. Classifier: Programming Language :: Python :: 3
  18. Classifier: Programming Language :: Python :: 3.5
  19. Classifier: Programming Language :: Python :: 3.6
  20. Classifier: Programming Language :: Python :: 3.7
  21. Classifier: Programming Language :: Python :: 3.8
  22. Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
  23. Description-Content-Type: text/markdown
  24. Requires-Dist: six
  25. # rfc3339-validator
  26. A pure python RFC3339 validator
  27. [![image](https://img.shields.io/pypi/v/rfc3339_validator.svg)](https://pypi.python.org/pypi/rfc3339_validator)
  28. [![Build Status](https://travis-ci.org/naimetti/rfc3339-validator.svg?branch=master)](https://travis-ci.org/naimetti/rfc3339-validator)
  29. # Install
  30. ```shell script
  31. pip install rfc3339-validator
  32. ```
  33. # Usage
  34. ```python
  35. from rfc3339_validator import validate_rfc3339
  36. validate_rfc3339('1424-45-93T15:32:12.9023368Z')
  37. >>> False
  38. validate_rfc3339('2001-10-23T15:32:12.9023368Z')
  39. >>> True
  40. ```
  41. - Free software: MIT license