traverseda
traverseda
Throw some money at the bounty maybe @bakwc https://www.bountysource.com/issues/2654811-support-for-socks5-proxy
This is a pretty old ticket, is there still no preferred way to expose multiple subcommands through hug?
For those looking for a way to just get hug to do basic CLI routing, you can find an example of that here: https://github.com/hugapi/hug/blob/develop/examples/cli_multiple.py I imagine you could implement more...
It lets you do things like ```python import hug, time @hug.get(output=hug.output_format.json_streaming_lines) def foo(): yield {'biz','baz\n','bar\n'} yield range(0,30) yield {'key':'value'} itercount=0 while True: yield {'key':itercount} itercount+=1 time.sleep(1) ``` without having to...
Thanks for the information. I'm not sure we want *hidden* escape sequences. Visible escape sequences should be a lot less confusing if your shell doesn't support data objects. If you...
>Also note that shebang lines are an Unix/posix interface for how to run commands, not what to do with the command after it has been executed. Yeah, I'm torn on...
I've had a chance to do research on this, and have built a prototype around rpyc. https://gist.github.com/traverseda/52b87330141aaed7300408e80d06512e This uses rpyc-based "remote objects" which avoids the need to deserialize the object,...
I have no problem with this being a xontrib, for sure. What I'm running into problems with is the ergonomics of the whole thing. I ultimately want to be able...
What about pyqtdeploy? I hear it supports android/ios. Android could be nice...
Is there an open ticket in cpal for capturing generic desktop audio? It's a feature that streaming and video capture software would both use, so I think it's *probably* in...