forked from sinaptik-ai/pandas-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpath.py
66 lines (53 loc) · 2.03 KB
/
path.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import os
from pandasai.exceptions import InvalidWorkspacePathError
def find_project_root(filename=None):
"""
Check if Custom workspace path provide use that otherwise iterate to
find project root
"""
if "PANDASAI_WORKSPACE" in os.environ:
workspace_path = os.environ["PANDASAI_WORKSPACE"]
if (
workspace_path
and os.path.exists(workspace_path)
and os.path.isdir(workspace_path)
):
return workspace_path
raise InvalidWorkspacePathError(
"PANDASAI_WORKSPACE does not point to a valid directory"
)
# Get the path of the file that is be
# ing executed
current_file_path = os.path.abspath(os.getcwd())
# Navigate back until we either find a $filename file or there is no parent
# directory left.
root_folder = current_file_path
while True:
# Custom way to identify the project root folder
if filename is not None:
env_file_path = os.path.join(root_folder, filename)
if os.path.isfile(env_file_path):
break
# Most common ways to identify a project root folder
if (
os.path.isfile(os.path.join(root_folder, "pyproject.toml"))
or os.path.isfile(os.path.join(root_folder, "setup.py"))
or os.path.isfile(os.path.join(root_folder, "requirements.txt"))
or os.path.isfile(os.path.join(root_folder, "pandasai.json"))
):
break
parent_folder = os.path.dirname(root_folder)
if parent_folder == root_folder:
# if project root is not found return cwd
return os.getcwd()
root_folder = parent_folder
return root_folder
def find_closest(filename):
return os.path.join(find_project_root(filename), filename)
def create_directory(path):
if not os.path.exists(path):
# Create the directory
try:
os.makedirs(path)
except OSError as e:
raise OSError(f"Error creating directory: {e}") from e