Returns the backend used for data handling.
Source code in hdxms_datasets/backend.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 | def get_backend():
"""
Returns the backend used for data handling.
"""
try:
import polars # NOQA: F401 # type: ignore[import]
return "polars"
except ImportError:
pass
try:
import pandas # NOQA: F401 # type: ignore[import]
return "pandas"
except ImportError:
pass
try:
import modin # NOQA: F401 # type: ignore[import]
return "modin"
except ImportError:
pass
try:
import pyarrow # NOQA: F401 # type: ignore[import]
return "pyarrow"
except ImportError:
pass
raise ImportError("No suitable backend found. Please install pandas, polars, pyarrow or modin.")
|