Androidrepairguide's picture
Upload folder using huggingface_hub
49d6718 verified
raw
history blame contribute delete
202 Bytes
import datetime
def log(string):
line = "[{}] {}".format(datetime.datetime.now(), string)
print(line)
with open("bypass_utility.log", "a") as out:
out.write(line + "\n")