inpsPyPI 1.0.4__tar.gz → 1.0.6__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.6}/PKG-INFO +1 -1
- inpspypi-1.0.6/__init__.py +28 -0
- {inpspypi-1.0.4 → inpspypi-1.0.6}/convert.py +4 -0
- {inpspypi-1.0.4 → inpspypi-1.0.6}/pyproject.toml +1 -1
- inpspypi-1.0.4/__init__.py +0 -17
- {inpspypi-1.0.4 → inpspypi-1.0.6}/.github/workflows/build_inpsPyPI.yml +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.6}/.gitignore +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.6}/LICENSE +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.6}/README.md +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.6}/builder_for_flask_jsonify.py +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.6}/check.py +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.6}/cipher.py +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.6}/dictionarily.py +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.6}/easy_sql.py +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.6}/excellent_reader.py +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.6}/memory.py +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.6}/simple_file_handler.py +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.6}/sort.py +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.6}/stackily.py +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.6}/test.py +0 -0
- {inpspypi-1.0.4 → inpspypi-1.0.6}/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.6
|
|
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>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
from .builder_for_flask_jsonify import bake
|
|
2
|
+
from .dictionarily import Dictionarily
|
|
3
|
+
from .easy_sql import EasySQL
|
|
4
|
+
from .memory import Memory
|
|
5
|
+
from .stackily import Stackily
|
|
6
|
+
from .test import test_method
|
|
7
|
+
from . import excellent_reader
|
|
8
|
+
from . import sort
|
|
9
|
+
|
|
10
|
+
__all__ = [
|
|
11
|
+
"bake",
|
|
12
|
+
"Dictionarily",
|
|
13
|
+
"EasySQL",
|
|
14
|
+
"Memory",
|
|
15
|
+
"Stackily",
|
|
16
|
+
"test_method",
|
|
17
|
+
"excellent_reader",
|
|
18
|
+
"sort",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
# To run unit tests, use the following command:
|
|
22
|
+
# python -m unittest test_all.py
|
|
23
|
+
|
|
24
|
+
# To run unit tests without print statements, use the following command:
|
|
25
|
+
# python -m unittest -b test_all.py
|
|
26
|
+
|
|
27
|
+
# changes:
|
|
28
|
+
# - update __init__
|
|
@@ -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:
|
inpspypi-1.0.4/__init__.py
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
from .builder_for_flask_jsonify import bake
|
|
2
|
-
from .dictionarily import Dictionarily
|
|
3
|
-
from .easy_sql import EasySQL
|
|
4
|
-
from .excellent_reader import get_n_column_from_sheet_index, get_first_column_from_sheet_index, get_n_column_from_all_sheets, get_first_column_from_all_sheets, set_n_column_from_sheet_index, set_first_column_from_sheet_index, set_n_column_from_all_sheets, set_first_column_from_all_sheets
|
|
5
|
-
from .memory import Memory
|
|
6
|
-
from .test import test_method
|
|
7
|
-
from .sort import bubble_sort, cocktail_shaker_sort, odd_even_sort, selection_sort, insertion_sort, shellsort, quicksort, merge_sort, heapsort, introsort, timsort, counting_sort, bucket_sort_uniform, pigeonhole_sort, patience_sorting, bogosort, bead_sort
|
|
8
|
-
from .stackily import Stackily
|
|
9
|
-
|
|
10
|
-
# To run unit tests, use the following command:
|
|
11
|
-
# python -m unittest test_all.py
|
|
12
|
-
|
|
13
|
-
# To run unit tests without print statements, use the following command:
|
|
14
|
-
# python -m unittest -b test_all.py
|
|
15
|
-
|
|
16
|
-
# changes:
|
|
17
|
-
# - move internet connection check to check.py
|
|
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
|