File size: 580 Bytes
7d76671
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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")

# %%


# %%


# %%


# %%


# %%


# %%


# %%


# %%