mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-04 21:09:18 +08:00
Adding python language support
This commit is contained in:
parent
01e98fcf78
commit
ffff753f73
2 changed files with 61 additions and 1 deletions
|
@ -27,5 +27,7 @@
|
|||
"finnish",
|
||||
"persian",
|
||||
"kazakh",
|
||||
"vietnamese"
|
||||
"vietnamese",
|
||||
"python"
|
||||
|
||||
]
|
||||
|
|
58
static/languages/python.json
Normal file
58
static/languages/python.json
Normal file
|
@ -0,0 +1,58 @@
|
|||
{
|
||||
"name": "italian",
|
||||
"leftToRight": true,
|
||||
"words":[
|
||||
"and",
|
||||
"as",
|
||||
"assert",
|
||||
"break",
|
||||
"class",
|
||||
"continue",
|
||||
"def",
|
||||
"del",
|
||||
"elif",
|
||||
"else",
|
||||
"except",
|
||||
"False",
|
||||
"finally",
|
||||
"for",
|
||||
"from",
|
||||
"global",
|
||||
"if",
|
||||
"import",
|
||||
"in",
|
||||
"is",
|
||||
"lambda",
|
||||
"None",
|
||||
"not",
|
||||
"or",
|
||||
"pass",
|
||||
"raise",
|
||||
"return",
|
||||
"True",
|
||||
"try",
|
||||
"while",
|
||||
"with",
|
||||
"yield",
|
||||
"print",
|
||||
"len",
|
||||
"str",
|
||||
"int",
|
||||
"float",
|
||||
"list",
|
||||
"tuple",
|
||||
"dict",
|
||||
"set",
|
||||
"range",
|
||||
"sum",
|
||||
"enumerate",
|
||||
"zip",
|
||||
"bool",
|
||||
"reversed",
|
||||
"sorted",
|
||||
"min",
|
||||
"max",
|
||||
"any",
|
||||
"all"
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue