You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We might want to standardize on common validations that occur often in services, building something similar to Django's validation utility library (https://docs.djangoproject.com/en/3.0/ref/validators/), rather than services glomming in other libraries that we may/may not like. Recent questions from devs I've seen include:
email address compliance
url address (wrapper for urlparse)
slugifying input / alphanum special char regex
punycode conversions
Sadly Pyramid doesn't have a similar validators library
The text was updated successfully, but these errors were encountered:
We might want to standardize on common validations that occur often in services, building something similar to Django's validation utility library (https://docs.djangoproject.com/en/3.0/ref/validators/), rather than services glomming in other libraries that we may/may not like. Recent questions from devs I've seen include:
Sadly Pyramid doesn't have a similar validators library
The text was updated successfully, but these errors were encountered: