Python grpc.metadata_call_credentials() Examples
The following are 30
code examples of grpc.metadata_call_credentials().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
grpc
, or try the search function
.
Example #1
Source File: base_client.py From lnd_grpc with MIT License | 6 votes |
def combined_credentials(self) -> grpc.CallCredentials: """ Combine ssl and macaroon credentials :return: grpc.composite_channel_credentials """ cert_creds = grpc.ssl_channel_credentials(self.tls_cert) auth_creds = grpc.metadata_call_credentials(self.metadata_callback) return grpc.composite_channel_credentials(cert_creds, auth_creds)
Example #2
Source File: lnd_client.py From node-launcher with MIT License | 6 votes |
def lnd_client(self): if self._lnd_client is not None: return self._lnd_client auth_credentials = grpc.metadata_call_credentials( self.metadata_callback) credentials = grpc.composite_channel_credentials( self.get_cert_credentials(), auth_credentials) grpc_channel = grpc.secure_channel( f'{self.grpc_host}:{self.grpc_port}', credentials, options=self.grpc_options ) self._lnd_client = lnrpc.LightningStub(grpc_channel) return self._lnd_client
Example #3
Source File: client.py From raspiblitz with MIT License | 5 votes |
def get_rpc_channel(host="localhost", port="10009", cert_path=None, macaroon_path=None): if not macaroon_path: raise Exception("need to specify a macaroon path!") def metadata_callback(context, callback): # for more info see grpc docs callback([('macaroon', macaroon)], None) # Due to updated ECDSA generated tls.cert we need to let gprc know that # we need to use that cipher suite otherwise there will be a handshake # error when we communicate with the lnd rpc server. os.environ["GRPC_SSL_CIPHER_SUITES"] = 'HIGH+ECDSA' if not cert_path: cert_path = os.path.expanduser('~/.lnd/tls.cert') assert isfile(cert_path) and os.access(cert_path, os.R_OK), \ "File {} doesn't exist or isn't readable".format(cert_path) cert = open(cert_path, 'rb').read() with open(macaroon_path, 'rb') as f: macaroon_bytes = f.read() macaroon = codecs.encode(macaroon_bytes, 'hex') # build ssl credentials using the cert the same as before cert_creds = grpc.ssl_channel_credentials(cert) # now build meta data credentials auth_creds = grpc.metadata_call_credentials(metadata_callback) # combine the cert credentials and the macaroon auth credentials # such that every call is properly encrypted and authenticated combined_creds = grpc.composite_channel_credentials(cert_creds, auth_creds) # finally pass in the combined credentials when creating a channel return grpc.secure_channel('{}:{}'.format(host, port), combined_creds)
Example #4
Source File: common.py From lnd-grpc-client with MIT License | 5 votes |
def generate_credentials(cert, macaroon): """Create composite channel credentials using cert and macaroon metatdata""" # create cert credentials from the tls.cert file cert_creds = grpc.ssl_channel_credentials(cert) # build meta data credentials metadata_plugin = MacaroonMetadataPlugin(macaroon) auth_creds = grpc.metadata_call_credentials(metadata_plugin) # combine the cert credentials and the macaroon auth credentials # such that every call is properly encrypted and authenticated return grpc.composite_channel_credentials(cert_creds, auth_creds)
Example #5
Source File: auth.py From tensorboard with Apache License 2.0 | 5 votes |
def id_token_call_credentials(credentials): """Constructs `grpc.CallCredentials` using `google.auth.Credentials.id_token`. Args: credentials (google.auth.credentials.Credentials): The credentials to use. Returns: grpc.CallCredentials: The call credentials. """ request = google.auth.transport.requests.Request() return grpc.metadata_call_credentials( IdTokenAuthMetadataPlugin(credentials, request) )
Example #6
Source File: smart_trash_can.py From ai-makers-kit with MIT License | 5 votes |
def getCredentials(): with open('../data/ca-bundle.pem', 'rb') as f: trusted_certs = f.read() sslCred = grpc.ssl_channel_credentials(root_certificates=trusted_certs) authCred = grpc.metadata_call_credentials(credentials) return grpc.composite_channel_credentials(sslCred, authCred) ### KWS
Example #7
Source File: ex2_getVoice2Text.py From ai-makers-kit with MIT License | 5 votes |
def getCredentials(): with open('../data/ca-bundle.pem', 'rb') as f: trusted_certs = f.read() sslCred = grpc.ssl_channel_credentials(root_certificates=trusted_certs) authCred = grpc.metadata_call_credentials(credentials) return grpc.composite_channel_credentials(sslCred, authCred) ### END OF COMMON ### ### STT
Example #8
Source File: ex4_getText2VoiceStream.py From ai-makers-kit with MIT License | 5 votes |
def getCredentials(): with open('/home/pi/ai-makers-kit/data/ca-bundle.pem', 'rb') as f: trusted_certs = f.read() sslCred = grpc.ssl_channel_credentials(root_certificates=trusted_certs) authCred = grpc.metadata_call_credentials(credentials) return grpc.composite_channel_credentials(sslCred, authCred) ### END OF COMMON ### # TTS : getText2VoiceStream
Example #9
Source File: ex2_getVoice2Text.py From ai-makers-kit with MIT License | 5 votes |
def getCredentials(): with open('../data/ca-bundle.pem', 'rb') as f: trusted_certs = f.read() sslCred = grpc.ssl_channel_credentials(root_certificates=trusted_certs) authCred = grpc.metadata_call_credentials(credentials) return grpc.composite_channel_credentials(sslCred, authCred) ### END OF COMMON ### ### STT
Example #10
Source File: ex4_getText2VoiceStream.py From ai-makers-kit with MIT License | 5 votes |
def getCredentials(): with open('/home/pi/ai-makers-kit/data/ca-bundle.pem', 'rb') as f: trusted_certs = f.read() sslCred = grpc.ssl_channel_credentials(root_certificates=trusted_certs) authCred = grpc.metadata_call_credentials(credentials) return grpc.composite_channel_credentials(sslCred, authCred) ### END OF COMMON ### # TTS : getText2VoiceStream
Example #11
Source File: user_auth.py From ai-makers-kit with MIT License | 5 votes |
def getCredentials(): sslCred = grpc.ssl_channel_credentials() authCred = grpc.metadata_call_credentials(credentials) return grpc.composite_channel_credentials(sslCred, authCred) ### END OF COMMON ###
Example #12
Source File: grpc.py From ai-makers-kit with MIT License | 5 votes |
def getCredentials(): sslCred = grpc.ssl_channel_credentials() authCred = grpc.metadata_call_credentials(credentials) return grpc.composite_channel_credentials(sslCred, authCred) ### END OF COMMON ### # gRPC channel
Example #13
Source File: smart_trash_can.py From ai-makers-kit with MIT License | 5 votes |
def getCredentials(): with open('../data/ca-bundle.pem', 'rb') as f: trusted_certs = f.read() sslCred = grpc.ssl_channel_credentials(root_certificates=trusted_certs) authCred = grpc.metadata_call_credentials(credentials) return grpc.composite_channel_credentials(sslCred, authCred) ### KWS
Example #14
Source File: ex4_getText2VoiceStream.py From ai-makers-kit with MIT License | 5 votes |
def getCredentials(): with open('/home/pi/ai-makers-kit/data/ca-bundle.pem', 'rb') as f: trusted_certs = f.read() sslCred = grpc.ssl_channel_credentials(root_certificates=trusted_certs) authCred = grpc.metadata_call_credentials(credentials) return grpc.composite_channel_credentials(sslCred, authCred) ### END OF COMMON ### # TTS : getText2VoiceStream
Example #15
Source File: grpc.py From ai-makers-kit with MIT License | 5 votes |
def getCredentials(): sslCred = grpc.ssl_channel_credentials() authCred = grpc.metadata_call_credentials(credentials) return grpc.composite_channel_credentials(sslCred, authCred) ### END OF COMMON ### # gRPC channel
Example #16
Source File: ex4_getText2VoiceStream.py From ai-makers-kit with MIT License | 5 votes |
def getCredentials(): sslCred = grpc.ssl_channel_credentials() authCred = grpc.metadata_call_credentials(credentials) return grpc.composite_channel_credentials(sslCred, authCred) ### END OF COMMON ### # TTS : getText2VoiceStream
Example #17
Source File: ex2_getVoice2Text.py From ai-makers-kit with MIT License | 5 votes |
def getCredentials(): sslCred = grpc.ssl_channel_credentials() authCred = grpc.metadata_call_credentials(credentials) return grpc.composite_channel_credentials(sslCred, authCred) ### END OF COMMON ###
Example #18
Source File: ex5_queryText.py From ai-makers-kit with MIT License | 5 votes |
def getCredentials(): sslCred = grpc.ssl_channel_credentials() authCred = grpc.metadata_call_credentials(credentials) return grpc.composite_channel_credentials(sslCred, authCred) ### END OF COMMON ### # DIALOG : queryByText
Example #19
Source File: ex3_getText2VoiceUrl.py From ai-makers-kit with MIT License | 5 votes |
def getCredentials(): sslCred = grpc.ssl_channel_credentials() authCred = grpc.metadata_call_credentials(credentials) return grpc.composite_channel_credentials(sslCred, authCred) ### END OF COMMON ### # TTS : getText2VoiceUrl
Example #20
Source File: proj2_yt_mvp.py From ai-makers-kit with MIT License | 5 votes |
def getCredentials(): with open('../data/ca-bundle.pem', 'rb') as f: trusted_certs = f.read() sslCred = grpc.ssl_channel_credentials(root_certificates=trusted_certs) authCred = grpc.metadata_call_credentials(credentials) return grpc.composite_channel_credentials(sslCred, authCred) ### KWS
Example #21
Source File: ex4_getText2VoiceStream.py From ai-makers-kit with MIT License | 5 votes |
def getCredentials(): with open('/home/pi/ai-makers-kit/data/ca-bundle.pem', 'rb') as f: trusted_certs = f.read() sslCred = grpc.ssl_channel_credentials(root_certificates=trusted_certs) authCred = grpc.metadata_call_credentials(credentials) return grpc.composite_channel_credentials(sslCred, authCred) ### END OF COMMON ### # TTS : getText2VoiceStream
Example #22
Source File: ex2_getVoice2Text.py From ai-makers-kit with MIT License | 5 votes |
def getCredentials(): with open('../data/ca-bundle.pem', 'rb') as f: trusted_certs = f.read() sslCred = grpc.ssl_channel_credentials(root_certificates=trusted_certs) authCred = grpc.metadata_call_credentials(credentials) return grpc.composite_channel_credentials(sslCred, authCred) ### END OF COMMON ### ### STT
Example #23
Source File: ex4_getText2VoiceStream.py From ai-makers-kit with MIT License | 5 votes |
def getCredentials(): with open('../data/ca-bundle.pem', 'rb') as f: trusted_certs = f.read() sslCred = grpc.ssl_channel_credentials(root_certificates=trusted_certs) authCred = grpc.metadata_call_credentials(credentials) return grpc.composite_channel_credentials(sslCred, authCred) ### END OF COMMON ### # TTS : getText2VoiceStream
Example #24
Source File: ex2_getVoice2Text.py From ai-makers-kit with MIT License | 5 votes |
def getCredentials(): with open('../data/ca-bundle.pem', 'rb') as f: trusted_certs = f.read() sslCred = grpc.ssl_channel_credentials(root_certificates=trusted_certs) authCred = grpc.metadata_call_credentials(credentials) return grpc.composite_channel_credentials(sslCred, authCred) ### END OF COMMON ### ### STT
Example #25
Source File: ex2_getVoice2Text.py From ai-makers-kit with MIT License | 5 votes |
def getCredentials(): with open('../data/ca-bundle.pem', 'rb') as f: trusted_certs = f.read() sslCred = grpc.ssl_channel_credentials(root_certificates=trusted_certs) authCred = grpc.metadata_call_credentials(credentials) return grpc.composite_channel_credentials(sslCred, authCred) ### END OF COMMON ### ### STT
Example #26
Source File: grpc.py From alfred-gmail with MIT License | 4 votes |
def secure_authorized_channel( credentials, request, target, ssl_credentials=None, **kwargs): """Creates a secure authorized gRPC channel. This creates a channel with SSL and :class:`AuthMetadataPlugin`. This channel can be used to create a stub that can make authorized requests. Example:: import google.auth import google.auth.transport.grpc import google.auth.transport.requests from google.cloud.speech.v1 import cloud_speech_pb2 # Get credentials. credentials, _ = google.auth.default() # Get an HTTP request function to refresh credentials. request = google.auth.transport.requests.Request() # Create a channel. channel = google.auth.transport.grpc.secure_authorized_channel( credentials, 'speech.googleapis.com:443', request) # Use the channel to create a stub. cloud_speech.create_Speech_stub(channel) Args: credentials (google.auth.credentials.Credentials): The credentials to add to requests. request (google.auth.transport.Request): A HTTP transport request object used to refresh credentials as needed. Even though gRPC is a separate transport, there's no way to refresh the credentials without using a standard http transport. target (str): The host and port of the service. ssl_credentials (grpc.ChannelCredentials): Optional SSL channel credentials. This can be used to specify different certificates. kwargs: Additional arguments to pass to :func:`grpc.secure_channel`. Returns: grpc.Channel: The created gRPC channel. """ # Create the metadata plugin for inserting the authorization header. metadata_plugin = AuthMetadataPlugin(credentials, request) # Create a set of grpc.CallCredentials using the metadata plugin. google_auth_credentials = grpc.metadata_call_credentials(metadata_plugin) if ssl_credentials is None: ssl_credentials = grpc.ssl_channel_credentials() # Combine the ssl credentials and the authorization credentials. composite_credentials = grpc.composite_channel_credentials( ssl_credentials, google_auth_credentials) return grpc.secure_channel(target, composite_credentials, **kwargs)
Example #27
Source File: grpc.py From luci-py with Apache License 2.0 | 4 votes |
def secure_authorized_channel( credentials, request, target, ssl_credentials=None, **kwargs): """Creates a secure authorized gRPC channel. This creates a channel with SSL and :class:`AuthMetadataPlugin`. This channel can be used to create a stub that can make authorized requests. Example:: import google.auth import google.auth.transport.grpc import google.auth.transport.requests from google.cloud.speech.v1 import cloud_speech_pb2 # Get credentials. credentials, _ = google.auth.default() # Get an HTTP request function to refresh credentials. request = google.auth.transport.requests.Request() # Create a channel. channel = google.auth.transport.grpc.secure_authorized_channel( credentials, 'speech.googleapis.com:443', request) # Use the channel to create a stub. cloud_speech.create_Speech_stub(channel) Args: credentials (google.auth.credentials.Credentials): The credentials to add to requests. request (google.auth.transport.Request): A HTTP transport request object used to refresh credentials as needed. Even though gRPC is a separate transport, there's no way to refresh the credentials without using a standard http transport. target (str): The host and port of the service. ssl_credentials (grpc.ChannelCredentials): Optional SSL channel credentials. This can be used to specify different certificates. kwargs: Additional arguments to pass to :func:`grpc.secure_channel`. Returns: grpc.Channel: The created gRPC channel. """ # Create the metadata plugin for inserting the authorization header. metadata_plugin = AuthMetadataPlugin(credentials, request) # Create a set of grpc.CallCredentials using the metadata plugin. google_auth_credentials = grpc.metadata_call_credentials(metadata_plugin) if ssl_credentials is None: ssl_credentials = grpc.ssl_channel_credentials() # Combine the ssl credentials and the authorization credentials. composite_credentials = grpc.composite_channel_credentials( ssl_credentials, google_auth_credentials) return grpc.secure_channel(target, composite_credentials, **kwargs)
Example #28
Source File: grpc.py From luci-py with Apache License 2.0 | 4 votes |
def secure_authorized_channel( credentials, request, target, ssl_credentials=None, **kwargs): """Creates a secure authorized gRPC channel. This creates a channel with SSL and :class:`AuthMetadataPlugin`. This channel can be used to create a stub that can make authorized requests. Example:: import google.auth import google.auth.transport.grpc import google.auth.transport.requests from google.cloud.speech.v1 import cloud_speech_pb2 # Get credentials. credentials, _ = google.auth.default() # Get an HTTP request function to refresh credentials. request = google.auth.transport.requests.Request() # Create a channel. channel = google.auth.transport.grpc.secure_authorized_channel( credentials, 'speech.googleapis.com:443', request) # Use the channel to create a stub. cloud_speech.create_Speech_stub(channel) Args: credentials (google.auth.credentials.Credentials): The credentials to add to requests. request (google.auth.transport.Request): A HTTP transport request object used to refresh credentials as needed. Even though gRPC is a separate transport, there's no way to refresh the credentials without using a standard http transport. target (str): The host and port of the service. ssl_credentials (grpc.ChannelCredentials): Optional SSL channel credentials. This can be used to specify different certificates. kwargs: Additional arguments to pass to :func:`grpc.secure_channel`. Returns: grpc.Channel: The created gRPC channel. """ # Create the metadata plugin for inserting the authorization header. metadata_plugin = AuthMetadataPlugin(credentials, request) # Create a set of grpc.CallCredentials using the metadata plugin. google_auth_credentials = grpc.metadata_call_credentials(metadata_plugin) if ssl_credentials is None: ssl_credentials = grpc.ssl_channel_credentials() # Combine the ssl credentials and the authorization credentials. composite_credentials = grpc.composite_channel_credentials( ssl_credentials, google_auth_credentials) return grpc.secure_channel(target, composite_credentials, **kwargs)
Example #29
Source File: grpc.py From luci-py with Apache License 2.0 | 4 votes |
def secure_authorized_channel( credentials, request, target, ssl_credentials=None, **kwargs): """Creates a secure authorized gRPC channel. This creates a channel with SSL and :class:`AuthMetadataPlugin`. This channel can be used to create a stub that can make authorized requests. Example:: import google.auth import google.auth.transport.grpc import google.auth.transport.requests from google.cloud.speech.v1 import cloud_speech_pb2 # Get credentials. credentials, _ = google.auth.default() # Get an HTTP request function to refresh credentials. request = google.auth.transport.requests.Request() # Create a channel. channel = google.auth.transport.grpc.secure_authorized_channel( credentials, 'speech.googleapis.com:443', request) # Use the channel to create a stub. cloud_speech.create_Speech_stub(channel) Args: credentials (google.auth.credentials.Credentials): The credentials to add to requests. request (google.auth.transport.Request): A HTTP transport request object used to refresh credentials as needed. Even though gRPC is a separate transport, there's no way to refresh the credentials without using a standard http transport. target (str): The host and port of the service. ssl_credentials (grpc.ChannelCredentials): Optional SSL channel credentials. This can be used to specify different certificates. kwargs: Additional arguments to pass to :func:`grpc.secure_channel`. Returns: grpc.Channel: The created gRPC channel. """ # Create the metadata plugin for inserting the authorization header. metadata_plugin = AuthMetadataPlugin(credentials, request) # Create a set of grpc.CallCredentials using the metadata plugin. google_auth_credentials = grpc.metadata_call_credentials(metadata_plugin) if ssl_credentials is None: ssl_credentials = grpc.ssl_channel_credentials() # Combine the ssl credentials and the authorization credentials. composite_credentials = grpc.composite_channel_credentials( ssl_credentials, google_auth_credentials) return grpc.secure_channel(target, composite_credentials, **kwargs)
Example #30
Source File: grpc.py From luci-py with Apache License 2.0 | 4 votes |
def secure_authorized_channel( credentials, request, target, ssl_credentials=None, **kwargs): """Creates a secure authorized gRPC channel. This creates a channel with SSL and :class:`AuthMetadataPlugin`. This channel can be used to create a stub that can make authorized requests. Example:: import google.auth import google.auth.transport.grpc import google.auth.transport.requests from google.cloud.speech.v1 import cloud_speech_pb2 # Get credentials. credentials, _ = google.auth.default() # Get an HTTP request function to refresh credentials. request = google.auth.transport.requests.Request() # Create a channel. channel = google.auth.transport.grpc.secure_authorized_channel( credentials, 'speech.googleapis.com:443', request) # Use the channel to create a stub. cloud_speech.create_Speech_stub(channel) Args: credentials (google.auth.credentials.Credentials): The credentials to add to requests. request (google.auth.transport.Request): A HTTP transport request object used to refresh credentials as needed. Even though gRPC is a separate transport, there's no way to refresh the credentials without using a standard http transport. target (str): The host and port of the service. ssl_credentials (grpc.ChannelCredentials): Optional SSL channel credentials. This can be used to specify different certificates. kwargs: Additional arguments to pass to :func:`grpc.secure_channel`. Returns: grpc.Channel: The created gRPC channel. """ # Create the metadata plugin for inserting the authorization header. metadata_plugin = AuthMetadataPlugin(credentials, request) # Create a set of grpc.CallCredentials using the metadata plugin. google_auth_credentials = grpc.metadata_call_credentials(metadata_plugin) if ssl_credentials is None: ssl_credentials = grpc.ssl_channel_credentials() # Combine the ssl credentials and the authorization credentials. composite_credentials = grpc.composite_channel_credentials( ssl_credentials, google_auth_credentials) return grpc.secure_channel(target, composite_credentials, **kwargs)