├── .gitignore ├── .travis.yml ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── _static │ ├── .gitkeep │ └── custom.css ├── conf.py ├── index.rst ├── make.bat └── requirements-docs.txt ├── google ├── __init__.py ├── gapic │ ├── __init__.py │ └── longrunning │ │ ├── __init__.py │ │ ├── operations_client.py │ │ └── operations_client_config.json └── gax │ ├── __init__.py │ ├── _grpc_google_auth.py │ ├── api_callable.py │ ├── bundling.py │ ├── config.py │ ├── errors.py │ ├── grpc.py │ ├── path_template.py │ ├── retry.py │ └── utils │ ├── __init__.py │ ├── messages.py │ ├── metrics.py │ ├── oneof.py │ └── protobuf.py ├── nox.py ├── pylint.conf.py ├── setup.cfg ├── setup.py ├── test-requirements.txt └── tests ├── __init__.py ├── fixtures ├── __init__.py ├── fixture.proto └── fixture_pb2.py ├── test__grpc_google_auth.py ├── test_api_callable.py ├── test_bundling.py ├── test_gax.py ├── test_grpc.py ├── test_path_template.py ├── test_retry.py ├── test_utils_messages.py ├── test_utils_metrics.py ├── test_utils_oneof.py └── test_utils_protobuf.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/docs/requirements-docs.txt -------------------------------------------------------------------------------- /google/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/google/__init__.py -------------------------------------------------------------------------------- /google/gapic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/google/gapic/__init__.py -------------------------------------------------------------------------------- /google/gapic/longrunning/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/google/gapic/longrunning/__init__.py -------------------------------------------------------------------------------- /google/gapic/longrunning/operations_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/google/gapic/longrunning/operations_client.py -------------------------------------------------------------------------------- /google/gapic/longrunning/operations_client_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/google/gapic/longrunning/operations_client_config.json -------------------------------------------------------------------------------- /google/gax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/google/gax/__init__.py -------------------------------------------------------------------------------- /google/gax/_grpc_google_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/google/gax/_grpc_google_auth.py -------------------------------------------------------------------------------- /google/gax/api_callable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/google/gax/api_callable.py -------------------------------------------------------------------------------- /google/gax/bundling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/google/gax/bundling.py -------------------------------------------------------------------------------- /google/gax/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/google/gax/config.py -------------------------------------------------------------------------------- /google/gax/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/google/gax/errors.py -------------------------------------------------------------------------------- /google/gax/grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/google/gax/grpc.py -------------------------------------------------------------------------------- /google/gax/path_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/google/gax/path_template.py -------------------------------------------------------------------------------- /google/gax/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/google/gax/retry.py -------------------------------------------------------------------------------- /google/gax/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /google/gax/utils/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/google/gax/utils/messages.py -------------------------------------------------------------------------------- /google/gax/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/google/gax/utils/metrics.py -------------------------------------------------------------------------------- /google/gax/utils/oneof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/google/gax/utils/oneof.py -------------------------------------------------------------------------------- /google/gax/utils/protobuf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/google/gax/utils/protobuf.py -------------------------------------------------------------------------------- /nox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/nox.py -------------------------------------------------------------------------------- /pylint.conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/pylint.conf.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/fixture.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/tests/fixtures/fixture.proto -------------------------------------------------------------------------------- /tests/fixtures/fixture_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/tests/fixtures/fixture_pb2.py -------------------------------------------------------------------------------- /tests/test__grpc_google_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/tests/test__grpc_google_auth.py -------------------------------------------------------------------------------- /tests/test_api_callable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/tests/test_api_callable.py -------------------------------------------------------------------------------- /tests/test_bundling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/tests/test_bundling.py -------------------------------------------------------------------------------- /tests/test_gax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/tests/test_gax.py -------------------------------------------------------------------------------- /tests/test_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/tests/test_grpc.py -------------------------------------------------------------------------------- /tests/test_path_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/tests/test_path_template.py -------------------------------------------------------------------------------- /tests/test_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/tests/test_retry.py -------------------------------------------------------------------------------- /tests/test_utils_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/tests/test_utils_messages.py -------------------------------------------------------------------------------- /tests/test_utils_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/tests/test_utils_metrics.py -------------------------------------------------------------------------------- /tests/test_utils_oneof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/tests/test_utils_oneof.py -------------------------------------------------------------------------------- /tests/test_utils_protobuf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gax-python/HEAD/tests/test_utils_protobuf.py --------------------------------------------------------------------------------