Skip to content

Latest commit

 

History

History

usage

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Getting raw json response

The response returned by an API endpoint is being automatically translated to the corresponding object basing on the value of the type field. If you want to get the raw response object, you can access response dict using response_object property. Example below will print the raw json response returned by the Get file information endpoint.

file = client.file('1122334455').get()
print(json.dumps(file.response_object))