speedy-utils 1.0.2__tar.gz → 1.0.3__tar.gz
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.
- {speedy_utils-1.0.2 → speedy_utils-1.0.3}/PKG-INFO +1 -1
- {speedy_utils-1.0.2 → speedy_utils-1.0.3}/setup.py +2 -2
- {speedy_utils-1.0.2 → speedy_utils-1.0.3}/speedy/__init__.py +24 -6
- {speedy_utils-1.0.2 → speedy_utils-1.0.3}/speedy_utils.egg-info/PKG-INFO +1 -1
- {speedy_utils-1.0.2 → speedy_utils-1.0.3}/pyproject.toml +0 -0
- {speedy_utils-1.0.2 → speedy_utils-1.0.3}/setup.cfg +0 -0
- {speedy_utils-1.0.2 → speedy_utils-1.0.3}/speedy/common/__init__.py +0 -0
- {speedy_utils-1.0.2 → speedy_utils-1.0.3}/speedy/common/clock.py +0 -0
- {speedy_utils-1.0.2 → speedy_utils-1.0.3}/speedy/common/utils_cache.py +0 -0
- {speedy_utils-1.0.2 → speedy_utils-1.0.3}/speedy/common/utils_io.py +0 -0
- {speedy_utils-1.0.2 → speedy_utils-1.0.3}/speedy/common/utils_misc.py +0 -0
- {speedy_utils-1.0.2 → speedy_utils-1.0.3}/speedy/common/utils_print.py +0 -0
- {speedy_utils-1.0.2 → speedy_utils-1.0.3}/speedy/multi_worker.py +0 -0
- {speedy_utils-1.0.2 → speedy_utils-1.0.3}/speedy_utils.egg-info/SOURCES.txt +0 -0
- {speedy_utils-1.0.2 → speedy_utils-1.0.3}/speedy_utils.egg-info/dependency_links.txt +0 -0
- {speedy_utils-1.0.2 → speedy_utils-1.0.3}/speedy_utils.egg-info/requires.txt +0 -0
- {speedy_utils-1.0.2 → speedy_utils-1.0.3}/speedy_utils.egg-info/top_level.txt +0 -0
|
@@ -3,12 +3,12 @@ from setuptools import find_packages, setup
|
|
|
3
3
|
# Last update: 2023-10-01
|
|
4
4
|
setup(
|
|
5
5
|
name="speedy-utils",
|
|
6
|
-
version="v1.0.
|
|
6
|
+
version="v1.0.3",
|
|
7
7
|
description="Fast and easy-to-use package for data science",
|
|
8
8
|
author="AnhVTH",
|
|
9
9
|
author_email="anhvth.226@gmail.com",
|
|
10
10
|
url="https://github.com/anhvth/speedy",
|
|
11
|
-
packages=
|
|
11
|
+
packages=['speedy'],
|
|
12
12
|
install_requires=[ # List any dependencies your package requires
|
|
13
13
|
"numpy",
|
|
14
14
|
"requests",
|
|
@@ -1,10 +1,27 @@
|
|
|
1
1
|
from .common.clock import Clock, timef
|
|
2
|
-
from .common.utils_cache import (
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
from .common.utils_cache import (
|
|
3
|
+
ICACHE,
|
|
4
|
+
SPEED_CACHE_DIR,
|
|
5
|
+
identify,
|
|
6
|
+
imemoize,
|
|
7
|
+
imemoize_v2,
|
|
8
|
+
memoize,
|
|
9
|
+
memoize_method,
|
|
10
|
+
memoize_v2,
|
|
11
|
+
)
|
|
12
|
+
from .common.utils_io import (
|
|
13
|
+
dump_json_or_pickle,
|
|
14
|
+
dump_jsonl,
|
|
15
|
+
load_by_ext,
|
|
16
|
+
load_json_or_pickle,
|
|
17
|
+
)
|
|
18
|
+
from .common.utils_misc import (
|
|
19
|
+
convert_to_builtin_python,
|
|
20
|
+
flatten_list,
|
|
21
|
+
get_arg_names,
|
|
22
|
+
is_interactive,
|
|
23
|
+
mkdir_or_exist,
|
|
24
|
+
)
|
|
8
25
|
from .common.utils_print import fprint, print_table
|
|
9
26
|
from .multi_worker import async_multi_thread, multi_process, multi_thread
|
|
10
27
|
|
|
@@ -32,4 +49,5 @@ __all__ = [
|
|
|
32
49
|
"multi_thread",
|
|
33
50
|
"multi_process",
|
|
34
51
|
"async_multi_thread",
|
|
52
|
+
"memoize_method",
|
|
35
53
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|