I can search my papers on IEEExplore

作者在闲暇之余使用Google进行搜索时,意外地在IEEExplore上找到了自己发表的论文。

无聊

 

随便搜索一下

 

当然我的习惯自然是Goooooooogle

 

结果goo出来,没想到居然在IEEExplore搜到了自己的paper

 

Just search the Author "Qian Bin-feng" so U got it

 

### IEEE Xplore 中无人机物联网相关文献检索 对于寻找有关无人机与物联网相结合的研究论文和其他资源,在IEEE Xplore数据库中是一个理想的选择。该平台提供了大量高质量的技术文档,涵盖了从基础理论到实际应用的各种主题。 为了更有效地找到所需的资料,建议使用特定关键词组合进行搜索,例如:“drone IoT”,“unmanned aerial vehicle Internet of Things”,或者更加具体的术语如“energy harvesting prediction using LSTM for drone-IoT systems”。这些精确的查询可以帮助缩小范围至最相关的文章[^1]。 此外,还可以利用高级搜索功能进一步筛选结果,比如按出版年份、作者、期刊名称等条件过滤。这样能够确保获取的信息既新颖又具有学术价值。针对具体技术细节,像基于深度学习算法优化无人机任务调度机制等内容也值得深入探索[^2]。 #### 示例代码:构建简单的Python脚本用于自动化下载并解析IEEE Xplore上的元数据(仅作示例用途) ```python import requests from bs4 import BeautifulSoup def fetch_ieee_metadata(query): url = f"https://ieeexplore.ieee.org/search/searchresult.jsp?newsearch=true&queryText={query}" response = requests.get(url) soup = BeautifulSoup(response.content, 'html.parser') papers = [] items = soup.find_all('div', class_='List-results-items') for item in items[:5]: # 只取前五篇作为例子展示 title = item.h2.a.text.strip() link = "https://ieeexplore.ieee.org" + item.h2.a['href'] abstract = item.p.text.strip() if item.p else '' paper_info = { 'title': title, 'link': link, 'abstract': abstract } papers.append(paper_info) return papers if __name__ == "__main__": query = input("请输入要搜索的关键字:") results = fetch_ieee_metadata(query) for idx, result in enumerate(results, start=1): print(f"{idx}. {result['title']}\n链接:{result['link']}") ``` 此段代码展示了如何编写一个基本的爬虫程序来抓取IEEE Xplore网站上关于指定话题的文章列表及其摘要信息。请注意,在实际操作时应当遵循目标站点的服务条款,并考虑合法性和版权问题[^3]。
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值