码迷,mamicode.com
首页 > 编程语言 > 详细

Python抓取远程文件获取真实文件名

时间:2018-03-26 17:55:36      阅读:312      评论:0      收藏:0      [点我收藏+]

标签:hdfs   ace   else   python   bsp   inf   path   下载   urlopen   

用urllib下载远程文件并转存到hdfs服务器,在下载时,下载地址中不一定包含文件名,需要从连接信息中获取。

 1     file_url = request.form.get(‘file_url‘)
 2     fo = urllib.urlopen(file_url)
 3     blob = fo.read()
 4     file_size = len(blob)
 5     if fo.info().has_key(‘Content-Disposition‘):
 6         file_name = fo.info()[‘Content-Disposition‘].split(‘filename=‘)[1]
 7         file_name = file_name.replace(‘"‘, ‘‘).replace("‘", "")
 8         print ‘-in header‘
 9     else:
10         file_name= os.path.basename(file_url)
11         
12     file_ext = get_file_ext(file_name.lower())
13     remark = request.form.get("remark", ‘‘)
14     # 存储到hdfs

 

Python抓取远程文件获取真实文件名

标签:hdfs   ace   else   python   bsp   inf   path   下载   urlopen   

原文地址:https://www.cnblogs.com/legendjslc/p/8652414.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!