Metadata-Version: 2.4
Name: airbyte-ai-asana
Version: 0.19.2
Summary: Airbyte Asana Connector for AI platforms
Project-URL: Homepage, https://github.com/airbytehq/airbyte-embedded
Project-URL: Documentation, https://github.com/airbytehq/airbyte-embedded/tree/main/integrations
Project-URL: Repository, https://github.com/airbytehq/airbyte-embedded
Project-URL: Issues, https://github.com/airbytehq/airbyte-embedded/issues
Author-email: Airbyte <contact@airbyte.io>
License: Elastic-2.0
Keywords: airbyte,api,asana,connector
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Requires-Dist: httpx>=0.24.0
Requires-Dist: jinja2>=3.0.0
Requires-Dist: jsonpath-ng>=1.6.1
Requires-Dist: jsonref>=1.1.0
Requires-Dist: opentelemetry-api>=1.37.0
Requires-Dist: opentelemetry-sdk>=1.37.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: segment-analytics-python>=2.2.0
Description-Content-Type: text/markdown

# Airbyte Asana AI Connector

Type-safe Asana API connector with full IDE autocomplete support for AI applications.

## Installation

```bash
uv pip install airbyte-ai-asana
```

## Usage

```python
from airbyte_ai_asana import AsanaConnector
from airbyte_ai_asana.models import AsanaAuthConfig

# Create connector
connector = AsanaConnector(auth_config=AsanaAuthConfig(access_token="...", refresh_token="...", client_id="...", client_secret="..."))

# Use typed methods with full IDE autocomplete
# (See Available Actions below for all methods)
```

## Available Actions

### Tasks Actions
- `list_tasks()` - Returns a paginated list of tasks
- `get_task()` - Get a single task by its ID

### Project_Tasks Actions
- `list_project_tasks()` - Returns all tasks in a project

### Workspace_Task_Search Actions
- `search_workspace_tasks()` - Returns tasks that match the specified search criteria. Note - This endpoint requires a premium Asana account.

### Projects Actions
- `list_projects()` - Returns a paginated list of projects
- `get_project()` - Get a single project by its ID

### Task_Projects Actions
- `list_task_projects()` - Returns all projects a task is in

### Team_Projects Actions
- `list_team_projects()` - Returns all projects for a team

### Workspace_Projects Actions
- `list_workspace_projects()` - Returns all projects in a workspace

### Workspaces Actions
- `list_workspaces()` - Returns a paginated list of workspaces
- `get_workspace()` - Get a single workspace by its ID

### Users Actions
- `list_users()` - Returns a paginated list of users
- `get_user()` - Get a single user by their ID

### Workspace_Users Actions
- `list_workspace_users()` - Returns all users in a workspace

### Team_Users Actions
- `list_team_users()` - Returns all users in a team

### Teams Actions
- `get_team()` - Get a single team by its ID

### Workspace_Teams Actions
- `list_workspace_teams()` - Returns all teams in a workspace

### User_Teams Actions
- `list_user_teams()` - Returns all teams a user is a member of

## Type Definitions

All response types are fully typed using Pydantic models for IDE autocomplete support.
Import types from `airbyte_ai_asana.types`.

## Documentation

Generated from OpenAPI 3.0 specification.

For API documentation, see the service's official API docs.

## Version Information

**Package Version:** 0.19.2

**Connector Version:** 0.1.0

**SDK Version:** 0.1.0