plotly.py
plotly.py copied to clipboard
With newer versions of orjson, users need to specify the json engine explicitly (bug?)
Hey
I found out I get an
AttributeError: partially initialized module 'orjson' has no attribute 'OPT_NON_STR_KEYS'
if I don't specify this
plotly.io.json.config.default_engine = 'orjson'
when using orjson v3.6.6 (latest as of 25jan2022)
Also, additional note for whoever might have this issue: you don't need to uninstall orjson if you don't want to use it. just set the engine to 'json' explicitly.
I'm using orjson because of the performance claims, although I ran some tests switching between the 2 engines and they seem to yield the same results: using go.Candlestick with 10000 candlesticks and some 4-5 indicators, getting ~0.8sec in each case for creating the plot. My purpose is to improve the dash server performace, but it seems it makes no difference (the web page still renders slower than the ticker even with 600 candles)
+1
+1. App is presenting problems after a while. Not sure what's going on.
+1. Happens to me when I use streamlit's st.plotly_chart (plotly v5.18.0)
File "/.venv/lib/python3.11/site-packages/plotly/io/_json.py", line 146, in to_json_plotly opts = orjson.OPT_NON_STR_KEYS | orjson.OPT_SERIALIZE_NUMPY
This line of code may cause this issue
A fix may be using a regular import rather than using importlib to manage this package.
To reproduce using Dash:
pip install orjson- Make a Dash app
- Trigger reload
If you look at network requests, it'll show this exact error.