phasorpy 0.7__cp314-cp314t-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- phasorpy/__init__.py +9 -0
- phasorpy/__main__.py +7 -0
- phasorpy/_phasorpy.cpython-314t-darwin.so +0 -0
- phasorpy/_phasorpy.pyx +2688 -0
- phasorpy/_typing.py +77 -0
- phasorpy/_utils.py +786 -0
- phasorpy/cli.py +160 -0
- phasorpy/cluster.py +200 -0
- phasorpy/color.py +589 -0
- phasorpy/component.py +707 -0
- phasorpy/conftest.py +38 -0
- phasorpy/cursor.py +500 -0
- phasorpy/datasets.py +722 -0
- phasorpy/experimental.py +310 -0
- phasorpy/io/__init__.py +138 -0
- phasorpy/io/_flimlabs.py +360 -0
- phasorpy/io/_leica.py +331 -0
- phasorpy/io/_ometiff.py +444 -0
- phasorpy/io/_other.py +890 -0
- phasorpy/io/_simfcs.py +652 -0
- phasorpy/lifetime.py +2058 -0
- phasorpy/phasor.py +2018 -0
- phasorpy/plot/__init__.py +27 -0
- phasorpy/plot/_functions.py +723 -0
- phasorpy/plot/_lifetime_plots.py +563 -0
- phasorpy/plot/_phasorplot.py +1507 -0
- phasorpy/plot/_phasorplot_fret.py +561 -0
- phasorpy/py.typed +0 -0
- phasorpy/utils.py +172 -0
- phasorpy-0.7.dist-info/METADATA +74 -0
- phasorpy-0.7.dist-info/RECORD +35 -0
- phasorpy-0.7.dist-info/WHEEL +6 -0
- phasorpy-0.7.dist-info/entry_points.txt +2 -0
- phasorpy-0.7.dist-info/licenses/LICENSE.txt +21 -0
- phasorpy-0.7.dist-info/top_level.txt +1 -0
@@ -0,0 +1,27 @@
|
|
1
|
+
"""Plot phasor coordinates and related data.
|
2
|
+
|
3
|
+
The ``phasorpy.plot`` module provides functions and classes to visualize
|
4
|
+
phasor coordinates and related data using the
|
5
|
+
`matplotlib <https://matplotlib.org/>`_ library.
|
6
|
+
|
7
|
+
"""
|
8
|
+
|
9
|
+
from __future__ import annotations
|
10
|
+
|
11
|
+
__all__: list[str] = []
|
12
|
+
|
13
|
+
from .._utils import init_module
|
14
|
+
from ._functions import *
|
15
|
+
from ._lifetime_plots import *
|
16
|
+
from ._phasorplot import *
|
17
|
+
from ._phasorplot_fret import *
|
18
|
+
|
19
|
+
# The `init_module()` function dynamically populates the `__all__` list with
|
20
|
+
# all public symbols imported from submodules or defined in this module.
|
21
|
+
# Any name not starting with an underscore will be automatically exported
|
22
|
+
# when using "from phasorpy.plot import *"
|
23
|
+
|
24
|
+
init_module(globals())
|
25
|
+
del init_module
|
26
|
+
|
27
|
+
# flake8: noqa: F401, F403
|