-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibraries.html
More file actions
60 lines (55 loc) · 2.69 KB
/
libraries.html
File metadata and controls
60 lines (55 loc) · 2.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Libraries - OPPRO.NET</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<canvas id="particleCanvas"></canvas>
<header>
<div class="container">
<nav>
<div class="logo">OPPRO<span>.NET</span></div>
<ul class="nav-menu">
<li><a href="index.html">Home</a></li>
<li><a href="bots.html">Bots</a></li>
<li><a href="libraries.html" class="active">Libraries</a></li>
<li><a href="projects.html">Projekte</a></li>
<li><a href="impressum.html">Impressum</a></li>
<li><a href="agb.html">AGB</a></li>
<li><a href="datenschutz.html">Datenschutz</a></li>
</ul>
</nav>
</div>
</header>
<main class="container">
<section class="hero-visual">
<h1 class="main-title">Python <span>Libraries</span></h1>
<p class="hero-subtext">Tools, die wir für die Developer-Community entwickeln.</p>
</section>
<div class="card feature-card" style="max-width: 800px; margin: 0 auto;">
<div class="icon-wrap color-1">📦</div>
<span class="badge badge-open">Verfügbar auf PyPI</span>
<h2>SimpleColoredLogs</h2>
<p>Verwandle langweilige Python-Logs in saubere, farbig markierte Konsolenausgaben. Einfach zu integrieren und extrem schnell.</p>
<div class="terminal-box" onclick="copyToClipboard('pip install SimpleColoredLogs')" style="background: #000; padding: 20px; border-radius: 12px; margin: 20px 0; border: 1px solid var(--primary); cursor: pointer; position: relative;">
<code style="color: #4ade80;">$ pip install SimpleColoredLogs</code>
<span style="position: absolute; right: 20px; color: var(--text-dim);">📋</span>
</div>
<ul style="margin-top: 25px; color: var(--text-dim); list-style: none;">
<li style="margin-bottom: 10px;"><span style="color: #4ade80;">✓</span> Einfache Integration in Py-cord</li>
<li style="margin-bottom: 10px;"><span style="color: #4ade80;">✓</span> Anpassbare Farbschemata (ANSI)</li>
<li style="margin-bottom: 10px;"><span style="color: #4ade80;">✓</span> Optimiert für asynchrone Tasks</li>
</ul>
</div>
</main>
<script>
function copyToClipboard(text) {
navigator.clipboard.writeText(text);
alert("Befehl kopiert: " + text);
}
</script>
<script src="js/particles.js"></script>
</body>
</html>