mcdview 0.23.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.
- _assets/logo.svg +32 -0
- _assets/templates/explorateur.html +813 -0
- mcdview-0.23.1.dist-info/METADATA +712 -0
- mcdview-0.23.1.dist-info/RECORD +8 -0
- mcdview-0.23.1.dist-info/WHEEL +4 -0
- mcdview-0.23.1.dist-info/entry_points.txt +2 -0
- mcdview-0.23.1.dist-info/licenses/LICENSE +21 -0
- mcdview.py +1481 -0
_assets/logo.svg
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128" width="128" height="128">
|
|
2
|
+
<!-- mcdview : une loupe qui révèle des tables reliées -->
|
|
3
|
+
<defs>
|
|
4
|
+
<linearGradient id="verre" x1="0" y1="0" x2="1" y2="1">
|
|
5
|
+
<stop offset="0" stop-color="#dbeafe"/>
|
|
6
|
+
<stop offset="1" stop-color="#bfdbfe"/>
|
|
7
|
+
</linearGradient>
|
|
8
|
+
</defs>
|
|
9
|
+
<!-- tables hors loupe, estompées -->
|
|
10
|
+
<g opacity="0.35">
|
|
11
|
+
<rect x="8" y="14" width="30" height="20" rx="3" fill="#94a3b8"/>
|
|
12
|
+
<rect x="8" y="14" width="30" height="7" rx="3" fill="#64748b"/>
|
|
13
|
+
<rect x="92" y="88" width="28" height="18" rx="3" fill="#94a3b8"/>
|
|
14
|
+
<rect x="92" y="88" width="28" height="6" rx="3" fill="#64748b"/>
|
|
15
|
+
<path d="M38 24 L56 44 M92 96 L76 78" stroke="#94a3b8" stroke-width="2.5" fill="none"/>
|
|
16
|
+
</g>
|
|
17
|
+
<!-- loupe -->
|
|
18
|
+
<circle cx="56" cy="56" r="38" fill="url(#verre)" stroke="#1d4ed8" stroke-width="7"/>
|
|
19
|
+
<rect x="84" y="88" width="34" height="13" rx="6.5" transform="rotate(45 84 88)" fill="#1d4ed8"/>
|
|
20
|
+
<!-- tables nettes sous la loupe, reliées -->
|
|
21
|
+
<g>
|
|
22
|
+
<rect x="34" y="36" width="26" height="18" rx="2.5" fill="#ffffff" stroke="#1e40af" stroke-width="2"/>
|
|
23
|
+
<rect x="34" y="36" width="26" height="6" rx="2.5" fill="#3b82f6"/>
|
|
24
|
+
<line x1="38" y1="46" x2="56" y2="46" stroke="#93c5fd" stroke-width="2"/>
|
|
25
|
+
<line x1="38" y1="50" x2="52" y2="50" stroke="#93c5fd" stroke-width="2"/>
|
|
26
|
+
<rect x="52" y="62" width="26" height="18" rx="2.5" fill="#ffffff" stroke="#1e40af" stroke-width="2"/>
|
|
27
|
+
<rect x="52" y="62" width="26" height="6" rx="2.5" fill="#3b82f6"/>
|
|
28
|
+
<line x1="56" y1="72" x2="74" y2="72" stroke="#93c5fd" stroke-width="2"/>
|
|
29
|
+
<line x1="56" y1="76" x2="70" y2="76" stroke="#93c5fd" stroke-width="2"/>
|
|
30
|
+
<path d="M47 54 C 47 60, 52 58, 56 62" stroke="#1d4ed8" stroke-width="2.5" fill="none"/>
|
|
31
|
+
</g>
|
|
32
|
+
</svg>
|