├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── bad.py ├── py_look_for_timeouts ├── __init__.py └── main.py ├── requirements-tests.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── samples ├── bad_hardcoded.py ├── bad_httpconnection.py ├── bad_requests.py ├── bad_script.py ├── bad_script_2.py ├── bad_twilio_connection.py └── good.py └── test_basic.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/py-look-for-timeouts/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/py-look-for-timeouts/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/py-look-for-timeouts/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/py-look-for-timeouts/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/py-look-for-timeouts/HEAD/README.md -------------------------------------------------------------------------------- /bad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/py-look-for-timeouts/HEAD/bad.py -------------------------------------------------------------------------------- /py_look_for_timeouts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/py-look-for-timeouts/HEAD/py_look_for_timeouts/__init__.py -------------------------------------------------------------------------------- /py_look_for_timeouts/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/py-look-for-timeouts/HEAD/py_look_for_timeouts/main.py -------------------------------------------------------------------------------- /requirements-tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/py-look-for-timeouts/HEAD/requirements-tests.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=120 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/py-look-for-timeouts/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/samples/bad_hardcoded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/py-look-for-timeouts/HEAD/tests/samples/bad_hardcoded.py -------------------------------------------------------------------------------- /tests/samples/bad_httpconnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/py-look-for-timeouts/HEAD/tests/samples/bad_httpconnection.py -------------------------------------------------------------------------------- /tests/samples/bad_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/py-look-for-timeouts/HEAD/tests/samples/bad_requests.py -------------------------------------------------------------------------------- /tests/samples/bad_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/py-look-for-timeouts/HEAD/tests/samples/bad_script.py -------------------------------------------------------------------------------- /tests/samples/bad_script_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/py-look-for-timeouts/HEAD/tests/samples/bad_script_2.py -------------------------------------------------------------------------------- /tests/samples/bad_twilio_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/py-look-for-timeouts/HEAD/tests/samples/bad_twilio_connection.py -------------------------------------------------------------------------------- /tests/samples/good.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/py-look-for-timeouts/HEAD/tests/samples/good.py -------------------------------------------------------------------------------- /tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uber/py-look-for-timeouts/HEAD/tests/test_basic.py --------------------------------------------------------------------------------