diff options
author | sotech117 <michael_foiani@brown.edu> | 2025-07-31 17:27:24 -0400 |
---|---|---|
committer | sotech117 <michael_foiani@brown.edu> | 2025-07-31 17:27:24 -0400 |
commit | 5bf22fc7e3c392c8bd44315ca2d06d7dca7d084e (patch) | |
tree | 8dacb0f195df1c0788d36dd0064f6bbaa3143ede /venv/bin/plotly_get_chrome | |
parent | b832d364da8c2efe09e3f75828caf73c50d01ce3 (diff) |
add code for analysis of data
Diffstat (limited to 'venv/bin/plotly_get_chrome')
-rwxr-xr-x | venv/bin/plotly_get_chrome | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/venv/bin/plotly_get_chrome b/venv/bin/plotly_get_chrome new file mode 100755 index 0000000..5db5487 --- /dev/null +++ b/venv/bin/plotly_get_chrome @@ -0,0 +1,8 @@ +#!/Users/sotech117/Documents/invest/fin-backtesting/venv/bin/python +# -*- coding: utf-8 -*- +import re +import sys +from plotly.io._kaleido import get_chrome +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(get_chrome()) |