visualizeConnectData/scripts/lex/deploy.py [4:18]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
sys.path.insert(1, '../packages')

import logging
import os
import boto3
from botocore.exceptions import ClientError
import zipfile
import time

LOG_FILE = 'deploy.log'
if os.path.exists(LOG_FILE):
    os.remove(LOG_FILE)
    
logging.basicConfig(filename=LOG_FILE, level=logging.INFO, format='%(asctime)s %(levelname)s:%(message)s')
logger = logging.getLogger(__name__)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



visualizeConnectData/scripts/quicksight/deploy.py [4:19]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
sys.path.insert(1, '../packages')

import logging
import os
import uuid
import time
import re
import boto3
from botocore.exceptions import ClientError

LOG_FILE = 'deploy.log'
if os.path.exists(LOG_FILE):
    os.remove(LOG_FILE)
    
logging.basicConfig(filename=LOG_FILE, level=logging.INFO, format='%(asctime)s %(levelname)s:%(message)s')
logger = logging.getLogger(__name__)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



