Python and Django SDK for Cloudinary, a cloud-based image and video management service with comprehensive transformation, optimization, and delivery capabilities
Overall
score
94%
{
"context": "This criteria evaluates how effectively the engineer uses the Cloudinary Python SDK's folder organization features to implement asset management operations. The focus is on proper use of folder-related upload parameters, Admin API folder methods, and understanding of Cloudinary's folder hierarchy structure.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Upload with folder parameter",
"description": "Uses cloudinary.uploader.upload() with the 'folder' parameter to upload assets to specific folder paths. The folder parameter should be used to specify nested paths like 'events/2024/conference'.",
"max_score": 30
},
{
"name": "Root folders API call",
"description": "Uses cloudinary.api.root_folders() or cloudinary.api.subfolders() with empty/root path to list all top-level folders in the cloud storage account.",
"max_score": 20
},
{
"name": "Subfolders API call",
"description": "Uses cloudinary.api.subfolders(folder_path) to retrieve subfolders within a specific parent folder, passing the correct folder path parameter.",
"max_score": 20
},
{
"name": "Delete folder API call",
"description": "Uses cloudinary.api.delete_folder(folder_path) to remove empty folders from cloud storage, properly handling the folder path parameter.",
"max_score": 20
},
{
"name": "Cloudinary configuration",
"description": "Properly configures Cloudinary SDK with cloudinary.config() using cloud_name, api_key, and api_secret, or uses environment variables (CLOUDINARY_URL) for authentication.",
"max_score": 10
}
]
}Install with Tessl CLI
npx tessl i tessl/pypi-cloudinarydocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10