Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import requests
- from bs4 import BeautifulSoup
- import os
- from colorama import Fore, Back, Style, init
- init()
- UsuarioSteam = input("Escribe el nombre de steam: ")
- os.system('cls')
- URL = f'https://steamcommunity.com/id/{UsuarioSteam}'
- page = requests.get(URL)
- soup = BeautifulSoup(page.content, 'html.parser')
- estado = soup.find('div', class_='profile_in_game_header').text
- estado = estado.replace('Currently Online',f"El usuario {Fore.YELLOW + UsuarioSteam}" + Fore.WHITE + " Está "+ Fore.GREEN +'En linea')
- estado = estado.replace('Currently Offline', f"El usuario {Fore.YELLOW + UsuarioSteam}" + Fore.WHITE + " Está "+ Fore.RED + 'Desconectado')
- print(estado.replace('', ''))
- print(Fore.BLUE)
- os.system("pause")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement