cleaner file structure + python script to generate example values

This commit is contained in:
2025-04-10 08:57:09 +02:00
parent 9a9e565583
commit 950b64c4cd
4 changed files with 72 additions and 45 deletions

6
gen_values.py Normal file
View File

@@ -0,0 +1,6 @@
from random import randint
p = randint(100,1000)
a = ["Integer::from("+str(p*randint(1,100)+randint(0,20))+"), " for _ in range(200)]
for b in a:
print(b)
print(p)