Skip to content

Commit 447b68e

Browse files
committed
Add pip and Selenium Base to projects using proxy.py
1 parent aa596f9 commit 447b68e

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

README.md

+12-10
Original file line numberDiff line numberDiff line change
@@ -2497,16 +2497,18 @@ for list of tests.
24972497

24982498
# Projects Using Proxy.Py
24992499

2500-
Some of the projects using `proxy.py`
2501-
2502-
1. [ray-project](https://github.com/ray-project/ray)
2503-
2. [aio-libs](https://github.com/aio-libs/aiohttp)
2504-
3. [wifipumpkin3](https://github.com/P0cL4bs/wifipumpkin3)
2505-
4. [MerossIot](https://github.com/albertogeniola/MerossIot)
2506-
5. [pyshorteners](https://github.com/ellisonleao/pyshorteners)
2507-
6. [Slack API](https://github.com/slackapi/python-slack-events-api)
2508-
7. [ibeam](https://github.com/Voyz/ibeam)
2509-
8. [PyPaperBot](https://github.com/ferru97/PyPaperBot)
2500+
Some popular projects using `proxy.py`
2501+
2502+
- [pip](https://github.com/pypa/pip)
2503+
- [ray-project](https://github.com/ray-project/ray)
2504+
- [aio-libs](https://github.com/aio-libs/aiohttp)
2505+
- [Selenium Base](https://github.com/seleniumbase/SeleniumBase)
2506+
- [wifipumpkin3](https://github.com/P0cL4bs/wifipumpkin3)
2507+
- [MerossIot](https://github.com/albertogeniola/MerossIot)
2508+
- [pyshorteners](https://github.com/ellisonleao/pyshorteners)
2509+
- [Slack API](https://github.com/slackapi/python-slack-events-api)
2510+
- [ibeam](https://github.com/Voyz/ibeam)
2511+
- [PyPaperBot](https://github.com/ferru97/PyPaperBot)
25102512

25112513
For full list see [used by](https://github.com/abhinavsingh/proxy.py/network/dependents?package_id=UGFja2FnZS01MjQ0MDY5Ng%3D%3D)
25122514

proxy/http/client.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ def client(
4848
)
4949
try:
5050
conn = new_socket_connection((host.decode(), port))
51-
except Exception as exc:
52-
logger.exception('Cannot establish connection', exc_info=exc)
51+
except Exception:
52+
# logger.exception('Cannot establish connection', exc_info=exc)
5353
return None
5454
sock: TcpOrTlsSocket = conn
5555
if scheme == HTTPS_PROTO:

0 commit comments

Comments
 (0)