This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from dynamo.base import DynamoBase | |
from samples.domain.schema import TABLE_NAME, DOMAIN, URL | |
class DynamoDomain(DynamoBase): | |
def get_params(self, key): | |
params = { | |
'TableName': TABLE_NAME, | |
'Key': { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from dynamo.base import DynamoBase | |
from samples.log.schema import TABLE_NAME, TIMESTAMP, STATUS, INDEX_STATUS_KEY | |
class DynamoLog(DynamoBase): | |
def get_params(self, key): | |
params = { | |
'TableName': TABLE_NAME, | |
'Key': { |
OlderNewer