将输出重定向到文件时的UnicodeEncodeError - python 2.7

时间:2018-01-12 10:58:37

标签: python file-io utf-8 python-unicode google-static-maps

我必须将googlemaps API函数的输出重定向到文件。我的pandas数据框中有一些objects,我通过google API获取地址。

import googlemaps
from __future__ import print_function
f=open('output.csv', 'w')
for idx, row in df.iterrows():
    gmaps = googlemaps.Client(key="my_key")
    reverse_result = gmaps.reverse_geocode((row['lat'], row['lon']), result_type='administrative_area_level_3')
    for result in reverse_result:
        print (row['object'],result["formatted_address"], file=f)

当我这样做时,我收到错误:

UnicodeEncodeError: 'ascii' codec can't encode character u'\xf3' in position 15: ordinal not in range(128)

如果我只是将它打印到屏幕上,它可以完美地工作,并显示格式正确的地址;问题在于将其写入外部文件。我想我明白错误信息告诉我的是 - 输出中有一些字符没有用utf8编码 - 但我不知道如何解决它并将输出写入我的csv。

1 个答案:

答案 0 :(得分:0)

问题解决了。事实证明,问题不是API的结果,而是来自df的row['object']。我写了一个简单的函数

def force_to_unicode(text):
    return text if isinstance(text, unicode) else text.decode('utf8')

然后我只编辑了第二个for循环:

for result in reverse_result:
        a=force_to_unicode(row['object']) 
        b=result['formatted_address']
        print(a,',',b, file=f) #write result to csv file