├── .editorconfig ├── .github └── workflows │ ├── pypi.yml │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── Dockerfile ├── LICENSE ├── README.md ├── justfile ├── pyproject.toml ├── soxy ├── __init__.py ├── __main__.py ├── _config.py ├── _errors.py ├── _logger.py ├── _packages.py ├── _proxy.py ├── _ruleset.py ├── _session.py ├── _socks.py ├── _tcp.py ├── _types.py ├── _utils.py ├── _wrappers.py └── py.typed ├── tests ├── __init__.py ├── conftest.py ├── test_config.py ├── test_packages.py ├── test_proxy.py ├── test_ruleset.py ├── test_socks.py ├── test_tcp.py ├── test_utils.py └── test_wrappers.py └── uv.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/.github/workflows/pypi.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/README.md -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/justfile -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /soxy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/soxy/__init__.py -------------------------------------------------------------------------------- /soxy/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/soxy/__main__.py -------------------------------------------------------------------------------- /soxy/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/soxy/_config.py -------------------------------------------------------------------------------- /soxy/_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/soxy/_errors.py -------------------------------------------------------------------------------- /soxy/_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/soxy/_logger.py -------------------------------------------------------------------------------- /soxy/_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/soxy/_packages.py -------------------------------------------------------------------------------- /soxy/_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/soxy/_proxy.py -------------------------------------------------------------------------------- /soxy/_ruleset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/soxy/_ruleset.py -------------------------------------------------------------------------------- /soxy/_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/soxy/_session.py -------------------------------------------------------------------------------- /soxy/_socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/soxy/_socks.py -------------------------------------------------------------------------------- /soxy/_tcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/soxy/_tcp.py -------------------------------------------------------------------------------- /soxy/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/soxy/_types.py -------------------------------------------------------------------------------- /soxy/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/soxy/_utils.py -------------------------------------------------------------------------------- /soxy/_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/soxy/_wrappers.py -------------------------------------------------------------------------------- /soxy/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/tests/test_packages.py -------------------------------------------------------------------------------- /tests/test_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/tests/test_proxy.py -------------------------------------------------------------------------------- /tests/test_ruleset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/tests/test_ruleset.py -------------------------------------------------------------------------------- /tests/test_socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/tests/test_socks.py -------------------------------------------------------------------------------- /tests/test_tcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/tests/test_tcp.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/tests/test_wrappers.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shpaker/soxyproxy/HEAD/uv.lock --------------------------------------------------------------------------------