Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Yori Fournier
myplotlib
Commits
30866e20
Commit
30866e20
authored
Mar 22, 2018
by
Yori Fournier
Browse files
renamed mytool module to mpl_toolbox
parent
fe95c938
Changes
24
Hide whitespace changes
Inline
Side-by-side
__init__.py
View file @
30866e20
...
...
@@ -184,19 +184,19 @@ if D_HIERARCHY in ('CLIENT', 'client', 'LOCAL', 'local'):
print
(
SEVR
+
"""The backend you choosed is not
supported interactive mode not available"""
)
# m
yTool
.*: interface functions to use myplotlib interactively
# m
pl_tool_box
.*: interface functions to use myplotlib interactively
# from .m
y
tool import print2file # need to make tools for server ?? or just put them in client/local
#from .m
y
tool import FigOneAxes
# from .m
pl_
tool
_box
import print2file # need to make tools for server ?? or just put them in client/local
#from .m
pl_
tool
_box
import FigOneAxes
# if D_HIERARCHY in ('CLIENT', 'client', 'LOCAL', 'local'):
# from .m
y
tool import print2file # need to make tools for server ?? or just put them in client/local
# from .m
y
tool import FigOneAxes
# from .m
y
tool import window_exists, getCurrentWindowIDs
# from .m
y
tool import print2file, print2screen, printListCurrentWindows
# from .m
y
tool import getWindow, getFigOnWindow, drawFigOnWindow, giveDataToWindow
# from .m
y
tool import closeWindow, closeAllWindows
# from .m
pl_
tool
_box
import print2file # need to make tools for server ?? or just put them in client/local
# from .m
pl_
tool
_box
import FigOneAxes
# from .m
pl_
tool
_box
import window_exists, getCurrentWindowIDs
# from .m
pl_
tool
_box
import print2file, print2screen, printListCurrentWindows
# from .m
pl_
tool
_box
import getWindow, getFigOnWindow, drawFigOnWindow, giveDataToWindow
# from .m
pl_
tool
_box
import closeWindow, closeAllWindows
# TESTS ----------------------------------------------------------------
...
...
m
y
tool/__init__.py
→
m
pl_
tool
box
/__init__.py
View file @
30866e20
File moved
m
y
tool/axColorBar.py
→
m
pl_
tool
box
/axColorBar.py
View file @
30866e20
File moved
m
y
tool/ax_2d_plots.py
→
m
pl_
tool
box
/ax_2d_plots.py
View file @
30866e20
File moved
m
y
tool/figOneAxes.py
→
m
pl_
tool
box
/figOneAxes.py
View file @
30866e20
File moved
m
y
tool/formatter.py
→
m
pl_
tool
box
/formatter.py
View file @
30866e20
File moved
m
y
tool/mpl_tools.py
→
m
pl_
tool
box
/mpl_tools.py
View file @
30866e20
File moved
m
y
tool/mpl_weighted_grid.py
→
m
pl_
tool
box
/mpl_weighted_grid.py
View file @
30866e20
File moved
m
y
tool/mpl_wrappers.py
→
m
pl_
tool
box
/mpl_wrappers.py
View file @
30866e20
File moved
m
y
tool/tests/__init__.py
→
m
pl_
tool
box
/tests/__init__.py
View file @
30866e20
File moved
m
y
tool/tests/__main__.py
→
m
pl_
tool
box
/tests/__main__.py
View file @
30866e20
File moved
m
y
tool/tests/test_ax2dplots.py
→
m
pl_
tool
box
/tests/test_ax
_
2d
_
plots.py
View file @
30866e20
...
...
@@ -6,7 +6,7 @@ import unittest
sys
.
path
.
append
(
'../../'
)
from
myplotlib
import
MyData
from
myplotlib.m
y
tool
import
FormatterListToLine
,
FormatterArrayToLines
,
FormatterAppendToLines
from
myplotlib.m
pl_
tool
box
import
FormatterListToLine
,
FormatterArrayToLines
,
FormatterAppendToLines
class
FormatterListToLineTestCase
(
unittest
.
TestCase
):
...
...
m
y
tool/tests/test_formatter.py
→
m
pl_
tool
box
/tests/test_formatter.py
View file @
30866e20
...
...
@@ -6,7 +6,7 @@ import unittest
sys
.
path
.
append
(
'../../'
)
from
myplotlib
import
MplData
from
myplotlib.m
y
tool
import
FormatterListToLine
,
FormatterArrayToLines
,
FormatterAppendToLines
from
myplotlib.m
pl_
tool
box
import
FormatterListToLine
,
FormatterArrayToLines
,
FormatterAppendToLines
class
FormatterListToLineTestCase
(
unittest
.
TestCase
):
...
...
m
y
tool/tests/test_weighted_grid.py
→
m
pl_
tool
box
/tests/test_weighted_grid.py
View file @
30866e20
...
...
@@ -6,7 +6,7 @@ import unittest
sys
.
path
.
append
(
'../../'
)
from
myplotlib
import
EmptyFig
,
MplData
from
myplotlib.m
y
tool
import
WeightedGrid
,
Ax2dPlots
from
myplotlib.m
pl_
tool
box
import
WeightedGrid
,
Ax2dPlots
class
WeightedGridTestCase
(
unittest
.
TestCase
):
...
...
m
y
tool/tutorials/__init__.py
→
m
pl_
tool
box
/tutorials/__init__.py
View file @
30866e20
File moved
m
y
tool/tutorials/__main__.py
→
m
pl_
tool
box
/tutorials/__main__.py
View file @
30866e20
File moved
m
y
tool/tutorials/run_all.sh
→
m
pl_
tool
box
/tutorials/run_all.sh
View file @
30866e20
File moved
m
y
tool/tutorials/test_tutorials.py
→
m
pl_
tool
box
/tutorials/test_tutorials.py
View file @
30866e20
File moved
m
y
tool/tutorials/tuto000.py
→
m
pl_
tool
box
/tutorials/tuto000.py
View file @
30866e20
...
...
@@ -6,7 +6,7 @@ def script(with_print=False):
sys
.
path
.
append
(
'../../'
)
from
myplotlib.m
y
tool
import
Ax2dPlots
from
myplotlib.m
pl_
tool
box
import
Ax2dPlots
from
myplotlib
import
EmptyFig
,
MplData
data
=
[
0.1
,
0.2
,
0.4
,
0.6
,
1.
,
0.9
,
1.2
,
1.3
,
1.2
]
...
...
m
y
tool/tutorials/tuto001.py
→
m
pl_
tool
box
/tutorials/tuto001.py
View file @
30866e20
...
...
@@ -6,7 +6,7 @@ def script(with_print=False):
sys
.
path
.
append
(
'../../'
)
from
myplotlib.m
y
tool
import
Ax2dPlots
,
FormatterArrayToLines
from
myplotlib.m
pl_
tool
box
import
Ax2dPlots
,
FormatterArrayToLines
from
myplotlib
import
EmptyFig
,
MplData
,
VerticalGrid
# rawdata set
...
...
Prev
1
2
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment