chunkipy.size_estimators.base_size_estimator

Classes

BaseSizeEstimator()

Base class for size estimators.

class chunkipy.size_estimators.base_size_estimator.BaseSizeEstimator[source]

Bases: ABC

Base class for size estimators.

estimate_size(text)[source]

Estimate the size of the given text.

Parameters:

text (str) – The text to estimate the size of.

Returns:

The estimated size of the text in bytes.

Return type:

int