You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+32Lines changed: 32 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,38 @@ After collecting the proxy data and filtering the slowest ones it is randomly se
31
31
The request timeout is configured at 30 seconds and if the proxy fails to return a response it is deleted from the application proxy list.
32
32
I have to mention that for each request a different agent header is used. The different headers are stored in the **/data/user_agents.txt** file which contains around 900 different agents.
33
33
34
+
## How to use
35
+
36
+
The project is now distribured as a PyPI package!
37
+
To run an example simply include **http-request-randomizer==0.0.5** in your requirements.txt file.
38
+
Then run the code below:
39
+
40
+
````python
41
+
import time
42
+
from http.requests.proxy.requestProxy import RequestProxy
0 commit comments