Stan Prokop
Stan Prokop
It seems that streaming upload does not work, most likely because the file is reset [only once](https://github.com/requests/requests-ntlm/blob/master/requests_ntlm/requests_ntlm.py#L55). This is related to #87, because the data is sent three times. For...
`godot.bindings` is not code completion friendly due to use of lazy module binding. For example while using PyCharm I just see import errors - `godot.binding.Spatial` in my case. It's not...
There are several ways of doing multi value optional arguments: 1. a simple list of things ``` --optional 1 2 3 4 5 ``` 2. aggregated list of things ```...
The project does not have continuous integration. It would be great to figure out the right: * tool to use * Travis CI, Circle CI, AppVeyor Codeship, ... * ideally...
Clizy should support custom types, for example: ``` class MyCustomType: def __init__(self, x, y): ... def xxx(foo: MyCustomType): pass ``` There should be a way to tell clizy how to...
Clizy should support environment variables as predefined fields. So such signature: ``` def xxx(foo, * , bar=None): pass ``` could generate a command line interface which would understand environment variables:...
I see two ways how to host the documentation: 1. Just bunch of markdown files here on GitHub * well, that's basically done 😄 2. read the docs * most...
Unfortunately `argparse` and its help messages are terrible in today's standards. Perhaps it make sense to use `click` as a backend instead of `argparse`.