├── .github ├── dependabot.yml └── workflows │ └── test_and_release.yml ├── .gitignore ├── LICENSE ├── README.md ├── requirements-test.txt ├── requirements.txt ├── setup.py ├── tests └── test_sniffers.py └── what_vpn ├── __main__.py ├── requests.py ├── sniffers.py └── version.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlenski/what-vpn/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test_and_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlenski/what-vpn/HEAD/.github/workflows/test_and_release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.py[co] 3 | *.egg-info 4 | __pycache__ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlenski/what-vpn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlenski/what-vpn/HEAD/README.md -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- 1 | nose2 2 | coverage 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlenski/what-vpn/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlenski/what-vpn/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_sniffers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlenski/what-vpn/HEAD/tests/test_sniffers.py -------------------------------------------------------------------------------- /what_vpn/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlenski/what-vpn/HEAD/what_vpn/__main__.py -------------------------------------------------------------------------------- /what_vpn/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlenski/what-vpn/HEAD/what_vpn/requests.py -------------------------------------------------------------------------------- /what_vpn/sniffers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlenski/what-vpn/HEAD/what_vpn/sniffers.py -------------------------------------------------------------------------------- /what_vpn/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.7" 2 | --------------------------------------------------------------------------------