打开/关闭菜单
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

Requests:修订间差异

来自天明的百科全书
天明留言 | 贡献
创建页面,内容为“非常知名而且重要的 Python 库。 https://github.com/psf/requests {{联系天明}} 分类:Python 库
 
天明留言 | 贡献
无编辑摘要
 
(未显示2个用户的5个中间版本)
第1行: 第1行:
非常知名而且重要的 Python 库。
非常知名而且重要的 [[Python]] 库。


https://github.com/psf/requests
https://github.com/psf/requests


{{联系天明}}
== 安装 ==
<syntaxhighlight lang="bash" copy>
python -m pip install requests
</syntaxhighlight>
 
== 基本使用 ==
<syntaxhighlight lang="python3">
import requests
 
r = requests.get('https://api.github.com/events')
</syntaxhighlight>
 
== 另请参阅 ==
 
* [https://requests.readthedocs.io/en/latest/# Requests: HTTP for Humans™ — Requests 2.32.3 documentation]
* {{使用搜索引擎搜索}}
 
[[分类:信息技术]]
[[分类:Python 库]]
[[分类:Python 库]]

2025年10月30日 (四) 01:32的最新版本

非常知名而且重要的 Python 库。

https://github.com/psf/requests

安装

python -m pip install requests

基本使用

import requests

r = requests.get('https://api.github.com/events')

另请参阅