fmtr.tools 1.0.37__py3-none-any.whl → 1.0.39__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.
Potentially problematic release.
This version of fmtr.tools might be problematic. Click here for more details.
- fmtr/tools/__init__.py +5 -0
- fmtr/tools/tabular_tools.py +3 -0
- fmtr/tools/version +1 -1
- {fmtr.tools-1.0.37.dist-info → fmtr.tools-1.0.39.dist-info}/METADATA +11 -1
- {fmtr.tools-1.0.37.dist-info → fmtr.tools-1.0.39.dist-info}/RECORD +9 -8
- {fmtr.tools-1.0.37.dist-info → fmtr.tools-1.0.39.dist-info}/LICENSE +0 -0
- {fmtr.tools-1.0.37.dist-info → fmtr.tools-1.0.39.dist-info}/WHEEL +0 -0
- {fmtr.tools-1.0.37.dist-info → fmtr.tools-1.0.39.dist-info}/entry_points.txt +0 -0
- {fmtr.tools-1.0.37.dist-info → fmtr.tools-1.0.39.dist-info}/top_level.txt +0 -0
fmtr/tools/__init__.py
CHANGED
|
@@ -148,6 +148,11 @@ try:
|
|
|
148
148
|
except ImportError as exception:
|
|
149
149
|
pdf = MissingExtraMockModule('pdf', exception)
|
|
150
150
|
|
|
151
|
+
try:
|
|
152
|
+
from fmtr.tools import tabular_tools as tabular
|
|
153
|
+
except ImportError as exception:
|
|
154
|
+
tabular = MissingExtraMockModule('tabular', exception)
|
|
155
|
+
|
|
151
156
|
|
|
152
157
|
__all__ = [
|
|
153
158
|
'config',
|
fmtr/tools/version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.39
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: fmtr.tools
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.39
|
|
4
4
|
Summary: Collection of high-level tools to simplify everyday development tasks, with a focus on AI/ML
|
|
5
5
|
Home-page: https://github.com/fmtr/fmtr.tools
|
|
6
6
|
Author: Frontmatter
|
|
@@ -58,7 +58,9 @@ Requires-Dist: semver ; extra == 'logging'
|
|
|
58
58
|
Provides-Extra: merging
|
|
59
59
|
Requires-Dist: deepmerge ; extra == 'merging'
|
|
60
60
|
Provides-Extra: metric
|
|
61
|
+
Requires-Dist: openpyxl ; extra == 'metric'
|
|
61
62
|
Requires-Dist: pandas ; extra == 'metric'
|
|
63
|
+
Requires-Dist: tabulate ; extra == 'metric'
|
|
62
64
|
Provides-Extra: netrc
|
|
63
65
|
Requires-Dist: tinynetrc ; extra == 'netrc'
|
|
64
66
|
Provides-Extra: openai.api
|
|
@@ -77,10 +79,16 @@ Requires-Dist: semver ; extra == 'process'
|
|
|
77
79
|
Provides-Extra: profiling
|
|
78
80
|
Requires-Dist: contexttimer ; extra == 'profiling'
|
|
79
81
|
Provides-Extra: semantic
|
|
82
|
+
Requires-Dist: openpyxl ; extra == 'semantic'
|
|
80
83
|
Requires-Dist: pandas ; extra == 'semantic'
|
|
81
84
|
Requires-Dist: sentence-transformers ; extra == 'semantic'
|
|
85
|
+
Requires-Dist: tabulate ; extra == 'semantic'
|
|
82
86
|
Provides-Extra: spaces
|
|
83
87
|
Requires-Dist: tinynetrc ; extra == 'spaces'
|
|
88
|
+
Provides-Extra: tabular
|
|
89
|
+
Requires-Dist: openpyxl ; extra == 'tabular'
|
|
90
|
+
Requires-Dist: pandas ; extra == 'tabular'
|
|
91
|
+
Requires-Dist: tabulate ; extra == 'tabular'
|
|
84
92
|
Provides-Extra: test
|
|
85
93
|
Requires-Dist: Unidecode ; extra == 'test'
|
|
86
94
|
Requires-Dist: bokeh ; extra == 'test'
|
|
@@ -105,6 +113,7 @@ Requires-Dist: json-repair ; extra == 'test'
|
|
|
105
113
|
Requires-Dist: logfire ; extra == 'test'
|
|
106
114
|
Requires-Dist: ollama ; extra == 'test'
|
|
107
115
|
Requires-Dist: openai ; extra == 'test'
|
|
116
|
+
Requires-Dist: openpyxl ; extra == 'test'
|
|
108
117
|
Requires-Dist: pandas ; extra == 'test'
|
|
109
118
|
Requires-Dist: peft ; extra == 'test'
|
|
110
119
|
Requires-Dist: pydantic ; extra == 'test'
|
|
@@ -116,6 +125,7 @@ Requires-Dist: pyyaml ; extra == 'test'
|
|
|
116
125
|
Requires-Dist: semver ; extra == 'test'
|
|
117
126
|
Requires-Dist: sentence-transformers ; extra == 'test'
|
|
118
127
|
Requires-Dist: sre-yield ; extra == 'test'
|
|
128
|
+
Requires-Dist: tabulate ; extra == 'test'
|
|
119
129
|
Requires-Dist: tinynetrc ; extra == 'test'
|
|
120
130
|
Requires-Dist: tokenizers ; extra == 'test'
|
|
121
131
|
Requires-Dist: torchaudio ; extra == 'test'
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
fmtr/tools/__init__.py,sha256=
|
|
1
|
+
fmtr/tools/__init__.py,sha256=KDtV85yhOj1vjNsJA0WElOaQnVFmkX70jX6XO9Dxasc,5336
|
|
2
2
|
fmtr/tools/ai_tools.py,sha256=hN7DzuATXfurCDHugaluUsbmF_PzeKu3BTc2WXhG59g,11806
|
|
3
3
|
fmtr/tools/api_tools.py,sha256=u5YEdKyKto8MKY8legULLU7xeJ7lY2Bgyaep_xa8iZg,2089
|
|
4
4
|
fmtr/tools/async_tools.py,sha256=ewz757WcveQJd-G5SVr2JDOQVbdLGecCgl-tsBGVZz4,284
|
|
@@ -39,10 +39,11 @@ fmtr/tools/random_tools.py,sha256=4VlQdk5THbR8ka4pZaLbk_ZO_4yy6PF_lHZes_rgenY,22
|
|
|
39
39
|
fmtr/tools/semantic_tools.py,sha256=cxY9NSAHWj4nEc6Oj4qA1omR3dWbl2OuH7_PkINc6_E,1386
|
|
40
40
|
fmtr/tools/spaces_tools.py,sha256=D_he3mve6DruB3OPS6QyzqD05ChHnRTb4buViKPe7To,1099
|
|
41
41
|
fmtr/tools/string_tools.py,sha256=0aAaLS7JPzCaanuyVT3YyonFbEZyimSAdesHRX_Ew6c,3362
|
|
42
|
+
fmtr/tools/tabular_tools.py,sha256=lJ3hk-uTIddt6eXE5uEpFK4pnP3hPzCL64PckFswMpU,46
|
|
42
43
|
fmtr/tools/tokenization_tools.py,sha256=9FP5vgPufWv0XA961eVKObFll0d_2mM0W3ut3rtZyeo,4329
|
|
43
44
|
fmtr/tools/tools.py,sha256=xnfUrOnrT4OxFYez6vV5tAhydzCICJFiGVnviiZDEQo,796
|
|
44
45
|
fmtr/tools/unicode_tools.py,sha256=yS_9wpu8ogNoiIL7s1G_8bETFFO_YQlo4LNPv1NLDeY,52
|
|
45
|
-
fmtr/tools/version,sha256=
|
|
46
|
+
fmtr/tools/version,sha256=wDP1SzLc-sFpijyYCAranHf98NFlO0SZ2KPI5Ue1elo,6
|
|
46
47
|
fmtr/tools/version_tools.py,sha256=axzzHBS9V1n6YuSacsDKG3VfAvRqR8qr6aENCibR8vs,1248
|
|
47
48
|
fmtr/tools/yaml_tools.py,sha256=Ol43ZwbnSXGnn1K98Uxx61KPGSqfC4axE-X2q1LKMwk,349
|
|
48
49
|
fmtr/tools/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -53,9 +54,9 @@ fmtr/tools/tests/test_environment.py,sha256=iHaiMQfECYZPkPKwfuIZV9uHuWe3aE-p_dN_
|
|
|
53
54
|
fmtr/tools/tests/test_json.py,sha256=IeSP4ziPvRcmS8kq7k9tHonC9rN5YYq9GSNT2ul6Msk,287
|
|
54
55
|
fmtr/tools/tests/test_path.py,sha256=AkZQa6_8BQ-VaCyL_J-iKmdf2ZaM-xFYR37Kun3k4_g,2188
|
|
55
56
|
fmtr/tools/tests/test_yaml.py,sha256=jc0TwwKu9eC0LvFGNMERdgBue591xwLxYXFbtsRwXVM,287
|
|
56
|
-
fmtr.tools-1.0.
|
|
57
|
-
fmtr.tools-1.0.
|
|
58
|
-
fmtr.tools-1.0.
|
|
59
|
-
fmtr.tools-1.0.
|
|
60
|
-
fmtr.tools-1.0.
|
|
61
|
-
fmtr.tools-1.0.
|
|
57
|
+
fmtr.tools-1.0.39.dist-info/LICENSE,sha256=FW9aa6vVN5IjRQWLT43hs4_koYSmpcbIovlKeAJ0_cI,10757
|
|
58
|
+
fmtr.tools-1.0.39.dist-info/METADATA,sha256=KtDTKkSxC9J_I-uHi8puXtm0VzITFQq4uzU4rU3ed7k,13859
|
|
59
|
+
fmtr.tools-1.0.39.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
60
|
+
fmtr.tools-1.0.39.dist-info/entry_points.txt,sha256=CEStVkwJ1mTFvhN1WV5RdW83SkNW1d5Syj-KZ6A19ng,72
|
|
61
|
+
fmtr.tools-1.0.39.dist-info/top_level.txt,sha256=t5341a8ii3n4RFizwTeXGmcq_pf4GqL1h9ylE5LIWRk,12
|
|
62
|
+
fmtr.tools-1.0.39.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|