You've already forked httpie-cli
mirror of
https://github.com/httpie/cli.git
synced 2025-08-10 22:42:05 +02:00
Issue #54 Method suggestion proposal
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
#!/usr/bin/env python
|
||||
import re
|
||||
import sys
|
||||
import json
|
||||
|
||||
@@ -40,6 +41,12 @@ def _get_response(parser, args, stdin, stdin_isatty):
|
||||
# Form
|
||||
args.headers['Content-Type'] = TYPE_FORM
|
||||
|
||||
if args.method is None and not args.items:
|
||||
args.method = 'GET'
|
||||
elif not re.match('^[a-zA-Z]+$', args.method):
|
||||
args.items.insert(0, args.url)
|
||||
args.method, args.url = 'POST', args.method
|
||||
|
||||
# Fire the request.
|
||||
try:
|
||||
credentials = None
|
||||
|
Reference in New Issue
Block a user