bs-python-utils 0.0.1__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.
- bs_python_utils/Timer.py +76 -0
- bs_python_utils/__init__.py +0 -0
- bs_python_utils/bs_altair.py +927 -0
- bs_python_utils/bs_logging.py +100 -0
- bs_python_utils/bs_mathstr.py +130 -0
- bs_python_utils/bs_mem.py +148 -0
- bs_python_utils/bs_opt.py +518 -0
- bs_python_utils/bs_plots.py +2 -0
- bs_python_utils/bs_seaborn.py +174 -0
- bs_python_utils/bs_sparse_gaussian.py +46 -0
- bs_python_utils/bsmplutils.py +34 -0
- bs_python_utils/bsnputils.py +957 -0
- bs_python_utils/bssputils.py +79 -0
- bs_python_utils/bsstats.py +463 -0
- bs_python_utils/bsutils.py +363 -0
- bs_python_utils/distance_covariances.py +258 -0
- bs_python_utils/example_opt.py +71 -0
- bs_python_utils/examples_altair.py +195 -0
- bs_python_utils/examples_distance_covariances.py +32 -0
- bs_python_utils/examples_mem.py +25 -0
- bs_python_utils/examples_seaborn.py +37 -0
- bs_python_utils/examples_sklearn.py +33 -0
- bs_python_utils/pandas_utils.py +239 -0
- bs_python_utils/sklearn_utils.py +74 -0
- bs_python_utils-0.0.1.dist-info/LICENSE +21 -0
- bs_python_utils-0.0.1.dist-info/METADATA +71 -0
- bs_python_utils-0.0.1.dist-info/RECORD +28 -0
- bs_python_utils-0.0.1.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: bs-python-utils
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: my Python utilities
|
|
5
|
+
Home-page: https://github.com/bsalanie/bs-python-utils
|
|
6
|
+
Author: Bernard Salanie
|
|
7
|
+
Author-email: fbsalanie@columbia.edu
|
|
8
|
+
Requires-Python: >=3.8,<4.0
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Requires-Dist: altair (>=4.2.2,<5.0.0)
|
|
15
|
+
Requires-Dist: altair-saver (>=0.5.0,<0.6.0)
|
|
16
|
+
Requires-Dist: matplotlib (>=3.7.1,<4.0.0)
|
|
17
|
+
Requires-Dist: scikit-learn (>=1.2.2,<2.0.0)
|
|
18
|
+
Requires-Dist: seaborn (>=0.12.2,<0.13.0)
|
|
19
|
+
Requires-Dist: statsmodels (>=0.13.5,<0.14.0)
|
|
20
|
+
Requires-Dist: vega-datasets (>=0.9.0,<0.10.0)
|
|
21
|
+
Project-URL: Documentation, https://bsalanie.github.io/bs-python-utils/
|
|
22
|
+
Project-URL: Repository, https://github.com/bsalanie/bs-python-utils
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
|
|
25
|
+
# bs-python-utils
|
|
26
|
+
|
|
27
|
+
[](https://img.shields.io/github/v/release/bsalanie/bs-python-utils)
|
|
28
|
+
[](https://github.com/bsalanie/bs-python-utils/actions/workflows/main.yml?query=branch%3Amain)
|
|
29
|
+
[](https://codecov.io/gh/bsalanie/bs-python-utils)
|
|
30
|
+
[](https://img.shields.io/github/commit-activity/m/bsalanie/bs-python-utils)
|
|
31
|
+
[](https://img.shields.io/github/license/bsalanie/bs-python-utils)
|
|
32
|
+
|
|
33
|
+
my Python utilities
|
|
34
|
+
|
|
35
|
+
- **Github repository**: <https://github.com/bsalanie/bs-python-utils/>
|
|
36
|
+
- **Documentation** <https://bsalanie.github.io/bs-python-utils/>
|
|
37
|
+
|
|
38
|
+
## Getting started with your project
|
|
39
|
+
|
|
40
|
+
First, create a repository on GitHub with the same name as this project, and then run the following commands:
|
|
41
|
+
|
|
42
|
+
``` bash
|
|
43
|
+
git init -b main
|
|
44
|
+
git add .
|
|
45
|
+
git commit -m "init commit"
|
|
46
|
+
git remote add origin git@github.com:bsalanie/bs-python-utils.git
|
|
47
|
+
git push -u origin main
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
Finally, install the environment and the pre-commit hooks with
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
make install
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
You are now ready to start development on your project! The CI/CD
|
|
57
|
+
pipeline will be triggered when you open a pull request, merge to main,
|
|
58
|
+
or when you create a new release.
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
## Releasing a new version
|
|
62
|
+
|
|
63
|
+
<!-- - Create an API Token on [Pypi](https://pypi.org/).
|
|
64
|
+
- Add the API Token to your projects secrets with the name `PYPI_TOKEN` by visiting
|
|
65
|
+
[this page](https://github.com/bsalanie/bs-python-utils/settings/secrets/actions/new). -->
|
|
66
|
+
- Create a [new release](https://github.com/bsalanie/bs-python-utils/releases/new) on Github.
|
|
67
|
+
Create a new tag in the form ``*.*.*``.
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
Repository initiated with [fpgmaas/cookiecutter-poetry](https://github.com/fpgmaas/cookiecutter-poetry).
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
bs_python_utils/Timer.py,sha256=J9EvC5RV0ARWFuL7HDqgiq602oCt5yS0BLQUOmyO2uo,1799
|
|
2
|
+
bs_python_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
bs_python_utils/bs_altair.py,sha256=8mtFOeLbvFtoZispnRWcOn9lK0cBMwpB_N2QsXrsKQA,28450
|
|
4
|
+
bs_python_utils/bs_logging.py,sha256=J5euiZrihVfEpLh238_bAS9fSrgtIoYB0oUlUeP6ekY,2976
|
|
5
|
+
bs_python_utils/bs_mathstr.py,sha256=Yq9OMlmGh_V-4_Ry2Vot9_rMi_uRRcL_cqwfyiRRHdY,3577
|
|
6
|
+
bs_python_utils/bs_mem.py,sha256=AudhRYOlnrWwRCkUcKV5fqxPhDCnH1D5qkVWO99g3Hc,4338
|
|
7
|
+
bs_python_utils/bs_opt.py,sha256=9N457afLLBo9FEiD8SvWaMATz9AswfTBJ-0b9zeiFIg,14997
|
|
8
|
+
bs_python_utils/bs_plots.py,sha256=v4i_wJVgfeSFA_sl6BjMnitJgEwapWEj4w9eXakFQug,36
|
|
9
|
+
bs_python_utils/bs_seaborn.py,sha256=C4YRftEh1KmGYbWm6usQxnW7puTi2uik-dWfCDnE-Xs,4507
|
|
10
|
+
bs_python_utils/bs_sparse_gaussian.py,sha256=Aqsd4sLfNbp_QJFbde6FrCgnFbmrnJysePYSoUI2IXU,1337
|
|
11
|
+
bs_python_utils/bsmplutils.py,sha256=P9SIEyH6CKyP2VbMvCEpMoMiYGWgjVAu1OjhBhuhByc,905
|
|
12
|
+
bs_python_utils/bsnputils.py,sha256=jnsbrsMquMmCwuCNOuslysKz4JXXP4qlNDQZnQ_i_vY,29170
|
|
13
|
+
bs_python_utils/bssputils.py,sha256=ctJ9_UsDkMDjdPWWSeEu6fIGtZ0cFJffdu5HDupINUU,2132
|
|
14
|
+
bs_python_utils/bsstats.py,sha256=zGg3ate3yhGMJ1-ZzWnoIkCeMqqc5asNR75w9mOn7vg,15489
|
|
15
|
+
bs_python_utils/bsutils.py,sha256=SdQWqPfWnaXIf5GzaiqGq1HBGIk2mX6UokntEauxhao,9199
|
|
16
|
+
bs_python_utils/distance_covariances.py,sha256=4WNvIEwnROHCiEywTauE6DKXRBFZCNp707ontOefeqk,7801
|
|
17
|
+
bs_python_utils/example_opt.py,sha256=c4eonHRVLaujoX3ZdBYQrG8B38YaPaMmBu4vUWL68-U,1351
|
|
18
|
+
bs_python_utils/examples_altair.py,sha256=bRhed23NjhaMtoippVjOUXFnSGoBJ8r7KpSKHwMu2Kc,4316
|
|
19
|
+
bs_python_utils/examples_distance_covariances.py,sha256=fnpHxKqC-PhBbih2JbEM1dfJ9CFfxd12fU_h2VdqjpU,1013
|
|
20
|
+
bs_python_utils/examples_mem.py,sha256=9iI151wIUickOtIfRoFc-pogb4GVcVaE3GX-hPFZoWQ,551
|
|
21
|
+
bs_python_utils/examples_seaborn.py,sha256=tVFS8vDPk2V9vgPnEVO3qRzlvMb5kBP9GNrJjLboXrg,771
|
|
22
|
+
bs_python_utils/examples_sklearn.py,sha256=zCpXgOdPSaINYnFDeLwMr_s0MXHX1ai6UZTCmZ9xJdU,787
|
|
23
|
+
bs_python_utils/pandas_utils.py,sha256=Hs42fkEnNjnWcLuN58sSAqa3Hbe0G0Lua23SZc65et8,7426
|
|
24
|
+
bs_python_utils/sklearn_utils.py,sha256=yp3VdyidHva03uk3C8pLgqYplUHm_OaoEUc2fU6mX7o,1872
|
|
25
|
+
bs_python_utils-0.0.1.dist-info/LICENSE,sha256=J03S1L_wQN4qquuluScbRUE09on78nCnNRpaUpOvHcw,1073
|
|
26
|
+
bs_python_utils-0.0.1.dist-info/METADATA,sha256=PohZanuFCeLqU_Aes2i0OpL7yI03K9t5O2SetQv4_O8,3034
|
|
27
|
+
bs_python_utils-0.0.1.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
|
|
28
|
+
bs_python_utils-0.0.1.dist-info/RECORD,,
|