kececilayout 0.3.1__py3-none-any.whl → 0.3.2__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 +73 -3
- kececilayout/_version.py +2 -1
- {kececilayout-0.3.1.dist-info → kececilayout-0.3.2.dist-info}/METADATA +1 -1
- kececilayout-0.3.2.dist-info/RECORD +8 -0
- kececilayout-0.3.1.dist-info/RECORD +0 -8
- {kececilayout-0.3.1.dist-info → kececilayout-0.3.2.dist-info}/WHEEL +0 -0
- {kececilayout-0.3.1.dist-info → kececilayout-0.3.2.dist-info}/licenses/LICENSE +0 -0
- {kececilayout-0.3.1.dist-info → kececilayout-0.3.2.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.3.
|
|
13
|
+
__version__ = "0.3.2"
|
|
14
14
|
|
|
15
15
|
# =============================================================================
|
|
16
16
|
# OTOMATİK İÇE AKTARMA VE __all__ OLUŞTURMA
|
|
@@ -19,10 +19,74 @@ __version__ = "0.3.1"
|
|
|
19
19
|
# =============================================================================
|
|
20
20
|
|
|
21
21
|
# Ana modülümüzü içe aktarıyoruz
|
|
22
|
-
from . import kececi_layout
|
|
22
|
+
#from . import kececi_layout
|
|
23
|
+
|
|
24
|
+
from .kececi_layout import ( # Veya fonksiyonların bulunduğu asıl modül
|
|
25
|
+
kececi_layout,
|
|
26
|
+
draw_kececi,
|
|
27
|
+
_draw_internal, # Private fonksiyonu açıkça import edin
|
|
28
|
+
kececi_layout,
|
|
29
|
+
kececi_layout_v4,
|
|
30
|
+
|
|
31
|
+
# Library-specific layout functions
|
|
32
|
+
kececi_layout_nx,
|
|
33
|
+
kececi_layout_networkx,
|
|
34
|
+
kececi_layout_ig,
|
|
35
|
+
kececi_layout_igraph,
|
|
36
|
+
kececi_layout_nk,
|
|
37
|
+
kececi_layout_networkit,
|
|
38
|
+
kececi_layout_gg,
|
|
39
|
+
kececi_layout_graphillion,
|
|
40
|
+
kececi_layout_rx,
|
|
41
|
+
kececi_layout_rustworkx,
|
|
42
|
+
kececi_layout_pure,
|
|
43
|
+
|
|
44
|
+
# Drawing functions
|
|
45
|
+
draw_kececi,
|
|
46
|
+
#'_draw_internal', # <- TESTLER İÇİN GEREKLİ
|
|
47
|
+
|
|
48
|
+
# Utility functions
|
|
49
|
+
find_max_node_id,
|
|
50
|
+
to_networkx,
|
|
51
|
+
|
|
52
|
+
# Graph generation functions
|
|
53
|
+
generate_random_graph,
|
|
54
|
+
generate_random_graph_ig,
|
|
55
|
+
generate_random_rx_graph
|
|
56
|
+
)
|
|
23
57
|
|
|
24
58
|
# __all__ listesini dinamik olarak dolduracağız
|
|
25
|
-
__all__ = [
|
|
59
|
+
__all__ = [
|
|
60
|
+
# Core layout functions
|
|
61
|
+
'kececi_layout',
|
|
62
|
+
'kececi_layout_v4',
|
|
63
|
+
|
|
64
|
+
# Library-specific layout functions
|
|
65
|
+
'kececi_layout_nx',
|
|
66
|
+
'kececi_layout_networkx',
|
|
67
|
+
'kececi_layout_ig',
|
|
68
|
+
'kececi_layout_igraph',
|
|
69
|
+
'kececi_layout_nk',
|
|
70
|
+
'kececi_layout_networkit',
|
|
71
|
+
'kececi_layout_gg',
|
|
72
|
+
'kececi_layout_graphillion',
|
|
73
|
+
'kececi_layout_rx',
|
|
74
|
+
'kececi_layout_rustworkx',
|
|
75
|
+
'kececi_layout_pure',
|
|
76
|
+
|
|
77
|
+
# Drawing functions
|
|
78
|
+
'draw_kececi',
|
|
79
|
+
'_draw_internal', # <- TESTLER İÇİN GEREKLİ
|
|
80
|
+
|
|
81
|
+
# Utility functions
|
|
82
|
+
'find_max_node_id',
|
|
83
|
+
'to_networkx',
|
|
84
|
+
|
|
85
|
+
# Graph generation functions
|
|
86
|
+
'generate_random_graph',
|
|
87
|
+
'generate_random_graph_ig',
|
|
88
|
+
'generate_random_rx_graph'
|
|
89
|
+
]
|
|
26
90
|
|
|
27
91
|
# kececi_layout modülünün içindeki tüm üyelere (fonksiyonlar, sınıflar vb.) bak
|
|
28
92
|
for name, member in inspect.getmembers(kececi_layout):
|
|
@@ -62,3 +126,9 @@ def old_function_placeholder():
|
|
|
62
126
|
|
|
63
127
|
|
|
64
128
|
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
|
kececilayout/_version.py
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
# _version.py
|
|
2
2
|
|
|
3
|
-
__version__ = "0.3.
|
|
3
|
+
__version__ = "0.3.2"
|
|
4
4
|
__license__ = "MIT"
|
|
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.9"] # Diğer bağımlılıkları da ekleyebilirsiniz
|
|
10
|
+
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
kececilayout/__init__.py,sha256=43smXr-4sOfeq1FeYlDhT9z5GXO_O3XOjdQaJRRHbiA,3780
|
|
2
|
+
kececilayout/_version.py,sha256=VL-eER6GNC498S17VTBjRsg1QiEKm0JYAPVdqrArlGc,814
|
|
3
|
+
kececilayout/kececi_layout.py,sha256=VqN6T7SQXhPOMsSJJEYGx2t6E8qYuLqzIU4W-eTbOYw,58507
|
|
4
|
+
kececilayout-0.3.2.dist-info/licenses/LICENSE,sha256=NJZsJEbQuKzxn1mWPWCbRx8jRUqGS22thl8wwuRQJ9c,1071
|
|
5
|
+
kececilayout-0.3.2.dist-info/METADATA,sha256=C_nqp8rNuq9ur7PN8FBev8ibnvwbe3D60vKjNRnc3LY,48196
|
|
6
|
+
kececilayout-0.3.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
7
|
+
kececilayout-0.3.2.dist-info/top_level.txt,sha256=OBzN_wm4q-iwSkeACF4E8ET_LFLJKBTldSH3D1jG2hA,13
|
|
8
|
+
kececilayout-0.3.2.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
kececilayout/__init__.py,sha256=Rg1AFxYdoC7oF7IhcuzA1QLJrIHqfOP3EICKB3hDcbQ,2147
|
|
2
|
-
kececilayout/_version.py,sha256=gj-DWF4UaxThxGsf2frqi9KygoPtg2FC3cTRjbq6Wfs,812
|
|
3
|
-
kececilayout/kececi_layout.py,sha256=VqN6T7SQXhPOMsSJJEYGx2t6E8qYuLqzIU4W-eTbOYw,58507
|
|
4
|
-
kececilayout-0.3.1.dist-info/licenses/LICENSE,sha256=NJZsJEbQuKzxn1mWPWCbRx8jRUqGS22thl8wwuRQJ9c,1071
|
|
5
|
-
kececilayout-0.3.1.dist-info/METADATA,sha256=ACgLA0OGs1gWCrul2wCZBd2aWJxJkD-7d4Xq9LcCLM8,48196
|
|
6
|
-
kececilayout-0.3.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
7
|
-
kececilayout-0.3.1.dist-info/top_level.txt,sha256=OBzN_wm4q-iwSkeACF4E8ET_LFLJKBTldSH3D1jG2hA,13
|
|
8
|
-
kececilayout-0.3.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|