import secrets

def gerar_api_key():
    return "sk-" + secrets.token_hex(16)

for _ in range(1000):
    print(gerar_api_key())
