无参数的get调用

#coding=utf-8

#使用get方法获取自己账号信息
import requests
import json

URL = 'https://api.github.com'


def build_uri(endpoint):
    return '/'.join([URL, endpoint])  # 主要作用是拼接接口请求地址


def better_output(json_str):
    return json.dumps(json.loads(json_str), indent=4)  # 采用json里面提供方法打印出来,格式更好看


def request_method():
    response = requests.get(build_uri('users/liyan123A'))  # 调用get方法,注意用户名这个地方写法,没有图片中冒号
    print(better_output(response.text))  # 调用json更好格式输出


if __name__ == '__main__':
    request_method()

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值