Based on: https://steamcommunity.com/sharedfiles/filedetails/?id=276173458
Download: https://developer.valvesoftware.com/wiki/SteamCMD
Put in: C:\steamcmd
Open cmd \
Based on: https://steamcommunity.com/sharedfiles/filedetails/?id=276173458
Download: https://developer.valvesoftware.com/wiki/SteamCMD
Put in: C:\steamcmd
Open cmd \
#codigo de python para hacer scrap | |
import os | |
import re | |
def detectar_encoding(path): | |
with open(path, 'rb') as f: | |
try: | |
contenido = f.read(2048).decode("latin1") | |
match = re.search(r"\('encoding'\s*'([^']+)'\)", contenido) | |
if match: |