最近在学python3,想知道requests 和urllib有什么区别

像是看视频看到设置代理这一段,urllib.request下面就有ProxyHandler这个模块可以使用去设置代理ip,但是就没有查到如果使用requests怎么去设置代理

        proxies = {"http": "http://10.10.1.10:3128",
            "https": "http://10.10.1.10:1080",}
     session.get("http://example.org", proxies=proxies)

这种问题以后还是goole下再问