We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Decouple batching and performing the request, by using a new class called Batcher
def get_batches(self)-> iterable[Batch]: return list(Batch(engine=self.engine, setting=self.setting, ...)) for batch in self.get_barches(): batch_results = await Batch.perform() parsed_result = Parse(batch_result)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Decouple batching and performing the request, by using a new class called Batcher
The text was updated successfully, but these errors were encountered: