kececinumbers 0.5.9__py3-none-any.whl → 0.6.0__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.
- kececinumbers/__init__.py +1 -1
- kececinumbers/_version.py +1 -1
- kececinumbers/kececinumbers.py +5 -0
- {kececinumbers-0.5.9.dist-info → kececinumbers-0.6.0.dist-info}/METADATA +3 -2
- kececinumbers-0.6.0.dist-info/RECORD +10 -0
- kececinumbers-0.5.9.dist-info/RECORD +0 -10
- {kececinumbers-0.5.9.dist-info → kececinumbers-0.6.0.dist-info}/WHEEL +0 -0
- {kececinumbers-0.5.9.dist-info → kececinumbers-0.6.0.dist-info}/licenses/LICENSE +0 -0
- {kececinumbers-0.5.9.dist-info → kececinumbers-0.6.0.dist-info}/top_level.txt +0 -0
kececinumbers/__init__.py
CHANGED
kececinumbers/_version.py
CHANGED
kececinumbers/kececinumbers.py
CHANGED
@@ -785,6 +785,9 @@ def get_interactive() -> Tuple[List[Any], Dict[str, Any]]:
|
|
785
785
|
start_input_val_raw = input(start_prompts.get(type_choice, "Enter starting value: "))
|
786
786
|
add_input_val_raw = input(add_prompts.get(type_choice, default_add_prompt))
|
787
787
|
num_kececi_steps = int(input("Enter number of Keçeci steps (e.g., 15): "))
|
788
|
+
|
789
|
+
show_details_input = input("Do you want to include the intermediate calculation steps? (y/n): ").lower().strip()
|
790
|
+
show_details = (show_details_input == 'y')
|
788
791
|
|
789
792
|
# Generate the sequence with the correct parameter names and values
|
790
793
|
sequence = get_with_params(
|
@@ -792,6 +795,7 @@ def get_interactive() -> Tuple[List[Any], Dict[str, Any]]:
|
|
792
795
|
iterations=num_kececi_steps,
|
793
796
|
start_value_raw=start_input_val_raw,
|
794
797
|
add_value_raw=add_input_val_raw
|
798
|
+
include_intermediate_steps=show_details
|
795
799
|
)
|
796
800
|
|
797
801
|
# Gather the parameters in a dictionary to return
|
@@ -800,6 +804,7 @@ def get_interactive() -> Tuple[List[Any], Dict[str, Any]]:
|
|
800
804
|
"start_val": start_input_val_raw,
|
801
805
|
"add_val": add_input_val_raw,
|
802
806
|
"steps": num_kececi_steps
|
807
|
+
"detailed_view": show_details
|
803
808
|
}
|
804
809
|
return sequence, params
|
805
810
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: kececinumbers
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.6.0
|
4
4
|
Summary: Keçeci Numbers: An Exploration of a Dynamic Sequence Across Diverse Number Sets
|
5
5
|
Home-page: https://github.com/WhiteSymmetry/kececinumbers
|
6
6
|
Author: Mehmet Keçeci
|
@@ -185,11 +185,12 @@ import matplotlib.pyplot as plt
|
|
185
185
|
import kececinumbers as kn
|
186
186
|
|
187
187
|
# Generate a Keçeci sequence with specific parameters
|
188
|
+
# FIX: Renamed 'add_value_base_scalar' to 'add_value_raw' and converted the value to a string.
|
188
189
|
sequence = kn.get_with_params(
|
189
190
|
kececi_type_choice=kn.TYPE_POSITIVE_REAL,
|
190
191
|
iterations=20,
|
191
192
|
start_value_raw="1",
|
192
|
-
|
193
|
+
add_value_raw="9.0" # <-- The change is here
|
193
194
|
)
|
194
195
|
|
195
196
|
# If the sequence was generated successfully, plot it
|
@@ -0,0 +1,10 @@
|
|
1
|
+
docs/conf.py,sha256=jkpH_TchRJcC_EspKeY1E_rml2ODmIWhWoqvyCPu_ok,1116
|
2
|
+
kececinumbers/__init__.py,sha256=Dw9Mk29xgGSAxzlcY6EIvfD90FCCJFJUZ5_aJjYXDCc,3758
|
3
|
+
kececinumbers/_version.py,sha256=nFvkY57bniwMc6V9AO4xkeFuxB5gJg0a1JLuWjCkORA,453
|
4
|
+
kececinumbers/kececinumbers.py,sha256=0sWik7-d1yz5v0XCIOEp01tR2ohiFUIfuB5wIeSwQ3I,44571
|
5
|
+
kececinumbers-0.6.0.dist-info/licenses/LICENSE,sha256=NJZsJEbQuKzxn1mWPWCbRx8jRUqGS22thl8wwuRQJ9c,1071
|
6
|
+
tests/test_sample.py,sha256=qMWUBGQtlF1gZHZ_e6Gye1vHtyNnUWH7iXK72a1y6VQ,9728
|
7
|
+
kececinumbers-0.6.0.dist-info/METADATA,sha256=SWb_RZnQT9gkclGM88AwZOnk0Fgu2GumzCzj9gbSvqc,33125
|
8
|
+
kececinumbers-0.6.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
9
|
+
kececinumbers-0.6.0.dist-info/top_level.txt,sha256=ABQEKRH9iYb4sWnFdx7gIx7Hg899YktRkQpbRlSSqwU,25
|
10
|
+
kececinumbers-0.6.0.dist-info/RECORD,,
|
@@ -1,10 +0,0 @@
|
|
1
|
-
docs/conf.py,sha256=jkpH_TchRJcC_EspKeY1E_rml2ODmIWhWoqvyCPu_ok,1116
|
2
|
-
kececinumbers/__init__.py,sha256=E8Nk_n7roz8IgQxA-dkWJ7tToZmTSud5RBDgO4n0I-E,3758
|
3
|
-
kececinumbers/_version.py,sha256=z7FlKUDDllkVhHgBBvimz_Whgg40EDNAvZnO2znVl-Q,453
|
4
|
-
kececinumbers/kececinumbers.py,sha256=GPl7VqpzV0ZZ0p1cv8kCpqOhXVF41umtzBfDRWHlfu8,44320
|
5
|
-
kececinumbers-0.5.9.dist-info/licenses/LICENSE,sha256=NJZsJEbQuKzxn1mWPWCbRx8jRUqGS22thl8wwuRQJ9c,1071
|
6
|
-
tests/test_sample.py,sha256=qMWUBGQtlF1gZHZ_e6Gye1vHtyNnUWH7iXK72a1y6VQ,9728
|
7
|
-
kececinumbers-0.5.9.dist-info/METADATA,sha256=61CDpdpFABww57JXGcBudUR_Q-l0I7-FjHJIXnWtSlM,33010
|
8
|
-
kececinumbers-0.5.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
9
|
-
kececinumbers-0.5.9.dist-info/top_level.txt,sha256=ABQEKRH9iYb4sWnFdx7gIx7Hg899YktRkQpbRlSSqwU,25
|
10
|
-
kececinumbers-0.5.9.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|