Skip to content

Commit 3f3bf4b

Browse files
improve performance
1 parent 58f0438 commit 3f3bf4b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+2552718
-594406
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.mypy_cache
2+
__pycache__
3+
.pytest_cache
4+
logs/

.vscode/settings.json

Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
{
2+
"python.formatting.provider": "black",
3+
"[python]": {
4+
"editor.codeActionsOnSave": {
5+
"source.organizeImports": true
6+
},
7+
"editor.detectIndentation": false,
8+
"editor.insertSpaces": true,
9+
"editor.tabSize": 4
10+
},
11+
"cSpell.userWords": [
12+
"apsw",
13+
"automerge",
14+
"bgcolor",
15+
"blackhole",
16+
"blocklist",
17+
"blocklists",
18+
"browserslist",
19+
"cpus",
20+
"DNSBL",
21+
"domainsproject",
22+
"dotenv",
23+
"eqeqeq",
24+
"fping",
25+
"ichunked",
26+
"immer",
27+
"inet",
28+
"iterdump",
29+
"KHTML",
30+
"lastrowid",
31+
"leveldb",
32+
"linebreak",
33+
"malformatted",
34+
"ntoa",
35+
"pbar",
36+
"protobuf",
37+
"reduxjs",
38+
"rowid",
39+
"tldextract",
40+
"tlds",
41+
"tqdm",
42+
"Tranco"
43+
],
44+
"cSpell.words": [
45+
"afnic",
46+
"aiofiles",
47+
"aiohttp",
48+
"asarray",
49+
"AXFR",
50+
"cchardet",
51+
"clsname",
52+
"COULDNT",
53+
"CZDS",
54+
"dateutil",
55+
"dawg",
56+
"dtype",
57+
"fastavro",
58+
"hostnames",
59+
"icann",
60+
"imdecode",
61+
"IMREAD",
62+
"Initialising",
63+
"IPPROTO",
64+
"isasyncgenfunction",
65+
"isawaitable",
66+
"isclass",
67+
"iscoroutinefunction",
68+
"KEEPCNT",
69+
"KEEPINTVL",
70+
"LANCZOS",
71+
"libcurl",
72+
"lxml",
73+
"ndarray",
74+
"noall",
75+
"noidnout",
76+
"NOSIGNAL",
77+
"onesoa",
78+
"pycurl",
79+
"pytesseract",
80+
"recognised",
81+
"Referer",
82+
"rname",
83+
"rusqlite",
84+
"sknic",
85+
"spavro",
86+
"Tesseract",
87+
"TSIG",
88+
"WBITS",
89+
"zfile"
90+
],
91+
92+
"editor.suggestSelection": "first",
93+
"prettier.tabWidth": 4,
94+
"python.formatting.blackArgs": [
95+
"--line-length=140"
96+
],
97+
"python.linting.banditArgs": [
98+
"--configfile bandit.yaml"
99+
],
100+
"python.linting.banditEnabled": true,
101+
"python.linting.flake8Args": [
102+
"--max-line-length=140"
103+
],
104+
"python.linting.flake8Enabled": true,
105+
"python.linting.mypyEnabled": true,
106+
"python.sortImports.args": [
107+
"--profile",
108+
"black"
109+
],
110+
"python.terminal.activateEnvironment": false,
111+
"python.testing.pytestArgs": [
112+
"tests"
113+
],
114+
"python.testing.pytestEnabled": true,
115+
"python.testing.unittestEnabled": false,
116+
"vsicons.dontShowNewVersionMessage": true,
117+
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
118+
"workbench.editorAssociations": {
119+
"*.ipynb": "jupyter-notebook"
120+
},
121+
"workbench.iconTheme": "vscode-icons",
122+
"editor.formatOnType": true,
123+
"files.trimTrailingWhitespace": true
124+
}

0 commit comments

Comments
 (0)