使用python3批量下载rbsp数据的示例代码
Python  /  管理员 发布于 7年前   272
1. 原始网站
https://www.rbsp-ect.lanl.gov/data_pub/rbspa/
2. 算法说明
进入需要下载的数据所在的目录,获取并解析该目录下的信息,解析出cdf文件名后,将cdf文件下载到内存中,随后保存到硬盘中。程序使用python3实现。
3. 程序代码
#!/bin/python3# get the rbsp data# writen by Liangjin Song on 20191219import sysimport requestsfrom pathlib import Path# the url containing the cdf filesurl="https://www.rbsp-ect.lanl.gov/data_pub/rbspa/ECT/level2/2016/"# local path to save the cdf filepath="/home/liangjin/Downloads/test/"def main(): re=requests.get(url) html=re.text cdfs=resolve_cdf(html) ncdf=len(cdfs) if ncdf == 0: return print(str(ncdf) + " cdf files are detected.") i=1 # download for f in cdfs: rcdf=url+f lcdf=path+f print(str(i)+ " Downloading " + rcdf) download_cdf(rcdf,lcdf) i+=1 return# resolve the file name of cdfdef resolve_cdf(html): cdfs=list() head=html.find("href="https:/article/) if head == -1: print("The cdf files not found!") return cdfs leng=len(html) while head != -1: tail=html.find(">",head,leng) # Extract the cdf file name cdf=html[head+6:tail-1] head=html.find("href="https:/article/,tail,leng) if cdf.find('cdf') == -1: continue cdfs.append(cdf) return cdfsdef download_cdf(rcdf,lcdf): rfile=requests.get(rcdf) with open(lcdf,"wb") as f: f.write(rfile.content) f.close() returnif __name__ == "__main__": lpath=Path(path) if not lpath.is_dir(): print("Path not found: " + path) sys.exit(0) sys.exit(main())
4. 使用说明
url为远程cdf文件所在路径。
path为本地保存cdf文件的路径。
url和path的末尾都有“/”(Linux下情形,若是Windows,路径分隔符为“\\”,则path末尾应为“\\”)。
5. 运行效果
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
122 在
学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..博主 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..1111 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号