grpc.io/content/en/docs/languages/python/alts.md

699 B

title short_title description weight spelling code
ALTS authentication in Python ALTS An overview of gRPC authentication in Python using Application Layer Transport Security (ALTS). 75 cSpell:ignore creds
client_credentials server_credentials
```python import grpc channel_creds = grpc.alts_channel_credentials() channel = grpc.secure_channel(address, channel_creds) ``` ```python import grpc server = grpc.server(futures.ThreadPoolExecutor()) server_creds = grpc.alts_server_credentials() server.add_secure_port(server_address, server_creds) ```

{{% docs/auth_alts %}}