Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,13 +116,14 @@ For more examples and detailed documentation:

## Project Status

**Current version: v0.0.6** - Proxy support for enterprise environments
**Current version: v0.0.7** - Proxy support for enterprise environments

This package is currently in early development. Active development is underway by **voidbox**.

<details>
<summary><b>Version History</b></summary>

- **v0.0.7** - Fixed proxy support in AutomationWorkflow.download_output_file() to properly use session
- **v0.0.6** - Added HTTP/HTTPS proxy support for enterprise environments (configurable via explicit settings or environment variables)
- **v0.0.5** - Added AutomationWorkflow high-level API with automatic file management, webhook support (onComplete/onProgress), batch processing, and comprehensive documentation
- **v0.0.4** - Added Automation API client (Engines, AppBundles, Activities, WorkItems)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "py-aps"
version = "0.0.6"
version = "0.0.7"
description = "Autodesk Platform Service APIs Python SDK"
readme = "README.md"
requires-python = ">=3.9"
Expand Down
5 changes: 2 additions & 3 deletions src/pyaps/automation/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,9 +287,8 @@ def download_output_file(
)
url = signed.get("url") or signed.get("signedUrl")

# 파일 다운로드
import requests
response = requests.get(url, timeout=300)
# 파일 다운로드 (프록시 설정 적용을 위해 DataManagementClient의 session 사용)
response = self.dm.http_oss.session.get(url, timeout=300)
response.raise_for_status()

local_path = Path(local_path)
Expand Down