API Reference
BatchProcessor
batch_processors.batchers.BatchProcessor
Bases: Generic[T, R]
A class for processing items in batches.
This class takes an iterable of items, processes them in batches using a provided function, and optionally saves progress to allow for checkpoint recovery.
Attributes:
Name | Type | Description |
---|---|---|
process_func |
Callable[[T], R]
|
The function used to process each item. |
batch_size |
int
|
The number of items to process in each batch. |
pickle_file |
Optional[str]
|
The file to use for saving/loading progress. |
processed_items |
List[T]
|
A list of items that have been processed. |
results |
List[R]
|
A list of results from processing the items. |
recover_from_checkpoint |
bool
|
Whether to attempt to recover from a checkpoint. |
use_tqdm |
bool
|
Whether to use tqdm progress bars. |
Source code in src/batch_processors/batchers.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 |
|
__init__(process_func, batch_size=100, pickle_file=None, logfile=None, recover_from_checkpoint=False, use_tqdm=False)
Initialize the BatchProcessor.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
process_func
|
Callable[[T], R]
|
The function to process each item. |
required |
batch_size
|
int
|
The number of items to process in each batch. Defaults to 100. |
100
|
pickle_file
|
Optional[str]
|
The file to use for saving/loading progress. Defaults to None. |
None
|
logfile
|
Optional[str]
|
The file to use for logging. Defaults to None. |
None
|
recover_from_checkpoint
|
bool
|
Whether to attempt to recover from a checkpoint. Defaults to False. |
False
|
use_tqdm
|
bool
|
Whether to use tqdm progress bars. Defaults to False. |
False
|
Source code in src/batch_processors/batchers.py
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
|
load_progress()
Load progress from a checkpoint file if it exists.
Source code in src/batch_processors/batchers.py
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
|
process_batch(batch, batch_number, total_jobs)
Process a batch of items.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
batch
|
List[T]
|
The batch of items to process. |
required |
batch_number
|
int
|
The number of the current batch. |
required |
total_jobs
|
int
|
The total number of jobs to process. |
required |
Source code in src/batch_processors/batchers.py
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
|
process_item(job_number, item)
Process a single item.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
job_number
|
int
|
The number of the job being processed. |
required |
item
|
T
|
The item to process. |
required |
Returns:
Name | Type | Description |
---|---|---|
R |
R
|
The result of processing the item. |
Source code in src/batch_processors/batchers.py
75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
|
process_items_in_batches(input_items)
Process all input items in batches.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
input_items
|
Iterable[T]
|
The items to process. |
required |
Returns:
Type | Description |
---|---|
Tuple[List[T], List[R]]
|
Tuple[List[T], List[R]]: A tuple containing the list of processed items and their results. |
Source code in src/batch_processors/batchers.py
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 |
|
save_progress()
Save current progress to a checkpoint file.
Source code in src/batch_processors/batchers.py
134 135 136 137 138 139 140 141 142 |
|
AsyncBatchProcessor
batch_processors.batchers.AsyncBatchProcessor
Bases: BatchProcessor[T, R]
An asynchronous version of the BatchProcessor.
This class processes items in batches asynchronously, with optional concurrency limits.
Source code in src/batch_processors/batchers.py
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 |
|
__init__(process_func, batch_size=100, pickle_file=None, logfile=None, recover_from_checkpoint=False, max_concurrent=None, use_tqdm=False)
Initialize the AsyncBatchProcessor.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
process_func
|
Callable[[T], R]
|
The function to process each item. |
required |
batch_size
|
int
|
The number of items to process in each batch. Defaults to 100. |
100
|
pickle_file
|
Optional[str]
|
The file to use for saving/loading progress. Defaults to None. |
None
|
logfile
|
Optional[str]
|
The file to use for logging. Defaults to None. |
None
|
recover_from_checkpoint
|
bool
|
Whether to attempt to recover from a checkpoint. Defaults to False. |
False
|
max_concurrent
|
Optional[int]
|
The maximum number of concurrent operations. Defaults to None. |
None
|
use_tqdm
|
bool
|
Whether to use tqdm progress bars. Defaults to False. |
False
|
Source code in src/batch_processors/batchers.py
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 |
|
process_batch(batch, batch_number, total_jobs)
async
Process a batch of items asynchronously.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
batch
|
List[T]
|
The batch of items to process. |
required |
batch_number
|
int
|
The number of the current batch. |
required |
total_jobs
|
int
|
The total number of jobs to process. |
required |
Source code in src/batch_processors/batchers.py
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 |
|
process_item(job_number, item)
async
Process a single item asynchronously.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
job_number
|
int
|
The number of the job being processed. |
required |
item
|
T
|
The item to process. |
required |
Returns:
Name | Type | Description |
---|---|---|
R |
R
|
The result of processing the item. |
Source code in src/batch_processors/batchers.py
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
|
process_items_in_batches(input_items)
async
Process all input items in batches asynchronously.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
input_items
|
Iterable[T]
|
The items to process. |
required |
Returns:
Type | Description |
---|---|
Tuple[List[T], List[R]]
|
Tuple[List[T], List[R]]: A tuple containing the list of processed items and their results. |
Source code in src/batch_processors/batchers.py
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 |
|
```