各位大神好,最近不知道为什么freepatentonline上不去了,无法下载专利了。 只能找别的方法来下载专利了。 偶然间发现 https://image-ppubs.uspto.gov/di ... loadPdf/20190032218 https://image-ppubs.uspto.gov/di ... ownloadPdf/11732745 后面就是专利号,粘贴到地址栏就会在页面上显示了。 想知道如何用python或者auhotkey下载这个专利下来。 专利, 专利号
[Python] 纯文本查看 复制代码import requests def download_file(file_id): url = f"https://image-ppubs.uspto.gov/dirsearch-public/print/downloadPdf/{file_id}" response = requests.get(url, stream=True) if response.status_code == 200: with open(f"{file_id}.pdf", "wb") as f: for chunk in response.iter_content(chunk_size=1024): if chunk: # 过滤掉保持连接的新块 f.write(chunk) print(f"文件下载成功,保存为{file_id}.pdf") else: print(f"文件下载失败,状态码:{response.status_code}") # 使用文件ID作为参数 file_id = "11732745" download_file(file_id) [i]