David Daniel

Results 8 comments of David Daniel

From what I can see, you can't limit or sort a within query. I am looking for a solution for this when I stumbled onto your issue. I'd be curious...

This is a great suggestion. I do plan to implement it as part of a future update.

Noted :-) I see 3 more upvotes... I'm tied up with a few other projects. Look for an update to this in 2 weeks.

As a workaround, you can add `&` to the end of your command, and get the output from `result.stdout` and parse it for the PID. https://stackoverflow.com/questions/1908610/how-to-get-pid-of-background-process

I assume you're talking about `paramiko`'s `ProxyCommand`. Sultan doesn't use Paramiko so you won't be able to use the ProxyCommand. I wanted Sultan tot have 0 dependencies (https://github.com/aeroxis/sultan/blob/master/setup.py#L20) which is...

I haven't considered setting up SSH Tunnel. If it is a feature the community likes, please give this issue a thumbs up (👍) and I'll implement it!

Hey @metaperl ... the documentation for `load()` is here: https://sultan.readthedocs.io/en/latest/sultan-examples.html#example-2-sultan-with-context-management All the examples there use the `load()` method. If you were to use it with the constructor `Sultan()`, you can...

Unfortunately, this is the best way to do it. You can play with the syntax like this, if you want a one liner: ```python s.sh('./configure').run().print_stdout() ```