mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2024-11-24 04:21:08 +00:00
20 lines
295 B
Markdown
20 lines
295 B
Markdown
# Web proxy request application using Python
|
|
|
|
|
|
A quick, reliable and random Web Proxy request application using Python.
|
|
|
|
## 3rd party libraries used
|
|
|
|
- requests
|
|
|
|
- bs4
|
|
|
|
## Usage
|
|
|
|
```
|
|
from proxy_request import proxy_request
|
|
|
|
r = proxy_request('get', "https://httpbin.org/ip")
|
|
|
|
print(r.json())
|
|
``` |