We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In this function:
def process_row( data: Optional[Text] = None, base_url: Text = '', url: Text = '', json: Optional[Text] = None, method: Text = 'get', headers: Text = '', kwargs: Union[Dict, Text] = '', auth: Text = None, params: Text = '', verbose: bool = False, cursor: Text = '', results_path: Text = '', destination_uri: Text = '', ):
We need to support dict type for json argument.
dict
json
The text was updated successfully, but these errors were encountered:
maybe —
req_data: Optional[bytes] = ( dumps(json) if isintance(json, dict) else json if json.startswith('{') else dumps(parse_header_dict(json)) ).encode()
in process_http.py#88?
Sorry, something went wrong.
sfc-gh-pkommini
No branches or pull requests
In this function:
We need to support
dict
type forjson
argument.The text was updated successfully, but these errors were encountered: