Pavel Dmytrenko
Pavel Dmytrenko
@shin- I have updated the PR. Please take a look. Now instead of catching `requests.exceptions.ConnectionError` it makes `GET /containers/(id or name)/archive` to check non-existent `path` case. According to [Docker API](https://docs.docker.com/engine/api/v1.24/#3-endpoints)...
Basically it's similar to `Rakefile`, but from Python world :) Main intention is to simplify and make Jekyll CLI more convenient: ``` # with Jtasks: $ inv serve -bi #...
Thanks for letting me know. It is an unexpected surprise that `termcolor` was resurrected after 11 years of silence. I'll consider it for the next yaspin release.
It would be nice to have an option to disable network sync altogether and rely only on local files.
Implemented by https://github.com/pavdmyt/yaspin/pull/218, included into latest release: https://github.com/pavdmyt/yaspin/releases/tag/v2.3.0
@bpshaver please run `make fmt` on your changes so that `check-fmt` check can succeed in CI.
@bpshaver thanks for your contribution! I'll try to review this thoroughly next week.
Apparently it is possible to detect situations when different streams are not tty: ``` import os if not os.isatty(sys.stdout.fileno()): print("The output stream is not a TTY.") else: print("The output stream...
I think, I need to elaborate a bit more about my point. The idea behind capability to automatically detect streams to which yaspin is attached to allows to separate: -...
> In the issue I was trying to tackle ( https://github.com/mandiant/capa/issues/1812 ) the accompanying text should go to stderr (remaining next to the spinner graphic) while useful text going to...