import pyodbc, os, json, csv
|
|
from datetime import datetime
|
|
|
|
# 루트폴더 지정
|
|
path_root = os.path.dirname(os.path.abspath('__file__'))
|
|
|
|
with open(os.path.join(path_root, 'configs', 'config_revised.json'), 'r') as config_file:
|
|
config = json.load(config_file)
|
|
|
|
starting_time = datetime(2024, 7, 17, 18)
|
|
print(starting_time)
|