Skip to content

Commit e2bed74

Browse files
committed
Almost-ready release for 1.0.
1 parent 3eeb20a commit e2bed74

51 files changed

Lines changed: 5242 additions & 1614 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitmodules

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[submodule "plotly/mplexporter"]
2+
path = plotly/mplexporter
3+
url = git://github.com/mpld3/mplexporter.git
4+
[submodule "plotly/graph_reference"]
5+
path = plotly/graph_reference
6+
url = https://github.com/plotly/graph_reference.git

makefile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
all : pull_subs install
2+
3+
sync_mplexporter : plotly/mplexporter
4+
rsync -r plotly/mplexporter/mplexporter plotly/matplotlylib/
5+
6+
install : sync_mplexporter
7+
python setup.py install
8+
9+
pull_subs : plotly/mplexporter plotly/graph_reference
10+
git submodule foreach 'git pull origin master'

plotly/__init__.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
from .version import __version__
2-
from .plotly import signup
3-
from .plotly import display
4-
from .plotly import embed
5-
from .plotly import plotly
6-
from .plotly import stream
1+
from . version import __version__
2+
import graph_objs
3+
import plotly
4+
import tools

plotly/_graph_objs.py

Lines changed: 0 additions & 279 deletions
This file was deleted.

plotly/exceptions.py

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
"""
2+
exceptions
3+
==========
4+
5+
A module that contains plotly's exception heirarchy.
6+
7+
"""
8+
9+
10+
class PlotlyError(Exception):
11+
pass
12+
13+
class PlotlyInstantiationError(PlotlyError):
14+
pass
15+
16+
class PlotlyInvalidKeyError(PlotlyError):
17+
pass
18+
19+
20+
class PlotlyInvalidListItemError(PlotlyError):
21+
pass
22+
23+
24+
class PlotlyConnectionError(PlotlyError):
25+
pass
26+
27+
28+
class PlotlyCredentialError(PlotlyError):
29+
pass
30+
31+
32+
class PlotlyAccountError(PlotlyError):
33+
pass
34+
35+
36+
class PlotlyRateLimitError(PlotlyError):
37+
pass

0 commit comments

Comments
 (0)