MCPcopy Create free account
hub / github.com/apache/arrow / __init__

Method __init__

python/pyarrow/tests/test_flight.py:601–605  ·  view source on GitHub ↗
(self, username, password)

Source from the content-addressed store, hash-verified

599 """An example implementation of authentication via handshake."""
600
601 def __init__(self, username, password):
602 super().__init__()
603 self.username = username
604 self.password = password
605 self.token = b''
606
607 def authenticate(self, outgoing, incoming):
608 outgoing.write(self.username)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected