Skip to content

Commit

Permalink
Add pip and Selenium Base to projects using proxy.py
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinavsingh committed Aug 16, 2024
1 parent aa596f9 commit 447b68e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
22 changes: 12 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2497,16 +2497,18 @@ for list of tests.

# Projects Using Proxy.Py

Some of the projects using `proxy.py`

1. [ray-project](https://github.com/ray-project/ray)
2. [aio-libs](https://github.com/aio-libs/aiohttp)
3. [wifipumpkin3](https://github.com/P0cL4bs/wifipumpkin3)
4. [MerossIot](https://github.com/albertogeniola/MerossIot)
5. [pyshorteners](https://github.com/ellisonleao/pyshorteners)
6. [Slack API](https://github.com/slackapi/python-slack-events-api)
7. [ibeam](https://github.com/Voyz/ibeam)
8. [PyPaperBot](https://github.com/ferru97/PyPaperBot)
Some popular projects using `proxy.py`

- [pip](https://github.com/pypa/pip)
- [ray-project](https://github.com/ray-project/ray)
- [aio-libs](https://github.com/aio-libs/aiohttp)
- [Selenium Base](https://github.com/seleniumbase/SeleniumBase)
- [wifipumpkin3](https://github.com/P0cL4bs/wifipumpkin3)
- [MerossIot](https://github.com/albertogeniola/MerossIot)
- [pyshorteners](https://github.com/ellisonleao/pyshorteners)
- [Slack API](https://github.com/slackapi/python-slack-events-api)
- [ibeam](https://github.com/Voyz/ibeam)
- [PyPaperBot](https://github.com/ferru97/PyPaperBot)

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

Expand Down
4 changes: 2 additions & 2 deletions proxy/http/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ def client(
)
try:
conn = new_socket_connection((host.decode(), port))
except Exception as exc:
logger.exception('Cannot establish connection', exc_info=exc)
except Exception:
# logger.exception('Cannot establish connection', exc_info=exc)
return None
sock: TcpOrTlsSocket = conn
if scheme == HTTPS_PROTO:
Expand Down

0 comments on commit 447b68e

Please sign in to comment.