textgames / textgames_userauth_generate.py
fhudi's picture
Upload folder using huggingface_hub
7d76671 verified
raw
history blame
580 Bytes
import os
import pandas as pd
from dotenv import load_dotenv
# %%
load_dotenv("oauth_environ_google.env")
# %%
os.system("python ~/pwd_generator.py --spchar \"+()!#$%&@?.;/\" -n 1000 -r 3 -l 24 > textgames_passwords.txt")
# %%
with open("textgames_passwords.txt", "r", encoding="utf8") as i:
passwords = [("", "", l.strip(), f"session_{k:04}") for k, l in enumerate(i)]
# %%
df = pd.DataFrame(passwords, columns=["EMAIL", "NAME", "PASSWORD", "SID"])
# %%
df.to_csv("textgames_userauth.tsv", index=False, sep="\t")
# %%
# %%
# %%
# %%
# %%
# %%
# %%
# %%