You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GPT-Brain/modules/utilities.py

141 lines
4.2 KiB
Python

1 year ago
import json
import os
import glob
1 year ago
# def extract_string(text, delimiter):
# # Extract string between delimiters
# start_index = text.index(delimiter) + len(delimiter)
# end_index = text.index(delimiter, start_index)
# return text[start_index:end_index]
1 year ago
def extract_string(text, delimiter, force=False, join=True, split_mode=False):
# Check if delimiter is not in text
if delimiter not in text:
# If force is True, return empty string; otherwise, return the original text
return '' if force else text
# If split_mode is True, split text by delimiter and return the resulting list
elif split_mode:
return text.split(delimiter)
1 year ago
else:
substring = text.split(delimiter)
result = []
# Split text by delimiter and select every second item starting from the second one
for i in range(1, len(substring), 2):
result.append(substring[i])
# If join is True, join the resulting list into a string and return it; otherwise, return the list
return ''.join(result) if join else result
1 year ago
def remove_oldest_file(directory, max_files):
files = glob.glob(f'{directory}/*')
if len(files) >= max_files:
oldest_file = min(files, key=os.path.getctime)
os.remove(oldest_file)
def create_path_not_exist(path):
directory = os.path.dirname(path)
if not os.path.exists(directory):
os.makedirs(directory)
1 year ago
1 year ago
def create_file_not_exist(path):
if not os.path.exists(path):
write_file('', path)
1 year ago
def read_file(filepath, delimiter='', force=False):
with open(filepath, 'r', encoding='utf-8') as file:
data = file.read()
return parse_data(data, delimiter, force)
1 year ago
def parse_data(data, delimiter='', force=False):
if delimiter != '':
data = extract_string(data, delimiter, force)
return data
1 year ago
def read_files(file_dir, delimiter='', force=False, single_string=True):
1 year ago
contents = []
# Read all files in a directory
for root, dirs, files in os.walk(file_dir):
for file in files:
# extract file path
filepath = os.path.join(root, file)
# extract filename with extension
filename = os.path.basename(filepath)
# extract filename without extension
filename = os.path.splitext(filename)[0]
file_data = read_file(filepath, delimiter, force)
if force and file_data == '':
continue
1 year ago
content = [f'[{filename}]', file_data]
contents.append('\n\n'.join(content))
if single_string:
result = '\n\n\n\n'.join(contents)
else:
result = contents
1 year ago
return result
1 year ago
def write_file(content, filepath, mode='w'):
create_path_not_exist(filepath)
1 year ago
with open(filepath, mode, encoding='utf-8') as file:
file.write(content)
1 year ago
def create_json_not_exist(filepath, initial_value={}):
if not os.path.exists(filepath):
write_json_file(initial_value, filepath)
1 year ago
def write_json_file(content, filepath, mode='w'):
with open(filepath, mode) as file:
json.dump(content, file, indent=2)
def read_json_file(filepath):
try:
with open(filepath, 'r') as file:
return json.load(file)
except FileNotFoundError:
return {}
1 year ago
def read_json_at(filepath, key, default_value=''):
1 year ago
data = read_json_file(filepath)
try:
# if key is string, check if it is boolean or numeric
if isinstance(data[key], str):
if data[key] in ['true', 'false']:
return data[key] == 'true'
elif data[key].isnumeric():
return int(data[key])
elif data[key].replace('.', '', 1).isnumeric():
return float(data[key])
else:
return data[key]
else:
return data[key]
except KeyError:
# if key not found, create key with default value
data[key] = default_value
write_json_file(data, filepath)
1 year ago
return data[key]
1 year ago
def update_json(filepath, key, value):
data = read_json_file(filepath)
data[key] = value
write_json_file(data, filepath)
def contains(list, item):
result = list.count(item)
return result > 0