Compare commits

..
5 Commits
Author SHA1 Message Date
retoor b730d1df6a Added executable to ignore. 2025-02-12 14:51:37 +01:00
retoor 7b1aa63a76 Removed executable. 2025-02-12 14:51:19 +01:00
retoor 5038520e6d Source code and builds. 2025-02-12 14:50:44 +01:00
retoor 61957e8311 More flexii. 2025-02-12 14:48:46 +01:00
retoor 6ad826f3ee Initial commit. 2025-02-12 14:40:14 +01:00
+1 -1
View File
@@ -14,7 +14,7 @@ class Downie(BaseApplication):
def __init__(self, request_concurrency_limit=500,write_concurrency_limit=10,*args, **kwargs):
self.base_url = None
self.request_concurrency_limit = 10
self.request_concurrency_limit = 500
self.write_concurrency_limit = 10
self.semaphore_write = asyncio.Semaphore(self.write_concurrency_limit)
self.semaphore_request = asyncio.Semaphore(self.request_concurrency_limit)