Metadata-Version: 2.1
Name: tools
Version: 1.0.2
Summary: python syntax tool
Home-page: https://github.com/jsyoo61/tools
Author: JaeSung Yoo
Author-email: jsyoo61@unc.edu
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# tools-jsyoo61

(`tools` package was replaced on 2025.04.28. If you're looking for web scraping tools, visit http://pypi.python.org/pypi/weblib)

Python syntax tools for faster programming. [github](https://github.com/jsyoo61/tools) \
jsyoo61@unc.edu

    pip install tools

    import tools as T
    T.save_pickle(data, 'data.p')
    data = T.load_pickle('data.p')

Most useful functions are in `tools.tools` which is loaded to the main module by default. \
API dependent tools are in their corresponding folders: `tools.API_name` (i.e. `tools.torch.optim`)

Planning to document using chatGPT,
Not documented yet, so you'll have to look at documents written inside the codes. (Most codes contain explanation)

I'm happy to discuss questions or suggestions, please contact me via email. :)

1.0.1. (2025.5.1.)

- `tools.sklearn.metrics.r2_score()` `multioutput` argument fixed
- `tools.sklearn.metrics` axis=None returns a single np.float object
