Mira
Mira
It'd be helpful if the library provided more flexibility on “dstfs” overriding for cases like copying file to s3 bucket. Would you consider this as worth implementing? I can do...
# Description This PR introduces plain HTML text -> telegram text entity objects converter. # Rationale This is required to deal with text partitioning by the length. imaginary API: ```python...
## Problem Due to lack of `__iter__` implementation, Python is attempting to iterate over `_Callable` when possible. It's generally an undesired behavior, given the purposes of the `_Callable` class. You...
**todo!** 0. Optimize Filter instances as they're something that gets created a lot in code. Possibly make filters immutable. ```python class Filter(NamedTuple): pass or, simpler: Filter = dataclass(frozen=True)(Filter) ``` States...