Home / Function/ __init__() — anthropic-sdk-python Function Reference

__init__() — anthropic-sdk-python Function Reference

Architecture documentation for the __init__() function in skills.py from the anthropic-sdk-python codebase.

Entity Profile

Dependency Diagram

graph TD
  264073b2_4588_b88e_4f3e_0aa123e365a5["__init__()"]
  1ca5a01c_c560_2733_9fc7_f8ef2f78c6ff["AsyncSkillsWithStreamingResponse"]
  264073b2_4588_b88e_4f3e_0aa123e365a5 -->|defined in| 1ca5a01c_c560_2733_9fc7_f8ef2f78c6ff
  style 264073b2_4588_b88e_4f3e_0aa123e365a5 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

src/anthropic/resources/beta/skills/skills.py lines 662–676

    def __init__(self, skills: AsyncSkills) -> None:
        self._skills = skills

        self.create = async_to_streamed_response_wrapper(
            skills.create,
        )
        self.retrieve = async_to_streamed_response_wrapper(
            skills.retrieve,
        )
        self.list = async_to_streamed_response_wrapper(
            skills.list,
        )
        self.delete = async_to_streamed_response_wrapper(
            skills.delete,
        )

Subdomains

Frequently Asked Questions

What does __init__() do?
__init__() is a function in the anthropic-sdk-python codebase, defined in src/anthropic/resources/beta/skills/skills.py.
Where is __init__() defined?
__init__() is defined in src/anthropic/resources/beta/skills/skills.py at line 662.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free