You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are some obvious but fairly small things we could do here:
get rid of remaining sys.version_info < (3, 7) (can't get rid of the conditional because we want type checking to have that path, but we can get rid of the version check)
get rid of _plotly_future_ and the stub modules that reference it just to throw an error. We've been in this future for plenty long.
Some attribute descriptions are absurdly long, like do we really need to list all the CSS named colors in the docstring for every color? Wouldn't it be a better UX to link to that list at some URL? Similarly fonts no longer need the whole list of what fonts are supported on Chart Studio Cloud.
The bigger thing will be to reduce duplication by subclassing attributes rather than repeating the same definition a million times. Like there are only a few flavors of font attributes - whether they support arrays or not, maybe which sub-attributes they support? Also for error handling seems there are different base classes for traces and layout, but it's still a small list. If we could detect which flavor we have and inherit from a base class the definition should in principle be as simple as:
Finally, I wonder if we can get rid of all the explicit *src properties? These only useful to Chart Studio users, and even then I suspect barely anyone uses them. We probably don't want to remove this support entirely, but I wonder if we can just handle them in __setattr__/__getattr__ so they continue to function, without all the extra overhead of explicitly defining them?
I'm going to check about turning all the generated code into a zip file (at setup stage or before) and using zipimport. Then the unnecessarycomments are not really interesting and mostly get comrpessed away.
The plotly.py bundle is approx. 19 Mbyte, which will be a problem for WASM deploys. We should investigate ways to reduce its size.
cf plotly/dash#3050 and #3294
The text was updated successfully, but these errors were encountered: