browser-use-oauth/lib/utils/browser_use/sensitive_data.py
imnyang 1b65693ba5 Add function to read sensitive data from .sensitive.json file
- Implemented GetSensitiveData function to load sensitive data from a JSON file.
- Added error handling for missing file scenario.
2025-06-18 21:42:06 +09:00

21 lines
No EOL
544 B
Python

# read json file .sensitive.json
import json
import os
def GetSensitiveData():
"""
Reads sensitive data from a .sensitive.json file in the current directory.
Returns:
dict: A dictionary containing the sensitive data.
"""
file_path = os.path.join(os.getcwd(), '.sensitive.json')
if not os.path.exists(file_path):
raise FileNotFoundError(f"The file {file_path} does not exist.")
with open(file_path, 'r') as file:
sensitive_data = json.load(file)
return sensitive_data