potato-util 0.0.3__tar.gz → 0.0.4__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.
- {potato_util-0.0.3/src/potato_util.egg-info → potato_util-0.0.4}/PKG-INFO +8 -3
- {potato_util-0.0.3 → potato_util-0.0.4}/README.md +7 -2
- {potato_util-0.0.3 → potato_util-0.0.4}/pyproject.toml +2 -0
- potato_util-0.0.4/src/potato_util/__version__.py +1 -0
- {potato_util-0.0.3 → potato_util-0.0.4/src/potato_util.egg-info}/PKG-INFO +8 -3
- potato_util-0.0.3/src/potato_util/__version__.py +0 -1
- {potato_util-0.0.3 → potato_util-0.0.4}/.python-version +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/LICENSE.txt +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/requirements/requirements.async.txt +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/requirements/requirements.build.txt +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/requirements/requirements.dev.txt +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/requirements/requirements.docs.txt +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/requirements/requirements.fastapi.txt +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/requirements/requirements.test.txt +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/requirements.txt +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/setup.cfg +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/setup.py +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/src/potato_util/__init__.py +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/src/potato_util/_base.py +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/src/potato_util/constants/__init__.py +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/src/potato_util/constants/_base.py +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/src/potato_util/constants/_enum.py +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/src/potato_util/constants/_regex.py +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/src/potato_util/dt.py +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/src/potato_util/generator.py +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/src/potato_util/http/__init__.py +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/src/potato_util/http/_async.py +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/src/potato_util/http/_base.py +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/src/potato_util/http/_sync.py +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/src/potato_util/http/fastapi.py +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/src/potato_util/io/__init__.py +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/src/potato_util/io/_async.py +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/src/potato_util/io/_sync.py +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/src/potato_util/sanitizer.py +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/src/potato_util/secure.py +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/src/potato_util/validator.py +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/src/potato_util.egg-info/SOURCES.txt +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/src/potato_util.egg-info/dependency_links.txt +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/src/potato_util.egg-info/requires.txt +0 -0
- {potato_util-0.0.3 → potato_util-0.0.4}/src/potato_util.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: potato_util
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.4
|
|
4
4
|
Summary: 'potato_util' is collection of simple useful utils package for python.
|
|
5
5
|
Author-email: Batkhuu Byambajav <batkhuu10@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/bybatkhuu/module-python-utils
|
|
@@ -77,11 +77,13 @@ Requires-Dist: pyright<2.0.0,>=1.1.392; extra == "dev"
|
|
|
77
77
|
Requires-Dist: pre-commit<5.0.0,>=4.0.1; extra == "dev"
|
|
78
78
|
Dynamic: license-file
|
|
79
79
|
|
|
80
|
-
#
|
|
80
|
+
# Python Utils (potato-util)
|
|
81
81
|
|
|
82
82
|
[](https://choosealicense.com/licenses/mit)
|
|
83
83
|
[](https://github.com/bybatkhuu/module-python-utils/actions/workflows/2.build-publish.yml)
|
|
84
84
|
[](https://github.com/bybatkhuu/module-python-utils/releases)
|
|
85
|
+
[](https://pypi.org/project/potato-util)
|
|
86
|
+
[](https://docs.conda.io/en/latest/miniconda.html)
|
|
85
87
|
|
|
86
88
|
'potato_util' is collection of simple useful utils package for python.
|
|
87
89
|
|
|
@@ -111,7 +113,7 @@ Dynamic: license-file
|
|
|
111
113
|
[OPTIONAL] For **DEVELOPMENT** environment:
|
|
112
114
|
|
|
113
115
|
- Install [**git**](https://git-scm.com/downloads)
|
|
114
|
-
- Setup an [**SSH key**](https://docs.github.com/en/github/authenticating-to-github/connecting-to-github-with-ssh)
|
|
116
|
+
- Setup an [**SSH key**](https://docs.github.com/en/github/authenticating-to-github/connecting-to-github-with-ssh)
|
|
115
117
|
|
|
116
118
|
### 2. 📥 Download or clone the repository
|
|
117
119
|
|
|
@@ -178,6 +180,9 @@ pip install -e .
|
|
|
178
180
|
|
|
179
181
|
```sh
|
|
180
182
|
pip install -e .[dev]
|
|
183
|
+
|
|
184
|
+
# Install pre-commit hooks:
|
|
185
|
+
pre-commit install
|
|
181
186
|
```
|
|
182
187
|
|
|
183
188
|
**OPTION E.** Install from **pre-built release** files:
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Python Utils (potato-util)
|
|
2
2
|
|
|
3
3
|
[](https://choosealicense.com/licenses/mit)
|
|
4
4
|
[](https://github.com/bybatkhuu/module-python-utils/actions/workflows/2.build-publish.yml)
|
|
5
5
|
[](https://github.com/bybatkhuu/module-python-utils/releases)
|
|
6
|
+
[](https://pypi.org/project/potato-util)
|
|
7
|
+
[](https://docs.conda.io/en/latest/miniconda.html)
|
|
6
8
|
|
|
7
9
|
'potato_util' is collection of simple useful utils package for python.
|
|
8
10
|
|
|
@@ -32,7 +34,7 @@
|
|
|
32
34
|
[OPTIONAL] For **DEVELOPMENT** environment:
|
|
33
35
|
|
|
34
36
|
- Install [**git**](https://git-scm.com/downloads)
|
|
35
|
-
- Setup an [**SSH key**](https://docs.github.com/en/github/authenticating-to-github/connecting-to-github-with-ssh)
|
|
37
|
+
- Setup an [**SSH key**](https://docs.github.com/en/github/authenticating-to-github/connecting-to-github-with-ssh)
|
|
36
38
|
|
|
37
39
|
### 2. 📥 Download or clone the repository
|
|
38
40
|
|
|
@@ -99,6 +101,9 @@ pip install -e .
|
|
|
99
101
|
|
|
100
102
|
```sh
|
|
101
103
|
pip install -e .[dev]
|
|
104
|
+
|
|
105
|
+
# Install pre-commit hooks:
|
|
106
|
+
pre-commit install
|
|
102
107
|
```
|
|
103
108
|
|
|
104
109
|
**OPTION E.** Install from **pre-built release** files:
|
|
@@ -39,6 +39,8 @@ all = { file = [
|
|
|
39
39
|
"./requirements/requirements.async.txt",
|
|
40
40
|
"./requirements/requirements.fastapi.txt",
|
|
41
41
|
] }
|
|
42
|
+
|
|
43
|
+
# Optional dependencies for DEVELOPMENT
|
|
42
44
|
test = { file = [
|
|
43
45
|
"./requirements/requirements.async.txt",
|
|
44
46
|
"./requirements/requirements.fastapi.txt",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.4"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: potato_util
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.4
|
|
4
4
|
Summary: 'potato_util' is collection of simple useful utils package for python.
|
|
5
5
|
Author-email: Batkhuu Byambajav <batkhuu10@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/bybatkhuu/module-python-utils
|
|
@@ -77,11 +77,13 @@ Requires-Dist: pyright<2.0.0,>=1.1.392; extra == "dev"
|
|
|
77
77
|
Requires-Dist: pre-commit<5.0.0,>=4.0.1; extra == "dev"
|
|
78
78
|
Dynamic: license-file
|
|
79
79
|
|
|
80
|
-
#
|
|
80
|
+
# Python Utils (potato-util)
|
|
81
81
|
|
|
82
82
|
[](https://choosealicense.com/licenses/mit)
|
|
83
83
|
[](https://github.com/bybatkhuu/module-python-utils/actions/workflows/2.build-publish.yml)
|
|
84
84
|
[](https://github.com/bybatkhuu/module-python-utils/releases)
|
|
85
|
+
[](https://pypi.org/project/potato-util)
|
|
86
|
+
[](https://docs.conda.io/en/latest/miniconda.html)
|
|
85
87
|
|
|
86
88
|
'potato_util' is collection of simple useful utils package for python.
|
|
87
89
|
|
|
@@ -111,7 +113,7 @@ Dynamic: license-file
|
|
|
111
113
|
[OPTIONAL] For **DEVELOPMENT** environment:
|
|
112
114
|
|
|
113
115
|
- Install [**git**](https://git-scm.com/downloads)
|
|
114
|
-
- Setup an [**SSH key**](https://docs.github.com/en/github/authenticating-to-github/connecting-to-github-with-ssh)
|
|
116
|
+
- Setup an [**SSH key**](https://docs.github.com/en/github/authenticating-to-github/connecting-to-github-with-ssh)
|
|
115
117
|
|
|
116
118
|
### 2. 📥 Download or clone the repository
|
|
117
119
|
|
|
@@ -178,6 +180,9 @@ pip install -e .
|
|
|
178
180
|
|
|
179
181
|
```sh
|
|
180
182
|
pip install -e .[dev]
|
|
183
|
+
|
|
184
|
+
# Install pre-commit hooks:
|
|
185
|
+
pre-commit install
|
|
181
186
|
```
|
|
182
187
|
|
|
183
188
|
**OPTION E.** Install from **pre-built release** files:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.0.3"
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|