我似乎无法使用pypodio客户端创建文件并将其附加到podio中的项目,pypodio客户端是PODIO API的python包装器。我试图获取文件ID但继续得到错误。我使用的是Python 3.6.0
我的代码是
`path = os.getcwd()`
`filename="system_information"`
`filepath = path + "\\system_information.txt"`
`filedata=open(filepath)`
uploading_response = pcbapp.Files.create(filename,filedata)
我收到如下错误, get_headers中的文件" c:\ users \ nipun.arora \ src \ podio-py \ pypodio2 \ encode.py",第317行 boundary = urllib.quote_plus(boundary) AttributeError:module' urllib'没有属性' quote_plus'
答案 0 :(得分:0)
那可能是因为python3中没有urllib.quote_plus
。你能尝试在python2中运行相同的代码吗?