{"body":"import urllib3\nhttp = urllib3.PoolManager()\nimport time\n\ntry:\n    clock = time.process_time\nexcept:\n    clock = time.clock\n\nl = []\nfor _ in range(10):\n    t0 = clock()\n    for i in range(100):\n        http.request('GET', \"https://www.python.org\")\n    t1 = clock()\n    print(\"Next: %.2f\" % (t1 - t0))\n    l.append(t1-t0)\nprint(\"Average: %.2f\" % (sum(l)/len(l)))","name":"","extension":"txt","url":"https://www.irccloud.com/pastebin/hp0tJ1rd","modified":1635876286,"id":"hp0tJ1rd","size":360,"lines":18,"own_paste":false,"theme":"","date":1635876286}