Initial commit

This commit is contained in:
BarsTiger
2021-07-28 21:56:04 +03:00
commit 38d1b6bfbd
2 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
import time, subprocess, sys
try:
import vlc
except:
subprocess.check_call([sys.executable, "-m", "pip", "install", 'vlc'])
import vlc
toxin = vlc.MediaPlayer("http://your_mp3_url")
toxin.play()
time.sleep(16)
print("Я...")
time.sleep(2)
print("Гуль")
time.sleep(1)
print("Ле ле лет ми дай")
time.sleep(0.5)
while True:
i = 1000
while i != 6:
print(str(i) + " - 7 = " + str(i - 7))
i -= 7
time.sleep(0.01)

BIN
files/toxin.mp3 Normal file

Binary file not shown.