Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/omkarcloud/botasaurus
/ read_json
Function
read_json
botasaurus/utils.py:40–43 ·
view source on GitHub ↗
(path)
Source
from the content-addressed store, hash-verified
38
39
40
def
read_json(path):
41
with
open(path,
'r'
, encoding=
"utf-8"
)
as
fp:
42
data = json.load(fp)
43
return
data
44
45
def
read_file(path):
46
with
open(path,
'r'
, encoding=
"utf-8"
)
as
fp:
Callers
4
_get
Function · 0.70
safe_get
Function · 0.70
safe_corrupted_get
Function · 0.70
_get
Function · 0.50
Calls
1
load
Method · 0.45
Tested by
no test coverage detected