MCPcopy Create free account
hub / github.com/geekcomputers/Python / generate_password

Function generate_password

password_programs_multiple/passwordGenerator.py:8–104  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

6
7
8def generate_password():
9 # Define characters and word sets
10 special_characters = list("!@#$%/?<>|&*-=+_")
11
12 animals = (
13 "ant",
14 "alligator",
15 "baboon",
16 "badger",
17 "barb",
18 "bat",
19 "beagle",
20 "bear",
21 "beaver",
22 "bird",
23 "bison",
24 "bombay",
25 "bongo",
26 "booby",
27 "butterfly",
28 "bee",
29 "camel",
30 "cat",
31 "caterpillar",
32 "catfish",
33 "cheetah",
34 "chicken",
35 "chipmunk",
36 "cow",
37 "crab",
38 "deer",
39 "dingo",
40 "dodo",
41 "dog",
42 "dolphin",
43 "donkey",
44 "duck",
45 "eagle",
46 "earwig",
47 "elephant",
48 "emu",
49 "falcon",
50 "ferret",
51 "fish",
52 "flamingo",
53 "fly",
54 "fox",
55 "frog",
56 "gecko",
57 "gibbon",
58 "giraffe",
59 "goat",
60 "goose",
61 "gorilla",
62 )
63
64 colours = (
65 "red",

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected