meerschaum 2.2.5.dev3__py3-none-any.whl → 2.2.6__py3-none-any.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.
- meerschaum/__init__.py +4 -1
- meerschaum/_internal/arguments/_parser.py +13 -2
- meerschaum/_internal/docs/index.py +523 -26
- meerschaum/_internal/term/__init__.py +2 -2
- meerschaum/actions/bootstrap.py +13 -14
- meerschaum/actions/python.py +11 -8
- meerschaum/actions/register.py +130 -32
- meerschaum/actions/show.py +79 -71
- meerschaum/actions/stop.py +11 -11
- meerschaum/api/dash/callbacks/login.py +21 -13
- meerschaum/api/dash/pages/login.py +2 -2
- meerschaum/api/routes/_login.py +5 -5
- meerschaum/config/__init__.py +8 -1
- meerschaum/config/_paths.py +20 -2
- meerschaum/config/_version.py +1 -1
- meerschaum/config/paths.py +21 -2
- meerschaum/config/static/__init__.py +1 -0
- meerschaum/connectors/Connector.py +7 -2
- meerschaum/connectors/__init__.py +7 -5
- meerschaum/connectors/api/APIConnector.py +7 -2
- meerschaum/connectors/api/_actions.py +23 -31
- meerschaum/connectors/api/_uri.py +5 -5
- meerschaum/core/Pipe/__init__.py +7 -3
- meerschaum/core/Pipe/_data.py +23 -15
- meerschaum/core/Pipe/_deduplicate.py +1 -1
- meerschaum/core/Pipe/_dtypes.py +5 -0
- meerschaum/core/Pipe/_fetch.py +18 -16
- meerschaum/core/Pipe/_sync.py +20 -15
- meerschaum/plugins/_Plugin.py +6 -6
- meerschaum/plugins/__init__.py +1 -1
- meerschaum/utils/daemon/RotatingFile.py +15 -16
- meerschaum/utils/dataframe.py +12 -4
- meerschaum/utils/debug.py +9 -15
- meerschaum/utils/formatting/__init__.py +13 -12
- meerschaum/utils/misc.py +117 -11
- meerschaum/utils/packages/__init__.py +7 -1
- meerschaum/utils/typing.py +1 -0
- meerschaum/utils/venv/__init__.py +5 -1
- meerschaum/utils/warnings.py +8 -1
- meerschaum/utils/yaml.py +2 -2
- {meerschaum-2.2.5.dev3.dist-info → meerschaum-2.2.6.dist-info}/METADATA +1 -1
- {meerschaum-2.2.5.dev3.dist-info → meerschaum-2.2.6.dist-info}/RECORD +48 -48
- {meerschaum-2.2.5.dev3.dist-info → meerschaum-2.2.6.dist-info}/WHEEL +1 -1
- {meerschaum-2.2.5.dev3.dist-info → meerschaum-2.2.6.dist-info}/LICENSE +0 -0
- {meerschaum-2.2.5.dev3.dist-info → meerschaum-2.2.6.dist-info}/NOTICE +0 -0
- {meerschaum-2.2.5.dev3.dist-info → meerschaum-2.2.6.dist-info}/entry_points.txt +0 -0
- {meerschaum-2.2.5.dev3.dist-info → meerschaum-2.2.6.dist-info}/top_level.txt +0 -0
- {meerschaum-2.2.5.dev3.dist-info → meerschaum-2.2.6.dist-info}/zip-safe +0 -0
meerschaum/utils/dataframe.py
CHANGED
@@ -8,13 +8,21 @@ Utility functions for working with DataFrames.
|
|
8
8
|
|
9
9
|
from __future__ import annotations
|
10
10
|
from datetime import datetime
|
11
|
+
|
12
|
+
import meerschaum as mrsm
|
11
13
|
from meerschaum.utils.typing import (
|
12
14
|
Optional, Dict, Any, List, Hashable, Generator,
|
13
|
-
Iterator, Iterable, Union,
|
15
|
+
Iterator, Iterable, Union, TYPE_CHECKING,
|
14
16
|
)
|
15
17
|
|
18
|
+
if TYPE_CHECKING:
|
19
|
+
pd, dask = mrsm.attempt_import('pandas', 'dask')
|
20
|
+
|
16
21
|
|
17
|
-
def add_missing_cols_to_df(
|
22
|
+
def add_missing_cols_to_df(
|
23
|
+
df: 'pd.DataFrame',
|
24
|
+
dtypes: Dict[str, Any],
|
25
|
+
) -> 'pd.DataFrame':
|
18
26
|
"""
|
19
27
|
Add columns from the dtypes dictionary as null columns to a new DataFrame.
|
20
28
|
|
@@ -723,7 +731,7 @@ def get_datetime_bound_from_df(
|
|
723
731
|
df: Union['pd.DataFrame', dict, list],
|
724
732
|
datetime_column: str,
|
725
733
|
minimum: bool = True,
|
726
|
-
) -> Union[int,
|
734
|
+
) -> Union[int, datetime, None]:
|
727
735
|
"""
|
728
736
|
Return the minimum or maximum datetime (or integer) from a DataFrame.
|
729
737
|
|
@@ -818,7 +826,7 @@ def chunksize_to_npartitions(chunksize: Optional[int]) -> int:
|
|
818
826
|
|
819
827
|
|
820
828
|
def df_from_literal(
|
821
|
-
pipe: Optional[
|
829
|
+
pipe: Optional[mrsm.Pipe] = None,
|
822
830
|
literal: str = None,
|
823
831
|
debug: bool = False
|
824
832
|
) -> 'pd.DataFrame':
|
meerschaum/utils/debug.py
CHANGED
@@ -93,22 +93,16 @@ def _checkpoint(
|
|
93
93
|
) -> None:
|
94
94
|
"""If the `_progress` and `_task` objects are provided, increment the task by one step.
|
95
95
|
If `_total` is provided, update the total instead.
|
96
|
-
|
97
|
-
Parameters
|
98
|
-
----------
|
99
|
-
_progress: Optional['rich.progress.Progress'] :
|
100
|
-
(Default value = None)
|
101
|
-
_task: Optional[int] :
|
102
|
-
(Default value = None)
|
103
|
-
_total: Optional[int] :
|
104
|
-
(Default value = None)
|
105
|
-
**kw :
|
106
|
-
|
107
|
-
|
108
|
-
Returns
|
109
|
-
-------
|
110
|
-
|
111
96
|
"""
|
112
97
|
if _progress is not None and _task is not None:
|
113
98
|
_kw = {'total': _total} if _total is not None else {'advance': 1}
|
114
99
|
_progress.update(_task, **_kw)
|
100
|
+
|
101
|
+
|
102
|
+
def trace(browser: bool = True):
|
103
|
+
"""
|
104
|
+
Open a web-based debugger to trace the execution of the program.
|
105
|
+
"""
|
106
|
+
from meerschaum.utils.packages import attempt_import
|
107
|
+
heartrate = attempt_import('heartrate')
|
108
|
+
heartrate.trace(files=heartrate.files.all, browser=browser)
|
@@ -291,16 +291,16 @@ def print_tuple(
|
|
291
291
|
|
292
292
|
|
293
293
|
def print_options(
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
294
|
+
options: Optional[Dict[str, Any]] = None,
|
295
|
+
nopretty: bool = False,
|
296
|
+
no_rich: bool = False,
|
297
|
+
name: str = 'options',
|
298
|
+
header: Optional[str] = None,
|
299
|
+
num_cols: Optional[int] = None,
|
300
|
+
adjust_cols: bool = True,
|
301
|
+
sort_options: bool = False,
|
302
|
+
**kw
|
303
|
+
) -> None:
|
304
304
|
"""
|
305
305
|
Print items in an iterable as a fancy table.
|
306
306
|
|
@@ -342,7 +342,7 @@ def print_options(
|
|
342
342
|
_options.append(str(o))
|
343
343
|
if sort_options:
|
344
344
|
_options = sorted(_options)
|
345
|
-
_header = f"
|
345
|
+
_header = f"\nAvailable {name}" if header is None else header
|
346
346
|
|
347
347
|
if num_cols is None:
|
348
348
|
num_cols = 8
|
@@ -388,7 +388,7 @@ def print_options(
|
|
388
388
|
|
389
389
|
if _header is not None:
|
390
390
|
table = Table(
|
391
|
-
title =
|
391
|
+
title = _header,
|
392
392
|
box = box.SIMPLE,
|
393
393
|
show_header = False,
|
394
394
|
show_footer = False,
|
@@ -467,6 +467,7 @@ def fill_ansi(string: str, style: str = '') -> str:
|
|
467
467
|
|
468
468
|
return rich_text_to_str(msg)
|
469
469
|
|
470
|
+
|
470
471
|
def __getattr__(name: str) -> str:
|
471
472
|
"""
|
472
473
|
Lazily load module-level variables.
|
meerschaum/utils/misc.py
CHANGED
@@ -6,6 +6,7 @@ Miscellaneous functions go here
|
|
6
6
|
"""
|
7
7
|
|
8
8
|
from __future__ import annotations
|
9
|
+
import sys
|
9
10
|
from datetime import timedelta, datetime, timezone
|
10
11
|
from meerschaum.utils.typing import (
|
11
12
|
Union,
|
@@ -22,8 +23,11 @@ from meerschaum.utils.typing import (
|
|
22
23
|
Hashable,
|
23
24
|
Generator,
|
24
25
|
Iterator,
|
26
|
+
TYPE_CHECKING,
|
25
27
|
)
|
26
28
|
import meerschaum as mrsm
|
29
|
+
if TYPE_CHECKING:
|
30
|
+
import collections
|
27
31
|
|
28
32
|
__pdoc__: Dict[str, bool] = {
|
29
33
|
'to_pandas_dtype': False,
|
@@ -208,6 +212,7 @@ def parse_config_substitution(
|
|
208
212
|
|
209
213
|
return leading_key[len(leading_key):][len():-1].split(delimeter)
|
210
214
|
|
215
|
+
|
211
216
|
def edit_file(
|
212
217
|
path: Union[pathlib.Path, str],
|
213
218
|
default_editor: str = 'pyvim',
|
@@ -233,7 +238,6 @@ def edit_file(
|
|
233
238
|
Returns
|
234
239
|
-------
|
235
240
|
A bool indicating the file was successfully edited.
|
236
|
-
|
237
241
|
"""
|
238
242
|
import os
|
239
243
|
from subprocess import call
|
@@ -254,7 +258,7 @@ def edit_file(
|
|
254
258
|
|
255
259
|
|
256
260
|
def is_pipe_registered(
|
257
|
-
pipe:
|
261
|
+
pipe: mrsm.Pipe,
|
258
262
|
pipes: PipesDict,
|
259
263
|
debug: bool = False
|
260
264
|
) -> bool:
|
@@ -726,25 +730,53 @@ def replace_password(d: Dict[str, Any], replace_with: str = '*') -> Dict[str, An
|
|
726
730
|
return _d
|
727
731
|
|
728
732
|
|
733
|
+
def filter_arguments(
|
734
|
+
func: Callable[[Any], Any],
|
735
|
+
*args: Any,
|
736
|
+
**kwargs: Any
|
737
|
+
) -> Tuple[Tuple[Any], Dict[str, Any]]:
|
738
|
+
"""
|
739
|
+
Filter out unsupported positional and keyword arguments.
|
740
|
+
|
741
|
+
Parameters
|
742
|
+
----------
|
743
|
+
func: Callable[[Any], Any]
|
744
|
+
The function to inspect.
|
745
|
+
|
746
|
+
*args: Any
|
747
|
+
Positional arguments to filter and pass to `func`.
|
748
|
+
|
749
|
+
**kwargs
|
750
|
+
Keyword arguments to filter and pass to `func`.
|
751
|
+
|
752
|
+
Returns
|
753
|
+
-------
|
754
|
+
The `args` and `kwargs` accepted by `func`.
|
755
|
+
"""
|
756
|
+
args = filter_positionals(func, *args)
|
757
|
+
kwargs = filter_keywords(func, **kwargs)
|
758
|
+
return args, kwargs
|
759
|
+
|
760
|
+
|
729
761
|
def filter_keywords(
|
730
|
-
|
731
|
-
|
732
|
-
|
762
|
+
func: Callable[[Any], Any],
|
763
|
+
**kw: Any
|
764
|
+
) -> Dict[str, Any]:
|
733
765
|
"""
|
734
|
-
Filter out unsupported
|
766
|
+
Filter out unsupported keyword arguments.
|
735
767
|
|
736
768
|
Parameters
|
737
769
|
----------
|
738
770
|
func: Callable[[Any], Any]
|
739
771
|
The function to inspect.
|
740
|
-
|
772
|
+
|
741
773
|
**kw: Any
|
742
774
|
The arguments to be filtered and passed into `func`.
|
743
775
|
|
744
776
|
Returns
|
745
777
|
-------
|
746
778
|
A dictionary of keyword arguments accepted by `func`.
|
747
|
-
|
779
|
+
|
748
780
|
Examples
|
749
781
|
--------
|
750
782
|
```python
|
@@ -766,6 +798,69 @@ def filter_keywords(
|
|
766
798
|
return {k: v for k, v in kw.items() if k in func_params}
|
767
799
|
|
768
800
|
|
801
|
+
def filter_positionals(
|
802
|
+
func: Callable[[Any], Any],
|
803
|
+
*args: Any
|
804
|
+
) -> Tuple[Any]:
|
805
|
+
"""
|
806
|
+
Filter out unsupported positional arguments.
|
807
|
+
|
808
|
+
Parameters
|
809
|
+
----------
|
810
|
+
func: Callable[[Any], Any]
|
811
|
+
The function to inspect.
|
812
|
+
|
813
|
+
*args: Any
|
814
|
+
The arguments to be filtered and passed into `func`.
|
815
|
+
NOTE: If the function signature expects more arguments than provided,
|
816
|
+
the missing slots will be filled with `None`.
|
817
|
+
|
818
|
+
Returns
|
819
|
+
-------
|
820
|
+
A tuple of positional arguments accepted by `func`.
|
821
|
+
|
822
|
+
Examples
|
823
|
+
--------
|
824
|
+
```python
|
825
|
+
>>> def foo(a, b):
|
826
|
+
... return a * b
|
827
|
+
>>> filter_positionals(foo, 2, 4, 6)
|
828
|
+
(2, 4)
|
829
|
+
>>> foo(*filter_positionals(foo, 2, 4, 6))
|
830
|
+
8
|
831
|
+
```
|
832
|
+
|
833
|
+
"""
|
834
|
+
import inspect
|
835
|
+
from meerschaum.utils.warnings import warn
|
836
|
+
func_params = inspect.signature(func).parameters
|
837
|
+
acceptable_args: List[Any] = []
|
838
|
+
|
839
|
+
def _warn_invalids(_num_invalid):
|
840
|
+
if _num_invalid > 0:
|
841
|
+
warn(
|
842
|
+
"Too few arguments were provided. "
|
843
|
+
+ f"{_num_invalid} argument"
|
844
|
+
+ ('s have ' if _num_invalid != 1 else " has ")
|
845
|
+
+ " been filled with `None`.",
|
846
|
+
)
|
847
|
+
|
848
|
+
num_invalid: int = 0
|
849
|
+
for i, (param, val) in enumerate(func_params.items()):
|
850
|
+
if '=' in str(val) or '*' in str(val):
|
851
|
+
_warn_invalids(num_invalid)
|
852
|
+
return tuple(acceptable_args)
|
853
|
+
|
854
|
+
try:
|
855
|
+
acceptable_args.append(args[i])
|
856
|
+
except IndexError:
|
857
|
+
acceptable_args.append(None)
|
858
|
+
num_invalid += 1
|
859
|
+
|
860
|
+
_warn_invalids(num_invalid)
|
861
|
+
return tuple(acceptable_args)
|
862
|
+
|
863
|
+
|
769
864
|
def dict_from_od(od: collections.OrderedDict) -> Dict[Any, Any]:
|
770
865
|
"""
|
771
866
|
Convert an ordered dict to a dict.
|
@@ -974,10 +1069,11 @@ def async_wrap(func):
|
|
974
1069
|
def debug_trace(browser: bool = True):
|
975
1070
|
"""
|
976
1071
|
Open a web-based debugger to trace the execution of the program.
|
1072
|
+
|
1073
|
+
This is an alias import for `meerschaum.utils.debug.debug_trace`.
|
977
1074
|
"""
|
978
|
-
from meerschaum.utils.
|
979
|
-
|
980
|
-
heartrate.trace(files=heartrate.files.all, browser=browser)
|
1075
|
+
from meerschaum.utils.debug import trace
|
1076
|
+
trace(browser=browser)
|
981
1077
|
|
982
1078
|
|
983
1079
|
def items_str(
|
@@ -1554,3 +1650,13 @@ def _get_subaction_names(*args, **kwargs) -> Any:
|
|
1554
1650
|
"""
|
1555
1651
|
from meerschaum.actions import _get_subaction_names as real_function
|
1556
1652
|
return real_function(*args, **kwargs)
|
1653
|
+
|
1654
|
+
|
1655
|
+
_current_module = sys.modules[__name__]
|
1656
|
+
__all__ = tuple(
|
1657
|
+
name
|
1658
|
+
for name, obj in globals().items()
|
1659
|
+
if callable(obj)
|
1660
|
+
and name not in __pdoc__
|
1661
|
+
and getattr(obj, '__module__', None) == _current_module.__name__
|
1662
|
+
)
|
@@ -1849,10 +1849,16 @@ def _get_pip_os_env(color: bool = True):
|
|
1849
1849
|
Return the environment variables context in which `pip` should be run.
|
1850
1850
|
See PEP 668 for why we are overriding the environment.
|
1851
1851
|
"""
|
1852
|
-
import os
|
1852
|
+
import os, sys, platform
|
1853
|
+
python_bin_path = pathlib.Path(sys.executable)
|
1853
1854
|
pip_os_env = os.environ.copy()
|
1855
|
+
path_str = pip_os_env.get('PATH', '') or ''
|
1856
|
+
path_sep = ':' if platform.system() != 'Windows' else ';'
|
1854
1857
|
pip_os_env.update({
|
1855
1858
|
'PIP_BREAK_SYSTEM_PACKAGES': 'true',
|
1856
1859
|
('FORCE_COLOR' if color else 'NO_COLOR'): '1',
|
1857
1860
|
})
|
1861
|
+
if str(python_bin_path) not in path_str:
|
1862
|
+
pip_os_env['PATH'] = str(python_bin_path.parent) + path_sep + path_str
|
1863
|
+
|
1858
1864
|
return pip_os_env
|
meerschaum/utils/typing.py
CHANGED
@@ -616,7 +616,11 @@ def venv_target_path(
|
|
616
616
|
return site_packages_path
|
617
617
|
|
618
618
|
if not inside_venv():
|
619
|
-
|
619
|
+
user_site_packages = site.getusersitepackages()
|
620
|
+
if user_site_packages is None:
|
621
|
+
raise EnvironmentError("Could not determine user site packages.")
|
622
|
+
|
623
|
+
site_path = pathlib.Path(user_site_packages)
|
620
624
|
if not site_path.exists():
|
621
625
|
|
622
626
|
### Windows does not have `os.geteuid()`.
|
meerschaum/utils/warnings.py
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
# vim:fenc=utf-8
|
4
4
|
|
5
5
|
"""
|
6
|
-
Handle all things warnings and errors
|
6
|
+
Handle all things warnings and errors.
|
7
7
|
"""
|
8
8
|
|
9
9
|
from __future__ import annotations
|
@@ -13,6 +13,13 @@ from meerschaum.utils.debug import dprint
|
|
13
13
|
import sys
|
14
14
|
import warnings
|
15
15
|
|
16
|
+
__all__ = (
|
17
|
+
'warn',
|
18
|
+
'info',
|
19
|
+
'error',
|
20
|
+
'dprint',
|
21
|
+
)
|
22
|
+
|
16
23
|
warnings.filterwarnings(
|
17
24
|
"always",
|
18
25
|
category = UserWarning
|
meerschaum/utils/yaml.py
CHANGED
@@ -10,7 +10,7 @@ This is so switching between PyYAML and ruamel.yaml is smoother.
|
|
10
10
|
|
11
11
|
from meerschaum.utils.misc import filter_keywords
|
12
12
|
from meerschaum.utils.packages import attempt_import, all_packages, _import_module
|
13
|
-
from meerschaum.utils.warnings import error
|
13
|
+
from meerschaum.utils.warnings import error
|
14
14
|
from meerschaum.utils.threading import Lock
|
15
15
|
|
16
16
|
_lib = None
|
@@ -49,7 +49,7 @@ class yaml:
|
|
49
49
|
"""
|
50
50
|
global _yaml, _lib, _dumper
|
51
51
|
if _import_name is None:
|
52
|
-
error(
|
52
|
+
error("No YAML library declared.")
|
53
53
|
with _locks['_lib']:
|
54
54
|
try:
|
55
55
|
_lib = _import_module(_import_name)
|
@@ -1,12 +1,12 @@
|
|
1
|
-
meerschaum/__init__.py,sha256=
|
1
|
+
meerschaum/__init__.py,sha256=ajWutNBmINxce821AXajfQ4CygmvF8vyIczSmYAKLRE,1573
|
2
2
|
meerschaum/__main__.py,sha256=Q43yra6APe5CdhDp9ngaorUjs8ZoabeYnMa6C5kQchA,2763
|
3
3
|
meerschaum/_internal/__init__.py,sha256=ilC7utfKtin7GAvuN34fKyUQYfPyqH0Mm3MJF5iyEf4,169
|
4
4
|
meerschaum/_internal/entry.py,sha256=TNqt79kfNgXH-7Pi75Jus4Osi9y776ZVptFuvrs4wWY,5680
|
5
5
|
meerschaum/_internal/arguments/__init__.py,sha256=HFciFQgo2ZOT19Mo6CpLhPYlpLYh2sNn1C9Lo7NMADc,519
|
6
6
|
meerschaum/_internal/arguments/_parse_arguments.py,sha256=ZPkJamB6noJAEpG_cyZGVYu6hXxtQ7H7c-j7gq3Csi8,10405
|
7
|
-
meerschaum/_internal/arguments/_parser.py,sha256=
|
7
|
+
meerschaum/_internal/arguments/_parser.py,sha256=uESRIjANdJhz5cEkZg2Zj3ZzeUQ3-YklM4NlUpE44lo,13969
|
8
8
|
meerschaum/_internal/docs/__init__.py,sha256=ZQYHWo6n0kfLLkyG36YXqTYvv2Pc7it5HZHMylT6cBA,126
|
9
|
-
meerschaum/_internal/docs/index.py,sha256=
|
9
|
+
meerschaum/_internal/docs/index.py,sha256=Qovl1fI-KqCz7KtxCIWklqUGUcJ8Sbx4UKAEarrUn_A,18056
|
10
10
|
meerschaum/_internal/gui/__init__.py,sha256=KF6Opae0aBOjIndMZ2txoPs7ozCXRlR-lcTsicLO7fc,1313
|
11
11
|
meerschaum/_internal/gui/app/__init__.py,sha256=rKUa8hHk6Fai-PDF61tQcpT1myxKcfmvEMDHxThNp7o,1565
|
12
12
|
meerschaum/_internal/gui/app/_windows.py,sha256=-VHdjTzA3V596fVqnbmTxemONSp_80-sTNJ0CTB8FwU,2632
|
@@ -18,11 +18,11 @@ meerschaum/_internal/shell/ValidAutoSuggest.py,sha256=bARjOWMidz0dvMelLUe6yRPto5
|
|
18
18
|
meerschaum/_internal/shell/__init__.py,sha256=vXQoQPEVlYiUYai1b5AwQAlTnja6A2cSABnqXhzlS7I,281
|
19
19
|
meerschaum/_internal/shell/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
20
|
meerschaum/_internal/term/TermPageHandler.py,sha256=Rt5S47Pr_3HLJc8xIXpZUczYE_Dw2qT8qwf1jZFtUHQ,520
|
21
|
-
meerschaum/_internal/term/__init__.py,sha256=
|
21
|
+
meerschaum/_internal/term/__init__.py,sha256=eXjfRzpnASWomB4xpY2AfzC_CLenkInNnVWSLZEexlg,1638
|
22
22
|
meerschaum/_internal/term/tools.py,sha256=dXVAimKD-Yv2fg2WOTr0YGBY7XDKjQqw-RizcS65YVI,727
|
23
23
|
meerschaum/actions/__init__.py,sha256=ZUdQk6FvuMqyEvLCP-RiDDlIK4NwkqLRgFZSKq04qq4,11440
|
24
24
|
meerschaum/actions/api.py,sha256=mWhv4bn3Ap17_Gqf2Cx9bAsHKG-Zhy072pBbNzHLEJc,12756
|
25
|
-
meerschaum/actions/bootstrap.py,sha256=
|
25
|
+
meerschaum/actions/bootstrap.py,sha256=9D3cBHzgZbZyWy-Y7iQgk9bpTbKEhumFKbIIThZgPXI,14058
|
26
26
|
meerschaum/actions/clear.py,sha256=OoFZE0bK5m8s3GLNZcixuVT0DMj1izXVxGCATcmUGbI,4851
|
27
27
|
meerschaum/actions/copy.py,sha256=8g3ANXfVdvuyaoXcZjgTg3BxHTOhHGrzVDOOsTBrpSU,6213
|
28
28
|
meerschaum/actions/deduplicate.py,sha256=puYyxeFYEUy1Sd2IOcZB2e6MrNxAZl2bTLmNzFDkCiw,1167
|
@@ -33,16 +33,16 @@ meerschaum/actions/install.py,sha256=akzzgsvy5yqUFuUqzSMG4eBKARY2iSnL3n_BiaNcM58
|
|
33
33
|
meerschaum/actions/login.py,sha256=fNgsgkrFCn9wBQJY50SQhz2PwsN_TvEYYHnXK3JG4ig,4206
|
34
34
|
meerschaum/actions/os.py,sha256=dtoppoBhLzW3rLNF0SFovEfNxA4WJWt_9WrOGlS5KbA,2251
|
35
35
|
meerschaum/actions/pause.py,sha256=kDK0UMm90TuohFEG5Gugl3PEbuqGua-ghidqvgYShoc,3909
|
36
|
-
meerschaum/actions/python.py,sha256=
|
37
|
-
meerschaum/actions/register.py,sha256=
|
36
|
+
meerschaum/actions/python.py,sha256=aoSaDSIQ-wJixexFDtsxBMqITktba3DLkJNFIra_6qk,4546
|
37
|
+
meerschaum/actions/register.py,sha256=TIU-FdeCgvuoYjjf9_TcGezZq5eJ0Jpwgojp2dpLOzM,14166
|
38
38
|
meerschaum/actions/reload.py,sha256=gMXeFBGVfyQ7uhKhYf6bLaDMD0fLPcA9BrLBSiuvWIc,508
|
39
39
|
meerschaum/actions/setup.py,sha256=KkAGWcgwzl_L6A19fTmTX1KtBjW2FwD8QenLjPy0mQQ,3205
|
40
40
|
meerschaum/actions/sh.py,sha256=fLfTJaacKu4sjLTRqEzzYlT2WbbdZBEczsKb6F-qAek,2026
|
41
|
-
meerschaum/actions/show.py,sha256=
|
41
|
+
meerschaum/actions/show.py,sha256=7uT49RN7sX0z1eFVS1nxPgu1ttqFTilbKpXuh5qNGC4,29687
|
42
42
|
meerschaum/actions/sql.py,sha256=wYofwk1vGO96U2ncigGEfMtYMZeprz2FR1PRRZhkAPI,4311
|
43
43
|
meerschaum/actions/stack.py,sha256=7ODAxzmCx8i9AHxvkbr5ZtzUNPpY-iqlSVo4rZHMOw4,5900
|
44
44
|
meerschaum/actions/start.py,sha256=9Ej3Hk7qXfbrBaQq17KirTII_4Pa-BWSdrkutMnLA3k,18352
|
45
|
-
meerschaum/actions/stop.py,sha256=
|
45
|
+
meerschaum/actions/stop.py,sha256=lnqxGTzv1la4F3l2WbNt2utua6Mp92_Z7pjLlgr1A18,4267
|
46
46
|
meerschaum/actions/sync.py,sha256=10uPREu3HBVgtzakVxhCegQOz_mistABJlsNNCMgywY,17518
|
47
47
|
meerschaum/actions/tag.py,sha256=SJf5qFW0ccLXjqlTdkK_0MCcrCMdg6xhYrhKdco0hdA,3053
|
48
48
|
meerschaum/actions/uninstall.py,sha256=tBXhdXggSieGEQe4EPGxpgMK0MZTJCweNvAJ9-59El0,5776
|
@@ -76,13 +76,13 @@ meerschaum/api/dash/callbacks/__init__.py,sha256=CKOkt7PIHbYxX9aDab2xPDuufIAQjSR
|
|
76
76
|
meerschaum/api/dash/callbacks/custom.py,sha256=N9pVolAF8sIuJD3V6xBSgS7k8THJo_f8d1qAoh1Kg60,1161
|
77
77
|
meerschaum/api/dash/callbacks/dashboard.py,sha256=8Rjxuw8uGww6oRfwRUC_mjm6i7aD0dVW0CeY2a7r7Yo,33101
|
78
78
|
meerschaum/api/dash/callbacks/jobs.py,sha256=OEYxJRlmnxqbsvHb5jBJJCsRvVCsMNusm9AClCT9Pm0,7689
|
79
|
-
meerschaum/api/dash/callbacks/login.py,sha256=
|
79
|
+
meerschaum/api/dash/callbacks/login.py,sha256=oUGAo7gokAQDFgF4dBHaGf-An04JjkrGFHxSGB-ZMqU,2825
|
80
80
|
meerschaum/api/dash/callbacks/plugins.py,sha256=7CrwwbBI2N3DR4Yb1bKmrtJ3cAQ3dVv1l6E_AtZ6Wng,2777
|
81
81
|
meerschaum/api/dash/callbacks/register.py,sha256=9AgTcl--TPt6oETKzirQCkH9Azlm3XrU9U6XJM2b8Lk,3600
|
82
82
|
meerschaum/api/dash/pages/__init__.py,sha256=1g3KAVYklZ5L8bpW-LfG5jBXRebnUeA_wmNsuIMRZEE,273
|
83
83
|
meerschaum/api/dash/pages/dashboard.py,sha256=WKwy40kgm2Qy0k1ZTIueFnnVu0YBzFAd_8AT6CHHvfM,3835
|
84
84
|
meerschaum/api/dash/pages/error.py,sha256=-uCrASuIBrceHcc-leLeEoLos2ibSBWG0XMFQzFwtbw,595
|
85
|
-
meerschaum/api/dash/pages/login.py,sha256=
|
85
|
+
meerschaum/api/dash/pages/login.py,sha256=w8Cy1l4HSiMMgUndE4X_8pB0odU_iG7x1dwe9JrwR88,4633
|
86
86
|
meerschaum/api/dash/pages/plugins.py,sha256=9VpRqWW-3OhgZDUoo4J8PYswd231HaxlcSntxOOKsQA,1549
|
87
87
|
meerschaum/api/dash/pages/register.py,sha256=dqhsiu2OhrXhs4RL41_CpqipdrWo1-_roASvZIDBAq8,2364
|
88
88
|
meerschaum/api/models/__init__.py,sha256=WrSLChqDkw5y9uU_ma2xJFFLqqVAQvHoIjuYrZDxOcM,276
|
@@ -115,7 +115,7 @@ meerschaum/api/routes/__init__.py,sha256=vEXVwhvhVlGf0SFBjjCpQiYM4mMoxH3oywBgVOa
|
|
115
115
|
meerschaum/api/routes/_actions.py,sha256=nPLJlhnl0kDjsjFiBmUub63fe1N1_4cVimmlxtInsK0,2240
|
116
116
|
meerschaum/api/routes/_connectors.py,sha256=NNbcn5xWhKqw2PqueSEaqRaZ95hFGDKazG5lE7gsssc,1849
|
117
117
|
meerschaum/api/routes/_index.py,sha256=QI6CBo6pI2Zi0a6fJHDjZfiLa9f4okb0BGe3A_JD0kM,578
|
118
|
-
meerschaum/api/routes/_login.py,sha256=
|
118
|
+
meerschaum/api/routes/_login.py,sha256=psPKmFkXgYVX83NepqwIhaLsQ5uWgOc4F2QZtPGxY1A,2482
|
119
119
|
meerschaum/api/routes/_misc.py,sha256=05--9ZVFeaCgZrHER2kA3SYdK4TyfkEXOCjLvPbum-w,2469
|
120
120
|
meerschaum/api/routes/_pipes.py,sha256=d1JCu334xqjzvK1r2NzBxFqYScLKDATUjGWZkrjLTKU,21677
|
121
121
|
meerschaum/api/routes/_plugins.py,sha256=vR6-uTJraY1YEJMuRvds1-xFLB2mexxnp2dJwN_0rVo,6216
|
@@ -123,7 +123,7 @@ meerschaum/api/routes/_users.py,sha256=SfAkZFKrKnGjpzj8SFIKzPemzQJOH3oB72h19EaUv
|
|
123
123
|
meerschaum/api/routes/_version.py,sha256=2t-nw_9IxCVZCNEar0LOwmut2zsClRVHjiOOUx16cu0,825
|
124
124
|
meerschaum/api/routes/_webterm.py,sha256=7eilgDXckpEc2LyeNmJS5YO6HxlyMkwPnAMWd7eMfJM,3909
|
125
125
|
meerschaum/api/tables/__init__.py,sha256=e2aNC0CdlWICTUMx1i9RauF8Pm426J0RZJbsJWv4SWo,482
|
126
|
-
meerschaum/config/__init__.py,sha256=
|
126
|
+
meerschaum/config/__init__.py,sha256=jZgQSjvbOWyvGouqRgIeYBg9Pp343_9CDsCWWpwYDGY,11577
|
127
127
|
meerschaum/config/_dash.py,sha256=BJHl4xMrQB-YHUEU7ldEW8q_nOPoIRSOqLrfGElc6Dw,187
|
128
128
|
meerschaum/config/_default.py,sha256=J6AWxxXM4mntCdkM6bKIpyQznZ5NuMICmTaurF11J9Q,5275
|
129
129
|
meerschaum/config/_edit.py,sha256=_kabgFbJdI5kcLs-JIsoaTo0JdyxnPnBdrlTyTAgPm8,8236
|
@@ -131,34 +131,34 @@ meerschaum/config/_environment.py,sha256=Vv4DLDfc2vKLbCLsMvkQDj77K4kEvHKEBmUBo-w
|
|
131
131
|
meerschaum/config/_formatting.py,sha256=RT_oU0OSfUkzeqbY5jvEJwuove_t9sP4MyUb1Px250U,6635
|
132
132
|
meerschaum/config/_jobs.py,sha256=2bEikO48qVSguFS3lrbWz6uiKt_0b3oSRWhwyz8RRDM,1279
|
133
133
|
meerschaum/config/_patch.py,sha256=21N30q1ANmWMDQ-2RUjpMx7KafWfPQ3lKx9rrMqg1s4,1526
|
134
|
-
meerschaum/config/_paths.py,sha256=
|
134
|
+
meerschaum/config/_paths.py,sha256=2yzItm1xjfQOELpFHrNP1vngTYRO047o4xW8SM9N3xE,9025
|
135
135
|
meerschaum/config/_preprocess.py,sha256=-AEA8m_--KivZwTQ1sWN6LTn5sio_fUr2XZ51BO6wLs,1220
|
136
136
|
meerschaum/config/_read_config.py,sha256=WFZKIXZMDe_ca0ES7ivgM_mnwShvFxLdoeisT_X5-h0,14720
|
137
137
|
meerschaum/config/_shell.py,sha256=s74cmJl8NrhM_Y1cB_P41_JDUYXV0g4WXnKFZWMtnrY,3551
|
138
138
|
meerschaum/config/_sync.py,sha256=oK2ZujO2T1he08BXCFyiniBUevNGWSQKXLcS_jRv_7Y,4155
|
139
|
-
meerschaum/config/_version.py,sha256=
|
140
|
-
meerschaum/config/paths.py,sha256=
|
139
|
+
meerschaum/config/_version.py,sha256=6qJLn7ifnXTGcyYW1MaLrJ2axWvpsNgugwEuFRWC2Wc,71
|
140
|
+
meerschaum/config/paths.py,sha256=JjibeGN3YAdSNceRwsd42aNmeUrIgM6ndzC8qZAmNI0,621
|
141
141
|
meerschaum/config/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
142
142
|
meerschaum/config/stack/__init__.py,sha256=Yt7GNzC_hz7iUDZ4gVho_lugJO2DnXgnMtsMG_ReoRg,9114
|
143
143
|
meerschaum/config/stack/grafana/__init__.py,sha256=LNXQw2FvHKrD68RDhqDmi2wJjAHaKw9IWx8rNuyWEPo,2010
|
144
144
|
meerschaum/config/stack/mosquitto/__init__.py,sha256=-OwOjq8KiBoSH_pmgCAAF3Dp3CRD4KgAEdimZSadROs,186
|
145
145
|
meerschaum/config/stack/mosquitto/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
146
146
|
meerschaum/config/stack/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
147
|
-
meerschaum/config/static/__init__.py,sha256=
|
148
|
-
meerschaum/connectors/Connector.py,sha256=
|
149
|
-
meerschaum/connectors/__init__.py,sha256=
|
147
|
+
meerschaum/config/static/__init__.py,sha256=j72KrqtOlwmN-iGwfWl5yO99yHr4Dry-uCjqdT4OP04,4515
|
148
|
+
meerschaum/connectors/Connector.py,sha256=sa95S2upqaMpwZoVm3SwDovUoMM5JiWD6qg6QT4jxdA,6476
|
149
|
+
meerschaum/connectors/__init__.py,sha256=UNb_CCXlLnYCtCiEN78I2L5xQDmEOIr6GlBLB7-R6oc,12194
|
150
150
|
meerschaum/connectors/parse.py,sha256=gidA2jvOLTvEeL5hM9JjcUwkMRBadUhd4IfA5Jy1tgg,4044
|
151
151
|
meerschaum/connectors/poll.py,sha256=gIY9TvFBqMvMNQvR0O2No7koLLz2PjfExBr_Dsosgpg,7363
|
152
|
-
meerschaum/connectors/api/APIConnector.py,sha256=
|
152
|
+
meerschaum/connectors/api/APIConnector.py,sha256=4H0y1Pm-QlMEtntE9lctS38Tie8dpDVpcHr-FFPP3J8,4474
|
153
153
|
meerschaum/connectors/api/__init__.py,sha256=JwKrGtuE5aOd2VnsRwudFBYyBf5IxczOwPVdNvCUgSQ,205
|
154
|
-
meerschaum/connectors/api/_actions.py,sha256=
|
154
|
+
meerschaum/connectors/api/_actions.py,sha256=d4LcR6HTcD9NXnfb5E7b2XvvZlxsfE1kzo4gjWki9-k,2668
|
155
155
|
meerschaum/connectors/api/_fetch.py,sha256=Khq9AFr1nk8Dsmcedb77aWhAuHw0JGgVeahDG95Q5MQ,2072
|
156
156
|
meerschaum/connectors/api/_login.py,sha256=5GsD-B214vr5EYfM3XrTUs1sTFApxZA-9dNxq8oNSyg,2050
|
157
157
|
meerschaum/connectors/api/_misc.py,sha256=SIAiob8LjlCsvodKbAhYdrk_7HAKAv-lWkCHBoj30qI,1093
|
158
158
|
meerschaum/connectors/api/_pipes.py,sha256=wf-_jqFBiTNw2s2msp0Ye6IyTl5JWiyC9aLBI0PQuPs,20962
|
159
159
|
meerschaum/connectors/api/_plugins.py,sha256=z04tPjfZZWwa7T60mogZH3X3wDmeLdnoN5Oh8m_YsU8,5217
|
160
160
|
meerschaum/connectors/api/_request.py,sha256=mU9Spw8AeNWpG_cemZdkljElbqacuChCMqmmuSpq4EU,6922
|
161
|
-
meerschaum/connectors/api/_uri.py,sha256=
|
161
|
+
meerschaum/connectors/api/_uri.py,sha256=HWxqGx4R1cHZ3ywy9Ro9ePbFxxusw4RLaC3hpGt9Z6I,1469
|
162
162
|
meerschaum/connectors/api/_users.py,sha256=kzb7ENgXwQ19OJYKOuuWzx2rwVuUZCly9dTnyvVuT2Q,5275
|
163
163
|
meerschaum/connectors/plugin/PluginConnector.py,sha256=aQ1QaB7MordCFimZqoGLb0R12PfDUN_nWks2J5mzeAs,2084
|
164
164
|
meerschaum/connectors/plugin/__init__.py,sha256=pwF7TGY4WNz2_HaVdmK4rPQ9ZwTOEuPHgzOqsGcoXJw,198
|
@@ -177,33 +177,33 @@ meerschaum/connectors/sql/tools.py,sha256=jz8huOaRCwGlYdtGfAqAh7SoK8uydYBrasKQba
|
|
177
177
|
meerschaum/connectors/sql/tables/__init__.py,sha256=e2dALTtThqbrq0soMNQ9QwgccyfTAjOrFkEClstLp3A,9001
|
178
178
|
meerschaum/connectors/sql/tables/types.py,sha256=Jc_MTHIBM-KHpQt__Lckp39CeOo7tGOiAk5faDx-znY,1573
|
179
179
|
meerschaum/core/__init__.py,sha256=tjASW10n9uLV6bYhcwP4rggh-ESXSJzgxpSBbVsuISs,251
|
180
|
-
meerschaum/core/Pipe/__init__.py,sha256=
|
180
|
+
meerschaum/core/Pipe/__init__.py,sha256=7GnDY9FnGOTbVROGrWKdt4eZiCbk-f2UFg-U5L_738A,16598
|
181
181
|
meerschaum/core/Pipe/_attributes.py,sha256=XbSHfDsomaNymzf7-__UhbHqu6mlTTx20xprsw_L04I,13202
|
182
182
|
meerschaum/core/Pipe/_bootstrap.py,sha256=sTbHUX8V0Kfn6vEErXzsVslSjQNfQ5MxXxxuRYslr4w,7613
|
183
183
|
meerschaum/core/Pipe/_clear.py,sha256=hQVPztHiadzLB0c4_yFg6EETnf9MtFdJDCpO41Giuco,2261
|
184
|
-
meerschaum/core/Pipe/_data.py,sha256=
|
185
|
-
meerschaum/core/Pipe/_deduplicate.py,sha256=
|
184
|
+
meerschaum/core/Pipe/_data.py,sha256=Ese54Qointav0M-bmIx5NrJIbIrFCb2hQvPEAfxRBAk,20922
|
185
|
+
meerschaum/core/Pipe/_deduplicate.py,sha256=E3oXu6-0vZhzacv0GHri9yHd7XrSlIStZ--KE2EqeVM,10274
|
186
186
|
meerschaum/core/Pipe/_delete.py,sha256=1geNp9BgrocXP1gt76dMbnlJWKYFMuSNqPFA4K4-hXE,2118
|
187
187
|
meerschaum/core/Pipe/_drop.py,sha256=uf3MvMkCw9tVfJ2fuo8LqZ4vvMNa3xC3YoFGEuc-hH8,1052
|
188
|
-
meerschaum/core/Pipe/_dtypes.py,sha256=
|
188
|
+
meerschaum/core/Pipe/_dtypes.py,sha256=hPOz7uxQNxzZsKU8DQuU1tGd7gDr9zh0NZidFE8F9vE,3811
|
189
189
|
meerschaum/core/Pipe/_edit.py,sha256=ZH2A0ZOpZKsVDnQxKzmXspNQKTEFUhkkZDjwOkmWtaY,8471
|
190
|
-
meerschaum/core/Pipe/_fetch.py,sha256=
|
190
|
+
meerschaum/core/Pipe/_fetch.py,sha256=LtYqZSN2kwc5Tl2gQ5kSmGN7Ombv86k1zDNTP3SUF1k,5417
|
191
191
|
meerschaum/core/Pipe/_register.py,sha256=Sd5xaAW8H7uLTIoommcKb-6kHPRuHJLWNSbPnt2UbvA,2240
|
192
192
|
meerschaum/core/Pipe/_show.py,sha256=nG50y8eBT9TVuKkRgAKtNDNIxysJvMNxfu__lkL1F9k,1352
|
193
|
-
meerschaum/core/Pipe/_sync.py,sha256
|
193
|
+
meerschaum/core/Pipe/_sync.py,sha256=-phksElHTlGWjJ78s6fKMGY2OZavBjNjb7-A7-2wMeo,29106
|
194
194
|
meerschaum/core/Pipe/_verify.py,sha256=KSnthUzImRLjt9fxyBaLvArqDuOLRpKBfk0tnseJClc,14262
|
195
195
|
meerschaum/core/Plugin/__init__.py,sha256=UXg64EvJPgI1PCxkY_KM02-ZmBm4FZpLPIQR_uSJJDc,137
|
196
196
|
meerschaum/core/User/_User.py,sha256=CApB7Y0QJL6S9QOCCfrG4SbPuPXJ9AsAYQ5pASMP_Aw,6527
|
197
197
|
meerschaum/core/User/__init__.py,sha256=lJ7beIZTG9sO4dAi3367fFBl17dXYEWHKi7HoaPlDyk,193
|
198
|
-
meerschaum/plugins/_Plugin.py,sha256=
|
199
|
-
meerschaum/plugins/__init__.py,sha256=
|
198
|
+
meerschaum/plugins/_Plugin.py,sha256=q1B4gVAO2BGA-PIR0HI3-O9q1n8BaT7tSANIyW7gUPg,34084
|
199
|
+
meerschaum/plugins/__init__.py,sha256=3CwpVCXNYZXO3zYyDu7gNQflsZ2rwXXMDSbzOb9j6ZU,23518
|
200
200
|
meerschaum/plugins/bootstrap.py,sha256=qg9MQ1YAU8ShwGqWDl38WjiXLIxDPl95pSIGDLN9rOw,11423
|
201
201
|
meerschaum/utils/__init__.py,sha256=QrK1K9hIbPCRCM5k2nZGFqGnrqhA0Eh-iSmCU7FG6Cs,612
|
202
202
|
meerschaum/utils/_get_pipes.py,sha256=dlPckpYYyM0IwRZ2VL0u9DiEeYhr5Ho9gkzvWxzNVwI,11460
|
203
|
-
meerschaum/utils/dataframe.py,sha256=
|
204
|
-
meerschaum/utils/debug.py,sha256=
|
203
|
+
meerschaum/utils/dataframe.py,sha256=asZ2PMWVp7Gyh5RsJDCyW2E0RY7_5e8PAvV4Tr9ezKw,32056
|
204
|
+
meerschaum/utils/debug.py,sha256=GyIzJmunkoPnOcZNYVQdT4Sgd-aOb5MI2VbIgATOjIQ,3695
|
205
205
|
meerschaum/utils/interactive.py,sha256=t-6jWozXSqL7lYGDHuwiOjTgr-UKhdcg61q_eR5mikI,3196
|
206
|
-
meerschaum/utils/misc.py,sha256=
|
206
|
+
meerschaum/utils/misc.py,sha256=YzyMlz2nDk5L3FC7CaUY1kAlMpmodIOrYckc9R9InsM,45981
|
207
207
|
meerschaum/utils/networking.py,sha256=Sr_eYUGW8_UV9-k9LqRFf7xLtbUcsDucODyLCRsFRUc,1006
|
208
208
|
meerschaum/utils/pool.py,sha256=vkE42af4fjrTEJTxf6Ek3xGucm1MtEkpsSEiaVzNKHs,2655
|
209
209
|
meerschaum/utils/process.py,sha256=UyiNszYXdnjF6WN8Tt0NchWjkCV10MbOXEFn_TAhXeg,7510
|
@@ -211,31 +211,31 @@ meerschaum/utils/prompt.py,sha256=HG5pPZBsxwE-R3kRJqbOrl38Y7IHNZQuLPdU7dgqlBY,18
|
|
211
211
|
meerschaum/utils/schedule.py,sha256=btAeSDaoFH62-7wTO0U7NK9P9QHV46PtY3DJ8DN_mCY,10860
|
212
212
|
meerschaum/utils/sql.py,sha256=4sCNEpgUd6uFz6ySs4nnUMVaOT0YAvPM1ZlQYJTSF-0,46656
|
213
213
|
meerschaum/utils/threading.py,sha256=3N8JXPAnwqJiSjuQcbbJg3Rv9-CCUMJpeQRfKFR7MaA,2489
|
214
|
-
meerschaum/utils/typing.py,sha256=
|
215
|
-
meerschaum/utils/warnings.py,sha256=
|
216
|
-
meerschaum/utils/yaml.py,sha256=
|
214
|
+
meerschaum/utils/typing.py,sha256=U3MC347sh1umpa3Xr1k71eADyDmk4LB6TnVCpq8dVzI,2830
|
215
|
+
meerschaum/utils/warnings.py,sha256=IDiwYspsfjIi1gtk3V9cSo9vNLckB9bCsHhRClpPJTc,6639
|
216
|
+
meerschaum/utils/yaml.py,sha256=Da9ZtNdT8f68sqz6g4eLQM3jz8QQ2J9_FglX-fw5VXY,3901
|
217
217
|
meerschaum/utils/daemon/Daemon.py,sha256=TTbBj3M0RoGRaTvvq6IPr9EJb2KiPV_HLucqbPQVzs8,35184
|
218
218
|
meerschaum/utils/daemon/FileDescriptorInterceptor.py,sha256=G5eJDapiTH1IX1x-2r62pLDS1MkRfpJaaZ-3FOAJgo0,4933
|
219
|
-
meerschaum/utils/daemon/RotatingFile.py,sha256=
|
219
|
+
meerschaum/utils/daemon/RotatingFile.py,sha256=sE2KgUjGV7mW9tzDQ2H7if9aT6meCSUnV_ZYLUcUAec,23848
|
220
220
|
meerschaum/utils/daemon/__init__.py,sha256=I_ki51yml4vsh9OoH7BWTaz9SnATD8qM0i0fN3aUMn0,8375
|
221
221
|
meerschaum/utils/daemon/_names.py,sha256=Prf7xA2GWDbKR_9Xq9_5RTTIf9GNWY3Yt0s4tEU3JgM,4330
|
222
222
|
meerschaum/utils/dtypes/__init__.py,sha256=JR9PViJTzhukZhq0QoPIs73HOnXZZr8OmfhAAD4OAUA,6261
|
223
223
|
meerschaum/utils/dtypes/sql.py,sha256=IkEOyB63je-rCLHM6WwFzGbCerYk1zobL1cXkWqmTa4,14638
|
224
|
-
meerschaum/utils/formatting/__init__.py,sha256=
|
224
|
+
meerschaum/utils/formatting/__init__.py,sha256=MAzyE-uqNz_mECJo2g8K448JnaqqYOmwid0cJDkk4LY,14282
|
225
225
|
meerschaum/utils/formatting/_jobs.py,sha256=s1lVcdMkzNj5Bqw-GsUhcguUFtahi5nQ-kg1fbp0Idw,3294
|
226
226
|
meerschaum/utils/formatting/_pipes.py,sha256=wy0iWJFsFl3X2VloaiA_gp9Yx9w6tD3FQZvAQAqef4A,19492
|
227
227
|
meerschaum/utils/formatting/_pprint.py,sha256=tgrT3FyGyu5CWJYysqK3kX1xdZYorlbOk9fcU_vt9Qg,3096
|
228
228
|
meerschaum/utils/formatting/_shell.py,sha256=ox75O7VHDAiwzSvdMSJZhXLadvAqYJVeihU6WeZ2Ogc,3677
|
229
|
-
meerschaum/utils/packages/__init__.py,sha256=
|
229
|
+
meerschaum/utils/packages/__init__.py,sha256=eZ9N89kTkYf9ohGcEcCBoB4GnDPh4sXcbpmrAQOncrU,62929
|
230
230
|
meerschaum/utils/packages/_packages.py,sha256=gWrco46rqKjtAI714aJp0XfzYQFAdNi08Kq5dq1VEkg,7977
|
231
231
|
meerschaum/utils/packages/lazy_loader.py,sha256=VHnph3VozH29R4JnSSBfwtA5WKZYZQFT_GeQSShCnuc,2540
|
232
232
|
meerschaum/utils/venv/_Venv.py,sha256=sBnlmxHdAh2bx8btfVoD79-H9-cYsv5lP02IIXkyECs,3553
|
233
|
-
meerschaum/utils/venv/__init__.py,sha256=
|
234
|
-
meerschaum-2.2.
|
235
|
-
meerschaum-2.2.
|
236
|
-
meerschaum-2.2.
|
237
|
-
meerschaum-2.2.
|
238
|
-
meerschaum-2.2.
|
239
|
-
meerschaum-2.2.
|
240
|
-
meerschaum-2.2.
|
241
|
-
meerschaum-2.2.
|
233
|
+
meerschaum/utils/venv/__init__.py,sha256=7TjSHKbUAACqteNFkqp3CS8vxm9lMo8sJJ7q_oaCMd0,24365
|
234
|
+
meerschaum-2.2.6.dist-info/LICENSE,sha256=jG2zQEdRNt88EgHUWPpXVWmOrOduUQRx7MnYV9YIPaw,11359
|
235
|
+
meerschaum-2.2.6.dist-info/METADATA,sha256=tIbbbBDTcch2wgdoB_E5w2e1wQYjpgzLhnNGFGC9QJw,24187
|
236
|
+
meerschaum-2.2.6.dist-info/NOTICE,sha256=OTA9Fcthjf5BRvWDDIcBC_xfLpeDV-RPZh3M-HQBRtQ,114
|
237
|
+
meerschaum-2.2.6.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
|
238
|
+
meerschaum-2.2.6.dist-info/entry_points.txt,sha256=5YBVzibw-0rNA_1VjB16z5GABsOGf-CDhW4yqH8C7Gc,88
|
239
|
+
meerschaum-2.2.6.dist-info/top_level.txt,sha256=bNoSiDj0El6buocix-FRoAtJOeq1qOF5rRm2u9i7Q6A,11
|
240
|
+
meerschaum-2.2.6.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
241
|
+
meerschaum-2.2.6.dist-info/RECORD,,
|