This repository was archived by the owner on Jan 10, 2023. It is now read-only.

Description
use python2.7
device.Pull(file_name, dest_file)
return {TypeError}coercing to Unicode: need string or buffer, file found
And I must use follow way to get work around:
file_bytes = device.Pull(file_name)
output_file = open(dest_file, "wb")
output_file.write(file_bytes)
output_file.close()