Demo batching library
Project description
Batchcreator takes an array of records as input and splits it into suitably sized batches of records which can be further processed or passed to any other system/s.
Quick start:
1.Install:
$ pip install batching
2.Import BatchCreator iterator class and instantiate it. You can use below parameters to define output batch limits. These parameters are optional. If neither of these parameters is specified then the default values will be used. The default limits as :
-
max_record_size=1MB
The maximum size limit for a record in the output batch. Any record with larger size than this will be skipped from batching.
-
max_batch_size=5MB
The maximum size limit for a batch.
-
max_batch_num_records=500
The maximum number of records limit for a batch. BatchCreator will put maximum these many records per batch provided batch size satisfies the limit.
from batching import BatchCreator
batches = BatchCreator(records,
max_record_size=60,
max_batch_size=200,
max_batch_num_records=4)
3.The iterable BatchCreator object can give suitable batches as needed on iteration. The BatchCreator object can be used in regular 'for' loop.
for batch in batches:
print(batch) #batch processing here
print('\n')
OR
batchItr = iter(batches)
print(next(batchItr)) #batch processing here
4.BatchCreator can return the list of all the batches as well.
batches = BatchCreator(records).batches()
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for batchcreate-0.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a489c1bc76896ce70e365c414f1b21db17f90d483cc9018ebdfafeee19b35699 |
|
MD5 | 4be93921d8217fc90ad2f1718d5f41d7 |
|
BLAKE2b-256 | d96d29f20fdd9eb64f387ce835bf117d4a1c70411f9df62a33af9ddc6c04d9ff |