inpsPyPI 1.0.4__tar.gz → 1.0.5__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.
- {inpspypi-1.0.4 → inpspypi-1.0.5}/PKG-INFO +1 -1
- {inpspypi-1.0.4 → inpspypi-1.0.5}/__init__.py +1 -1
- {inpspypi-1.0.4 → inpspypi-1.0.5}/convert.py +4 -0
- {inpspypi-1.0.4 → inpspypi-1.0.5}/pyproject.toml +1 -1
- {inpspypi-1.0.4 → inpspypi-1.0.5}/.github/workflows/build_inpsPyPI.yml +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.5}/.gitignore +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.5}/LICENSE +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.5}/README.md +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.5}/builder_for_flask_jsonify.py +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.5}/check.py +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.5}/cipher.py +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.5}/dictionarily.py +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.5}/easy_sql.py +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.5}/excellent_reader.py +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.5}/memory.py +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.5}/simple_file_handler.py +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.5}/sort.py +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.5}/stackily.py +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.5}/test.py +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.5}/test_all.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: inpsPyPI
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.5
|
|
4
4
|
Summary: PyPI package designed to make development in Python easier.
|
|
5
5
|
Project-URL: Homepage, https://github.com/isaiahnoelpulidosalazar/inpsPyPI
|
|
6
6
|
Author-email: Isaiah Noel Pulido Salazar <isaiahnoelpulidosalazar@gmail.com>
|
|
@@ -4,6 +4,10 @@ class Convert:
|
|
|
4
4
|
@staticmethod
|
|
5
5
|
def reverse(string: str) -> str:
|
|
6
6
|
return string[::-1]
|
|
7
|
+
|
|
8
|
+
@staticmethod
|
|
9
|
+
def to_real_name(string: str) -> str:
|
|
10
|
+
return string[0].upper() + string[1:].lower() if string else string
|
|
7
11
|
|
|
8
12
|
@staticmethod
|
|
9
13
|
def to_base64(string: str) -> str:
|
|
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
|