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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: inpsPyPI
3
- Version: 1.0.4
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>
@@ -14,4 +14,4 @@ from .stackily import Stackily
14
14
  # python -m unittest -b test_all.py
15
15
 
16
16
  # changes:
17
- # - move internet connection check to check.py
17
+ # - add to_real_name method to convert.py
@@ -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:
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "inpsPyPI"
7
- version = "1.0.4"
7
+ version = "1.0.5"
8
8
  description = "PyPI package designed to make development in Python easier."
9
9
  readme = "README.md"
10
10
  authors = [
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