Chang-Hung Liang

Results 15 issues of 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...

enhancement
needs product design

http://httpbin.org has been unstable recently. Time to consider use [pytest-httpbin](https://github.com/kevin1024/pytest-httpbin).

enhancement

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

enhancement

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' ```

enhancement

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...

enhancement

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...

help wanted

#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...

enhancement

Auto-completion for file path in the COPY statement: ``` sql COPY table FROM LOCAL '/path/to/file.csv' ```

enhancement

Some of Flake8 (pep8 + pyflakes) rules were ignored. Should do a code refactoring to follow all Flake8 rules.

enhancement