Hackfut Security File Manager
Current Path:
/usr/lib/python2.6/site-packages/boto/dynamodb2
usr
/
lib
/
python2.6
/
site-packages
/
boto
/
dynamodb2
/
📁
..
📄
__init__.py
(1.67 KB)
📄
__init__.pyc
(978 B)
📄
__init__.pyo
(978 B)
📄
exceptions.py
(1.94 KB)
📄
exceptions.pyc
(3.03 KB)
📄
exceptions.pyo
(3.03 KB)
📄
fields.py
(8.1 KB)
📄
fields.pyc
(10.56 KB)
📄
fields.pyo
(10.56 KB)
📄
items.py
(14.18 KB)
📄
items.pyc
(14.13 KB)
📄
items.pyo
(14.13 KB)
📄
layer1.py
(139.58 KB)
📄
layer1.pyc
(132.97 KB)
📄
layer1.pyo
(132.97 KB)
📄
results.py
(6.41 KB)
📄
results.pyc
(5.83 KB)
📄
results.pyo
(5.83 KB)
📄
table.py
(52.85 KB)
📄
table.pyc
(47.38 KB)
📄
table.pyo
(47.38 KB)
📄
types.py
(859 B)
📄
types.pyc
(867 B)
📄
types.pyo
(867 B)
Editing: types.py
# Shadow the DynamoDB v1 bits. # This way, no end user should have to cross-import between versions & we # reserve the namespace to extend v2 if it's ever needed. from boto.dynamodb.types import Dynamizer # Some constants for our use. STRING = 'S' NUMBER = 'N' BINARY = 'B' STRING_SET = 'SS' NUMBER_SET = 'NS' BINARY_SET = 'BS' QUERY_OPERATORS = { 'eq': 'EQ', 'lte': 'LE', 'lt': 'LT', 'gte': 'GE', 'gt': 'GT', 'beginswith': 'BEGINS_WITH', 'between': 'BETWEEN', } FILTER_OPERATORS = { 'eq': 'EQ', 'ne': 'NE', 'lte': 'LE', 'lt': 'LT', 'gte': 'GE', 'gt': 'GT', # FIXME: Is this necessary? i.e. ``whatever__null=False`` 'nnull': 'NOT_NULL', 'null': 'NULL', 'contains': 'CONTAINS', 'ncontains': 'NOT_CONTAINS', 'beginswith': 'BEGINS_WITH', 'in': 'IN', 'between': 'BETWEEN', }
Upload File
Create Folder