Python 请求 AWS Glue 中的库

Python requests library in AWS Glue

您可以在 AWS Glue 中使用 Python 的请求库吗?由于 Glue 仅支持纯 python 模块,是否有可以与 Glue 一起使用的 Requests 库的替代品?

您可以使用 urllib 包。

来自文档:

urllib is a package that collects several modules for working with URLs:

  • urllib.request for opening and reading URLs
  • urllib.error containing the exceptions raised by urllib.request
  • urllib.parse for parsing URLs
  • urllib.robotparser for parsing robots.txt files

使用 requests

的简单获取请求
import requests
r=requests.get('http://www.python.org/')
print(r.text)

替代使用 urllib

import urllib.request
r=urllib.request.urlopen('http://www.python.org/').read()
print(r)