add plot module proto

This commit is contained in:
xmatthias 2018-06-23 14:18:30 +02:00 committed by Matthias
parent 2369161bb0
commit 583d70ec9c
2 changed files with 13 additions and 0 deletions

View File

View File

@ -0,0 +1,13 @@
import logging
logger = logging.getLogger(__name__)
try:
from plotly import tools
from plotly.offline import plot
import plotly.graph_objs as go
except ImportError:
logger.exception("Module plotly not found \n Please install using `pip install plotly`")
exit()