What is HTTPX?
HTTPX is a modern HTTP client for Python that provides both synchronous and asynchronous APIs. It is useful for making HTTP requests, handling sessions, and working with proxies, authentication, and streaming responses. Together with Oculus Proxies you can perform the best requests1
Install Python
Verify that Python is installed on your system before proceeding.
2
Install HTTPX
- Run the following command to install HTTPX:
- To enable SOCKS proxy support, install it with:
3
Send a request
Copy the following code to configure HTTPX with Oculus Proxies, and remember to include the authentication details:
-
username- Use your Oculus’s username. -
password- Use your Oculus’s password. - Basic request doesn’t require Host and Port.
Python
4
SOCKS5 Request
Use the provided example to make a SOCKS5 request using HTTPX:
-
username- Your proxy’s username. -
password- Your proxy’s password. -
host- Your proxy’s host. -
port- Your proxy’s port.
Python
5
Asynchronous Request
Refer to the example for making an asynchronous request with HTTPX:
Python