This commit is contained in:
Oleg Sheynin 2025-08-15 20:51:03 -04:00
parent 03e46c8254
commit 41f5d95bbc
2 changed files with 17 additions and 6 deletions

View File

@ -1,16 +1,16 @@
{ {
"folders": [ "folders": [
{ {
"path": "." "path": "../cvttpy_tools"
}, },
{ {
"path": "../cvttpy_trading" "path": "../cvttpy_trading"
}, },
{ {
"path": "../cvttpy_tools" "path": "."
} }
], ],
"settings": { "settings": {
"workbench.colorTheme": "Solarized Dark" "workbench.colorTheme": "Monokai Night"
} }
} }

View File

@ -0,0 +1,11 @@
#!/bin/bash
Python=${HOME}/.pyenv/python3.12-venv/bin/python3
RootDir=$(realpath $(dirname ${0})/../../../)
export PYTHONPATH=${RootDir}
Script=${RootDir}/cli-utils/coinbase/get_futures_list.py
Cmd="${Python} ${Script} | ${Python} -m json.tool"
echo ${Cmd}
eval ${Cmd}