Advertisement
egfw

shy market look

Mar 15th, 2024
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 2.32 KB | None | 0 0
  1. import requests
  2. import json
  3. import colorama
  4. from colorama import Fore,Style
  5. import time
  6. import os
  7. colorama.init()
  8. def main():
  9.     #changed it to bannner = """" """"
  10.     #banner = ("shy market")
  11.     banner = f"""
  12.  
  13. echo. ░██████╗██╗░░██╗██╗░░░██╗  ██╗░░░░░░█████╗░░█████╗░██╗░░██╗██╗░░░██╗██████╗░
  14. echo  ██╔════╝██║░░██║╚██╗░██╔╝  ██║░░░░░██╔══██╗██╔══██╗██║░██╔╝██║░░░██║██╔══██╗
  15. echo  ╚█████╗░███████║░╚████╔╝░  ██║░░░░░██║░░██║██║░░██║█████═╝░██║░░░██║██████╔╝
  16. echo ░╚═══██╗██╔══██║░░╚██╔╝░░   ██║░░░░░██║░░██║██║░░██║██╔═██╗░██║░░░██║██╔═══╝░
  17. echo ██████╔╝██║░░██║░░░██║░░░   ███████╗╚█████╔╝╚█████╔╝██║░╚██╗╚██████╔╝██║░░░░░
  18. echo ╚═════╝░╚═╝░░╚═╝░░░╚═╝░░░  ╚══════╝░╚════╝░░╚════╝░╚═╝░░╚═╝░╚═════╝░╚═╝░░░░░
  19.     """
  20.     for char in banner:
  21.         print(Fore.RED + Style.BRIGHT + char,end='',flush=True)
  22.         time.sleep(0.0044)
  23.         print ("shy market")
  24.        
  25.  
  26.     ipinput = input("enter ip : " )
  27.     jsonA = requests.get(f"http://ip-api.com/json/{ipinput}").json()
  28.     print(f'Country : {jsonA["country"]}')
  29.     print(f'Region Name : {jsonA["regionName"]}')
  30.     print(f'City : {jsonA["city"]}')
  31.     print(f'Zip : {jsonA["zip"]}')
  32.     print(f'Latitude : {jsonA["lat"]}')
  33.     print(f'Timezone : {jsonA["timezone"]}')
  34.     print(f'Isp : {jsonA["isp"]}')
  35.     print(f'ORG : {jsonA["org"]}')
  36.     print(f'as : {jsonA["as"]}')
  37.     print('Going back to menu...')
  38.     time.sleep(4)
  39.     os.system("cls")
  40.     main()
  41. main()
  42.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement