Chang-Hung Liang
Chang-Hung Liang
HTTP Prompt* heavily relies on `httpie.core.main()` function to send actual HTTP requests. Some HTTP Prompt's features, like setting incoming cookies, require us to access the response object (`requests.Response`, to be...
http://httpbin.org has been unstable recently. Time to consider use [pytest-httpbin](https://github.com/kevin1024/pytest-httpbin).
Correct the terminology used in code and documentation so that it is consistent with HTTPie and web standards. Examples: * body parameter -> data field * operator -> separator
Autocomplete should work for multiple header values separated by semicolons or commas depending on the header being used. Example: ``` Content-Type:text/html;charset=utf-8 Accept:"text/plain, text/html" 'Cookie:a=1; b=2' ```
Just like how Unix allows users to change their prompt text using `PS1` environment variable, http-prompt should support custom prompt text by introducing a `prompt` option in `config.py`, so users...
Not sure why. `test_interaction()` in `tests/test_interaction.py` is failing on pypy3 on Travis CI: ``` =================================== FAILURES =================================== _______________________________ test_interaction _______________________________ @pytest.mark.skipif(sys.platform == 'win32', reason="pexpect doesn't work well on Windows") @pytest.mark.slow...
#45 already fixed a partial Python 3 issues, but to support Python 3 fully, we have to: - Fix code where the tests are failed on Python 3 - Update...
Auto-completion for file path in the COPY statement: ``` sql COPY table FROM LOCAL '/path/to/file.csv' ```
Some of Flake8 (pep8 + pyflakes) rules were ignored. Should do a code refactoring to follow all Flake8 rules.