From ce52ea6e58e816d18218a447862125398d6250ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krist=C3=B3f=20T=C3=B3th?= Date: Thu, 10 Feb 2022 01:48:45 +0100 Subject: [PATCH] Increase buffer size to 64k (Linux default pipe capacity) --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index fd08151..289ef55 100644 --- a/main.py +++ b/main.py @@ -7,7 +7,7 @@ from identicon import Identicon DIGEST_SIZE = 20 -BUF_SIZE = 4096 +BUF_SIZE = 65536 def main():