threading with one thread per account

This commit is contained in:
2020-12-27 16:01:47 -05:00
parent 880ae0014e
commit de97e7bc23
3 changed files with 50 additions and 45 deletions

2
run.py
View File

@@ -3,6 +3,6 @@ from state import ParlerState
if __name__ == "__main__":
state = ParlerState()
scanner = ParlerScanner(state, threads=1)
scanner = ParlerScanner(state)
scanner.scan_all_items()