Karneval2 0.2.2__tar.gz

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.
File without changes
@@ -0,0 +1,24 @@
1
+ import time
2
+ import sys
3
+ import random
4
+
5
+ class Party:
6
+ def __init__(self, delay=0.1):
7
+ self.delay = delay
8
+ self.frames = [
9
+ "πŸ’ƒπŸ”₯ PARTY HARD πŸ”₯πŸ•Ί",
10
+ "πŸ•ΊπŸ”₯ PARTY HARD πŸ”₯πŸ’ƒ",
11
+ "πŸŽ‰πŸŽ‰πŸŽ‰πŸŽ‰πŸŽ‰πŸŽ‰πŸŽ‰",
12
+ "πŸ₯³ HABIBI LETS GO πŸ₯³",
13
+ "πŸ’₯πŸ’₯πŸ’₯πŸ’₯πŸ’₯πŸ’₯πŸ’₯"
14
+ ]
15
+
16
+ def start(self):
17
+ try:
18
+ while True:
19
+ frame = random.choice(self.frames)
20
+ sys.stdout.write("\r" + frame)
21
+ sys.stdout.flush()
22
+ time.sleep(self.delay)
23
+ except KeyboardInterrupt:
24
+ print("\nβ›” Party vorbei habibi 😭 (Abbruch)")
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: Karneval2
3
+ Version: 0.2.2
4
+ Summary: Gehe endlich zum Karnveal
5
+ Author-email: Julian <info@jm-motors.com>
6
+ License: MIT
7
+ Description-Content-Type: text/markdown
8
+ License-File: LICENSE
9
+ Dynamic: license-file
@@ -0,0 +1,9 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ Karneval/__init__.py
5
+ Karneval/party.py
6
+ Karneval2.egg-info/PKG-INFO
7
+ Karneval2.egg-info/SOURCES.txt
8
+ Karneval2.egg-info/dependency_links.txt
9
+ Karneval2.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ Karneval
File without changes
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: Karneval2
3
+ Version: 0.2.2
4
+ Summary: Gehe endlich zum Karnveal
5
+ Author-email: Julian <info@jm-motors.com>
6
+ License: MIT
7
+ Description-Content-Type: text/markdown
8
+ License-File: LICENSE
9
+ Dynamic: license-file
File without changes
@@ -0,0 +1,12 @@
1
+ [build-system]
2
+ requires = ["setuptools", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "Karneval2"
7
+ version = "0.2.2"
8
+ description = "Gehe endlich zum Karnveal"
9
+ readme = "README.md"
10
+ authors = [{ name="Julian", email="info@jm-motors.com" }]
11
+ license = { text = "MIT" }
12
+ dependencies = []
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+