Merge pull request #447 from python-validators/workshop.jovial chore: update codebase to reflect new username
Merge pull request #447 from python-validators/workshop.jovial
chore: update codebase to reflect new username
Python has all kinds of data validation tools, but every one of them seems to require defining a schema or form. I wanted to create a simple validation library where validating a simple value does not require defining a form or a schema.
pip install validators
Then,
>>> import validators >>> >>> validators.email('someone@example.com') True
Python 3.9 reaches EOL in October 2025.
用于验证和校验数据的Python库
版权所有:中国计算机学会技术支持:开源发展技术委员会 京ICP备13000930号-9 京公网安备 11010802047560号
validators - Python Data Validation for Humans™
Python has all kinds of data validation tools, but every one of them seems to require defining a schema or form. I wanted to create a simple validation library where validating a simple value does not require defining a form or a schema.
Then,
Resources