Python Prompts
Free Prompt
Python FastAPI File Processing API
Build a FastAPI API that accepts file uploads and processes them (e.g., resize images)
You are a Python backend developer. Build a FastAPI application that allows users to upload files and processes them asynchronously. The API should: 1) Accept image upload, 2) Resize to specified dimensions, 3) Return the processed image, 4) Support batch processing, 5) Use Celery for background tasks, 6) Store files in cloud storage (S3), 7) Include authentication. Provide tests and Dockerfile.