kececilayout 0.5.9__py3-none-any.whl → 0.6.1__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.
- kececilayout/__init__.py +58 -2
- kececilayout/_version.py +2 -1
- kececilayout/kececi_layout.py +1384 -14
- {kececilayout-0.5.9.dist-info → kececilayout-0.6.1.dist-info}/METADATA +55 -1
- kececilayout-0.6.1.dist-info/RECORD +10 -0
- kececilayout-0.5.9.dist-info/RECORD +0 -10
- {kececilayout-0.5.9.dist-info → kececilayout-0.6.1.dist-info}/WHEEL +0 -0
- {kececilayout-0.5.9.dist-info → kececilayout-0.6.1.dist-info}/licenses/LICENSE +0 -0
- {kececilayout-0.5.9.dist-info → kececilayout-0.6.1.dist-info}/top_level.txt +0 -0
kececilayout/__init__.py
CHANGED
|
@@ -10,7 +10,7 @@ import inspect
|
|
|
10
10
|
import warnings
|
|
11
11
|
|
|
12
12
|
# Paket sürüm numarası
|
|
13
|
-
__version__ = "0.
|
|
13
|
+
__version__ = "0.6.1"
|
|
14
14
|
|
|
15
15
|
# =============================================================================
|
|
16
16
|
# OTOMATİK İÇE AKTARMA VE __all__ OLUŞTURMA
|
|
@@ -68,7 +68,34 @@ from .kececi_layout import ( # Veya fonksiyonların bulunduğu asıl modül
|
|
|
68
68
|
generate_complete_periodic_table,
|
|
69
69
|
load_element_data_from_python_dict,
|
|
70
70
|
draw_kececi_custom_labels,
|
|
71
|
-
|
|
71
|
+
draw_kececi_periodic_table,
|
|
72
|
+
_calculate_layout,
|
|
73
|
+
_generate_grid_layout,
|
|
74
|
+
_generate_colors,
|
|
75
|
+
_get_group_colors,
|
|
76
|
+
_determine_group,
|
|
77
|
+
_get_period_colors,
|
|
78
|
+
_get_block_colors,
|
|
79
|
+
_get_electronegativity_colors,
|
|
80
|
+
_generate_labels,
|
|
81
|
+
_get_draw_order,
|
|
82
|
+
_get_edge_config,
|
|
83
|
+
_draw_edges,
|
|
84
|
+
_draw_nodes,
|
|
85
|
+
_draw_labels,
|
|
86
|
+
_generate_title,
|
|
87
|
+
_configure_axes,
|
|
88
|
+
_add_legend,
|
|
89
|
+
quick_periodic_table_3d,
|
|
90
|
+
generate_comparison_figure,
|
|
91
|
+
save_periodic_table_visualization,
|
|
92
|
+
highlight_elements,
|
|
93
|
+
demo_periodic_table_visualizations,
|
|
94
|
+
get_element_info,
|
|
95
|
+
custom_visualization,
|
|
96
|
+
debug_periodic_table_structure,
|
|
97
|
+
_generate_labels,
|
|
98
|
+
|
|
72
99
|
# Drawing functions
|
|
73
100
|
draw_kececi,
|
|
74
101
|
#'_draw_internal', # <- TESTLER İÇİN GEREKLİ
|
|
@@ -127,6 +154,33 @@ __all__ = [
|
|
|
127
154
|
'generate_complete_periodic_table',
|
|
128
155
|
'load_element_data_from_python_dict',
|
|
129
156
|
'draw_kececi_custom_labels',
|
|
157
|
+
'draw_kececi_periodic_table',
|
|
158
|
+
'_calculate_layout',
|
|
159
|
+
'_generate_grid_layout',
|
|
160
|
+
'_generate_colors',
|
|
161
|
+
'_get_group_colors',
|
|
162
|
+
'_determine_group',
|
|
163
|
+
'_get_period_colors',
|
|
164
|
+
'_get_block_colors',
|
|
165
|
+
'_get_electronegativity_colors',
|
|
166
|
+
'_generate_labels',
|
|
167
|
+
'_get_draw_order',
|
|
168
|
+
'_get_edge_config',
|
|
169
|
+
'_draw_edges',
|
|
170
|
+
'_draw_nodes',
|
|
171
|
+
'_draw_labels',
|
|
172
|
+
'_generate_title',
|
|
173
|
+
'_configure_axes',
|
|
174
|
+
'_add_legend',
|
|
175
|
+
'quick_periodic_table_3d',
|
|
176
|
+
'generate_comparison_figure',
|
|
177
|
+
'save_periodic_table_visualization',
|
|
178
|
+
'highlight_elements',
|
|
179
|
+
'demo_periodic_table_visualizations',
|
|
180
|
+
'get_element_info',
|
|
181
|
+
'custom_visualization',
|
|
182
|
+
'debug_periodic_table_structure',
|
|
183
|
+
'_generate_labels',
|
|
130
184
|
|
|
131
185
|
# Drawing functions
|
|
132
186
|
'draw_kececi',
|
|
@@ -186,3 +240,5 @@ def old_function_placeholder():
|
|
|
186
240
|
|
|
187
241
|
|
|
188
242
|
|
|
243
|
+
|
|
244
|
+
|
kececilayout/_version.py
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
# _version.py
|
|
2
2
|
|
|
3
|
-
__version__ = "0.
|
|
3
|
+
__version__ = "0.6.1"
|
|
4
4
|
__license__ = "AGPL3.0-or-later"
|
|
5
5
|
__description__ = "A deterministic node placement algorithm used in graph visualization. In this layout, nodes are arranged sequentially along a defined primary axis. Each subsequent node is then alternately offset along a secondary, perpendicular axis, typically moving to one side of the primary axis and then the other. Often, the magnitude of this secondary offset increases as nodes progress along the primary axis, creating a characteristic zig-zag or serpentine pattern."
|
|
6
6
|
__author__ = "Mehmet Keçeci"
|
|
7
7
|
__url__ = "https://github.com/WhiteSymmetry/kececilayout"
|
|
8
8
|
__docs__ = "https://github.com/WhiteSymmetry/kececilayout" # Opsiyonel: Dokümantasyon linki
|
|
9
9
|
__dependencies__ = ["python>=3.11"] # Diğer bağımlılıkları da ekleyebilirsiniz
|
|
10
|
+
|