使用python为csv添加超链接



我试图添加一个超链接到csv。我从ArcGIS Survey123中导出数据和附件。csv文件只有照片的文件名

photos_20220216144827.jpg, photos_20220329110509.jpg, 60th_virtual_background.jpg

我想添加一个超链接,以便更快地访问图像。所有照片保存在以下目录B:Survey123survey_attachments

用这行代码我就能算出来了。

# Adding hyperlink
df = pd.read_excel(surveyResults)
df['Column containing image name'] = '=HYPERLINK("location of folder containing images' + df["Column containing image name"] + '")'
df.to_excel('location where to save new excel', index=False)

相关内容

  • 没有找到相关文章