File tree 2 files changed +32
-0
lines changed
2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ import requests
2
+ from random import randrange
3
+
4
+ #This script generates simple passwords using DinoPass.
5
+
6
+ num_inp = input ("How many passwords would you like to generate? " )
7
+
8
+ try :
9
+ pw_count = int (num_inp )
10
+ except :
11
+ print ("Error, please enter a number" )
12
+ exit (1 )
13
+
14
+ for i in range (0 , pw_count ):
15
+ r = requests .get (f"https://www.dinopass.com/password/simple?_={ randrange (9999999999999999999 )} " )
16
+ print (r .text )
Original file line number Diff line number Diff line change
1
+ import requests
2
+ from random import randrange
3
+
4
+ #This script generates passwords using DinoPass.
5
+
6
+ num_inp = input ("How many passwords would you like to generate? " )
7
+
8
+ try :
9
+ pw_count = int (num_inp )
10
+ except :
11
+ print ("Error, please enter a number" )
12
+ exit (1 )
13
+
14
+ for i in range (0 , pw_count ):
15
+ r = requests .get (f"https://www.dinopass.com/password/strong?_={ randrange (9999999999999999999 )} " )
16
+ print (r .text )
You can’t perform that action at this time.
0 commit comments