Cosmin Poieana
Cosmin Poieana
You can handle compression with something like this: ```python class Compression(object): """Handles (de)compression for I/O.""" # Compression detection/set headers. ACCEPT_ENCODING = "Accept-Encoding" CONTENT_ENCODING = "Content-Encoding" # Recognized compressions traces. GZIP...
Yes, duplicate of: https://github.com/enthought/comtypes/issues/180 **setuptools** recently dropped support for build time Python 2 to 3 conversion and you end up with Py2 syntax instead of 3. (as **comtypes** hasn't any...
That looks good, thank you for spotting it! Indeed we need complete annotations and keyword safety checks on the inputs to ensure we have them working consistently.
Sounds good, I'm also thinking on enabling support for installing extensions given all combinations between: `(Playwright, Selenium) X (Chrome, Firefox)` so people can install them without extending the libraries or...
Agree! Also it overlaps a little with: https://github.com/robocorp/rpaframework/issues/318
Regarding the ordering of the docs blocks, I believe it should be the following: ### Python (as docstring coding standard -- following the template) 1. Keyword one-line summary, then multi-line...
Its return is documented as `"Image of the selected region"`, therefore the output most probably should be a saved copy of the image containing the rectangle inside. I feel an...
> on "Return Robot Framework DotDict instead of dict?" > > why? what is the benefit ? None I see, discarded. - And I believe column slicing might be solved...
As @osrjv suggested, [this](https://github.com/robocorp/documentation/blob/29dcef65613dba1578b3521cde72cbbea07c1d04/config/utils/libdocJson2Html/parser.js#L17) is the place where the code should be altered. Quick solution: 1. If the `*** Tasks ***` header is already present in the code-block, then don't...