FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
plotly.py/plotly/__init__.py at master · thybu-github/plotly.py · GitHub
thybu-github
/
plotly.py
Public
forked from
plotly/plotly.py
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
plotly.py
/
plotly
/
__init__.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
33 lines (19 loc) · 801 Bytes
Breadcrumbs
plotly.py
/
plotly
/
__init__.py
Copy path
File metadata and controls
33 lines (19 loc) · 801 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"""
https://plot.ly/python/
Plotly's Python API allows users to programmatically access Plotly's
server resources.
This package is organized as follows:
Subpackages:
- plotly: all functionality that requires access to Plotly's servers
- graph_objs: objects for designing figures and visualizing data
- matplotlylib: tools to convert matplotlib figures
Modules:
- tools: some helpful tools that do not require access to Plotly's servers
- utils: functions that you probably won't need, but that subpackages use
- version: holds the current API version
- exceptions: defines our custom exception classes
"""
from
__future__
import
absolute_import
from
plotly
import
(
plotly
,
graph_objs
,
grid_objs
,
tools
,
utils
,
session
,
offline
)
from
plotly
.
version
import
__version__
Back
|
FazBrowse Home
|
New Git URL