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
import datetime | |
import json | |
import time | |
import cbpro.authenticated_client as cbpro_authenticated_client | |
class Extended_AuthenticatedClient(cbpro_authenticated_client.AuthenticatedClient): | |
def __init__(self, key, b64secret, passphrase): |
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
import os | |
import pickle | |
class DynamoDataFrame: | |
def render_fhandle(self, mode='wb'): | |
return open(file=self.full_fpath, mode=mode) | |
def __init__(self, full_fpath=None, df=None): |