pybiolib 1.2.116.dev1__py3-none-any.whl → 1.2.122__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- biolib/biolib_binary_format/utils.py +13 -5
- {pybiolib-1.2.116.dev1.dist-info → pybiolib-1.2.122.dist-info}/METADATA +1 -1
- {pybiolib-1.2.116.dev1.dist-info → pybiolib-1.2.122.dist-info}/RECORD +6 -6
- {pybiolib-1.2.116.dev1.dist-info → pybiolib-1.2.122.dist-info}/LICENSE +0 -0
- {pybiolib-1.2.116.dev1.dist-info → pybiolib-1.2.122.dist-info}/WHEEL +0 -0
- {pybiolib-1.2.116.dev1.dist-info → pybiolib-1.2.122.dist-info}/entry_points.txt +0 -0
@@ -1,6 +1,8 @@
|
|
1
1
|
import io
|
2
2
|
import math
|
3
|
+
import multiprocessing
|
3
4
|
from abc import ABC, abstractmethod
|
5
|
+
from multiprocessing.pool import ThreadPool
|
4
6
|
from typing import Callable, Optional
|
5
7
|
|
6
8
|
from biolib._internal.http_client import HttpClient
|
@@ -155,12 +157,18 @@ class LazyLoadedFile:
|
|
155
157
|
if self._length == 0:
|
156
158
|
yield b''
|
157
159
|
else:
|
158
|
-
chunk_size =
|
159
|
-
|
160
|
-
|
161
|
-
yield self._buffer.get_data(start=self.start + chunk_idx * chunk_size, length=chunk_size)
|
160
|
+
chunk_size = 50_000_000
|
161
|
+
chunk_count = math.ceil(self._length / chunk_size)
|
162
|
+
chunk_indices_iterator = range(chunk_count - 1)
|
162
163
|
|
163
|
-
|
164
|
+
def get_chunk(chunk_index: int) -> bytes:
|
165
|
+
return self._buffer.get_data(start=self.start + chunk_index * chunk_size, length=chunk_size)
|
166
|
+
|
167
|
+
if chunk_count > 1:
|
168
|
+
with ThreadPool(processes=min(16, chunk_count, multiprocessing.cpu_count() - 1)) as pool:
|
169
|
+
yield from pool.imap(func=get_chunk, iterable=chunk_indices_iterator)
|
170
|
+
|
171
|
+
data_already_yielded = (chunk_count - 1) * chunk_size
|
164
172
|
yield self._buffer.get_data(
|
165
173
|
start=self.start + data_already_yielded,
|
166
174
|
length=self._length - data_already_yielded,
|
@@ -53,7 +53,7 @@ biolib/biolib_binary_format/saved_job.py,sha256=nFHVFRNTNcAFGODLSiBntCtMk55QKwre
|
|
53
53
|
biolib/biolib_binary_format/stdout_and_stderr.py,sha256=WfUUJFFCBrtfXjuWIaRPiWCpuBLxfko68oxoTKhrwx8,1023
|
54
54
|
biolib/biolib_binary_format/system_exception.py,sha256=T3iL4_cSHAHim3RSDPS8Xyb1mfteaJBZonSXuRltc28,853
|
55
55
|
biolib/biolib_binary_format/system_status_update.py,sha256=aOELuQ0k-GtpaZTUxYd0GFomP_OInmrK585y6fuQuKE,1191
|
56
|
-
biolib/biolib_binary_format/utils.py,sha256=
|
56
|
+
biolib/biolib_binary_format/utils.py,sha256=jq31QEShs7TSrSKZBr8jif-bJAwVzQrqVxmymL6crpU,5453
|
57
57
|
biolib/biolib_docker_client/__init__.py,sha256=aBfA6mtWSI5dBEfNNMD6bIZzCPloW4ghKm0wqQiljdo,1481
|
58
58
|
biolib/biolib_download_container.py,sha256=8TmBV8iv3bCvkNlHa1SSsc4zl0wX_eaxhfnW5rvFIh8,1779
|
59
59
|
biolib/biolib_errors.py,sha256=5m4lK2l39DafpoXBImEBD4EPH3ayXBX0JgtPzmGClow,689
|
@@ -119,8 +119,8 @@ biolib/utils/cache_state.py,sha256=u256F37QSRIVwqKlbnCyzAX4EMI-kl6Dwu6qwj-Qmag,3
|
|
119
119
|
biolib/utils/multipart_uploader.py,sha256=XvGP1I8tQuKhAH-QugPRoEsCi9qvbRk-DVBs5PNwwJo,8452
|
120
120
|
biolib/utils/seq_util.py,sha256=WJnU9vZdwY8RHXvzATyV80OXzyJ7w9EkG33Tna9Nr6A,5698
|
121
121
|
biolib/utils/zip/remote_zip.py,sha256=0wErYlxir5921agfFeV1xVjf29l9VNgGQvNlWOlj2Yc,23232
|
122
|
-
pybiolib-1.2.
|
123
|
-
pybiolib-1.2.
|
124
|
-
pybiolib-1.2.
|
125
|
-
pybiolib-1.2.
|
126
|
-
pybiolib-1.2.
|
122
|
+
pybiolib-1.2.122.dist-info/LICENSE,sha256=F2h7gf8i0agDIeWoBPXDMYScvQOz02pAWkKhTGOHaaw,1067
|
123
|
+
pybiolib-1.2.122.dist-info/METADATA,sha256=ZqN7f5Rlsd29avkwSDiZmCoUi7OUiMlBqUmIl7OdDq8,1507
|
124
|
+
pybiolib-1.2.122.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
125
|
+
pybiolib-1.2.122.dist-info/entry_points.txt,sha256=p6DyaP_2kctxegTX23WBznnrDi4mz6gx04O5uKtRDXg,42
|
126
|
+
pybiolib-1.2.122.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|