jacobian91

Results 16 comments of jacobian91

While, admittedly, not the most minimal of solutions this gives a good idea of what I'm trying to work with. - I'm running the app in async to allow updating...

The `FormattedTextControl` has an attribute `self.text` that can be a simple `str`. So a vanilla object for this could be just an object with a single attribute in it, then...

Hi @rsalmei, I was trying to test this today but I don't see the branch where this code is implemented, could you point me in the right direction?

I also would like to see this, there is a pytest plug-in that does this ([pytest-random-order](https://github.com/jbasko/pytest-random-order)) but I would prefer to keep using randomly. I do like the different modes,...

This does not seem to be working on this branch: https://github.com/aerickson/alive-progress/tree/file_as_argument ```python import time from alive_progress import alive_bar def run(): text_object = "foo" with alive_bar(100, file=text_object) as bar: for _...

I changed the `argparse` types to come in as `pathlib.Path` object types to shortcut some of the conversion that would have to otherwise be done in each of the functions.

@Tyler-Ward, really good points, I hadn't thought of those aspects. > Avoiding the png file size increase, although probably not a significant concern unless a long prepend file is used....

The other formats, SVG & HTML also could incorporate these but those implementations are a bit more straightforward because they could just be added as comments if desired, and would...

Update: Rebased on the latest dev version for easier merging

This is especially nice for document control systems in companies that produce hardware. Those systems typically require 2 files to be uploaded for something like this, rendered and source. That...