requests
Here are 3,194 public repositories matching this topic...
Guzzle, an extensible PHP HTTP client
-
Updated
May 25, 2022 - PHP
C++ Requests: Curl for People, a spiritual port of Python Requests.
-
Updated
May 27, 2022 - C++
-
Updated
May 27, 2022 - C
A Python library for automating interaction with websites.
-
Updated
May 19, 2022 - Python
PHP Curl Class makes it easy to send HTTP requests and integrate with web APIs
-
Updated
Mar 17, 2022 - PHP
HttpRunner 是一个开源的 API 测试工具,支持 HTTP(S) / HTTP2 / WebSocket / RPC 等网络协议,涵盖接口测试、性能测试、数字体验监测等测试类型。简单易用,功能强大,具有丰富的插件化机制和高度的可扩展能力。
-
Updated
May 27, 2022 - Go
Integration layer between Requests and Selenium for automation of web actions.
-
Updated
Apr 17, 2022 - Python
Performance-Bookmarklet helps to analyze the current page through the Resource Timing API, Navigation Timing API and User-Timing - requests by type, domain, load times, marks and more. Sort of a light live WebPageTest.
-
Updated
May 26, 2022 - JavaScript
PSR的RequestInterface没有规定实现exec方法,所以我设计组装一个http客户端无关的request的时候,我肯定不能绑定和客户端强相关的exec方法到Request上,因为每个客户端的异常类型、处理逻辑都不相同。
我设计一个composer组件,在组装请求部分,返回了个psr对象,本意是guzzle或者saber等支持PSR标准的HTTP客户端都可以按psr标准把这个对象代表的请求发送出去,现在Guzzle可以做到($guzzleClient->send($PSRrequest))而saber因为把PSR相关的处理逻辑绑定到他自定义的Request上,导致这样的设计没法实施。
The documentation is an important part of this project. Requests-cache aims to be user-friendly, easy to get started with for new users, and flexible and powerful for advanced users.
If you are looking for ways to help out, there is always room for more improvement in the docs. You can help by making changes yourself and submitting a PR, or yo
I was expecting it in https://www.python-httpx.org/advanced/#ssl-certificates section.
I went to read the source code expecting parallel api like this. And I found it supported.
I search the docs again but it is mentioned on https://www.python-httpx.org/compatibility/
Requests 3.0, for Humans and Machines, alike.
-
Updated
Jan 11, 2020 - Python
WebUI/HTTP automation testing framework based on unittest
-
Updated
May 26, 2022 - Python
接口自动化测试框架——python版,支持HTTP,dubbo协议接口
-
Updated
Apr 23, 2022 - Python
A module that integrates selenium and requests session, encapsulates common page operations, can achieve seamless switching between the two modes.
-
Updated
Mar 20, 2022 - Python
Async requests-like httplib for python.
-
Updated
May 17, 2022 - Python
A Laravel / PHP package that helps you write beautiful API integrations and SDKs.
-
Updated
May 27, 2022 - PHP
Improve this page
Add a description, image, and links to the requests topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the requests topic, visit your repo's landing page and select "manage topics."


If you're using proxies with
requests-htmland renderingJSsites is all good. Once you render a website pyppeteer don't know about this proxies and will expose your IP. This is an undesired behavior when scraping with proxies.The idea is that whenever someone passes in proxies to the
sessionobject or anymethod call, make pyppeteer also use these proxies. #265