tb_tst_ai / token_generator.py
Daniil
Pushing the repo
17d7268
raw
history blame contribute delete
236 Bytes
import uuid
import pandas as pd
id_list = []
name_list = []
for i in range (100):
id_list.append(uuid.uuid4())
name_list.append("")
df = pd.DataFrame({'id': id_list, 'name': name_list})
df.to_csv("authentication_tokens.csv")