import os, time from colorama import Fore, Back, Style, init init() os.system("cls") time.sleep(1) print(Fore.RED + Fore.YELLOW + "Loading []") time.sleep(1) print(Fore.RED + Fore.YELLOW + "Loading [=]") time.sleep(1) print(Fore.RED + Fore.YELLOW + "Loading [==]") time.sleep(1) print(Fore.RED + Fore.YELLOW + "Loading [===]") time.sleep(1) print(Fore.RED + Fore.YELLOW + "Loading [====]") time.sleep(1) print(Fore.RED + Fore.YELLOW + "Loading [=====]") time.sleep(2) print(Fore.GREEN + "Loaded!") time.sleep(1) os.system("cls") title = """ _____ _ | __ \ | | | |__) | __ ___ | |__ | ___/ '__/ _ \| '_ \ | | | | | (_) | |_) | |_| |_| \___/|_.__/ Ping a spefic ip every second (0.65500 mb) """ print(Fore.RED + Fore.YELLOW + title) print("_________________________________") ip = input(Fore.GREEN + "Put in ip: ") print(Fore.RED + Fore.YELLOW + "_________________________________") bytess = "65500 " times = "-t " os.system(Fore.RED + "ping -l " + bytess + times + ip) time.sleep(4)