MCPcopy Create free account
hub / github.com/anthropics/anthropic-sdk-python / __init__

Method __init__

examples/memory/basic.py:45–48  ·  view source on GitHub ↗
(self, message: str = "Thinking")

Source from the content-addressed store, hash-verified

43
44class Spinner:
45 def __init__(self, message: str = "Thinking"):
46 self.message = message
47 self.spinning = False
48 self.thread = None
49
50 def start(self):
51 self.spinning = True

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected