Compare commits

..
3 Commits
Author SHA1 Message Date
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
3 changed files with 2 additions and 2 deletions
-1
View File
@@ -1,4 +1,3 @@
./downie
downie.*
__pycache__/
www*
Symlink
+1
View File
@@ -0,0 +1 @@
.venv/bin/downie
+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)