Skip to content

Commit

Permalink
Merge pull request #35 from salmannotkhan/feature/python-wordlist
Browse files Browse the repository at this point in the history
Added python tokens wordlist
  • Loading branch information
slmn-sh authored Oct 29, 2022
2 parents 838a36b + 9182d37 commit b3849d8
Show file tree
Hide file tree
Showing 3 changed files with 109 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const options: Options = {
"pink-sky",
"red-season",
],
type: ["words", "sentences", "numbers", "got", "javascript"],
type: ["words", "sentences", "numbers", "got", "javascript", "python"],
};

export default function Header() {
Expand Down
107 changes: 107 additions & 0 deletions src/wordlists/python.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
[
"False",
"None",
"True",
"and",
"as",
"assert",
"async",
"await",
"break",
"class",
"continue",
"def",
"del",
"elif",
"else",
"except",
"finally",
"for",
"from",
"global",
"if",
"import",
"in",
"is",
"lambda",
"nonlocal",
"not",
"or",
"pass",
"raise",
"return",
"try",
"while",
"with",
"yield",
"abs",
"aiter",
"all",
"any",
"anext",
"ascii",
"bin",
"bool",
"breakpoint",
"bytearray",
"bytes",
"callable",
"chr",
"classmethod",
"compile",
"complex",
"delattr",
"dict",
"dir",
"divmod",
"enumerate",
"eval",
"exec",
"filter",
"float",
"format",
"frozenset",
"getattr",
"globals",
"hasattr",
"hash",
"help",
"hex",
"id",
"input",
"int",
"isinstance",
"issubclass",
"iter",
"len",
"list",
"locals",
"map",
"max",
"memoryview",
"min",
"next",
"object",
"oct",
"open",
"ord",
"pow",
"print",
"property",
"range",
"repr",
"reversed",
"round",
"set",
"setattr",
"slice",
"sorted",
"staticmethod",
"str",
"sum",
"super",
"tuple",
"type",
"vars",
"zip"
]

0 comments on commit b3849d8

Please sign in to comment.