Python google.appengine.ext.db.ByteStringProperty() Examples
The following are 3
code examples of google.appengine.ext.db.ByteStringProperty().
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
google.appengine.ext.db
, or try the search function
.
Example #1
Source File: db.py From jbox with MIT License | 5 votes |
def convert_ByteStringProperty(model, prop, kwargs): """Returns a form field for a ``db.ByteStringProperty``.""" return get_TextField(kwargs)
Example #2
Source File: db.py From RSSNewsGAE with Apache License 2.0 | 5 votes |
def convert_ByteStringProperty(model, prop, kwargs): """Returns a form field for a ``db.ByteStringProperty``.""" return get_TextField(kwargs)
Example #3
Source File: db.py From googleapps-message-recall with Apache License 2.0 | 5 votes |
def convert_ByteStringProperty(model, prop, kwargs): """Returns a form field for a ``db.ByteStringProperty``.""" return get_TextField(kwargs)