Python wtforms.validators.IPAddress() Examples

The following are 3 code examples of wtforms.validators.IPAddress(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module wtforms.validators , or try the search function .
Example #1
Source File: orm.py    From jbox with MIT License 5 votes vote down vote up
def conv_PGInet(self, field_args, **extra):
        field_args.setdefault('label', 'IP Address')
        field_args['validators'].append(validators.IPAddress())
        return f.TextField(**field_args) 
Example #2
Source File: orm.py    From RSSNewsGAE with Apache License 2.0 5 votes vote down vote up
def conv_PGInet(self, field_args, **extra):
        field_args.setdefault('label', 'IP Address')
        field_args['validators'].append(validators.IPAddress())
        return f.TextField(**field_args) 
Example #3
Source File: orm.py    From googleapps-message-recall with Apache License 2.0 5 votes vote down vote up
def conv_PGInet(self, field_args, **extra):
        field_args.setdefault('label', 'IP Address')
        field_args['validators'].append(validators.IPAddress())
        return f.TextField(**field_args)