Hi, I have a python cloud function with dir structure
Code snippet is
TypeScript
@app.post("/process")
async def process_cv(
user_id: str = Query(..., description="The ID of the user whose CV to process")
):
"""API endpoint to process the uploaded CV, extract information, and update the user profile."""
try:
cv_file_info = supabase.storage.from_("span").list(f"resumes/{user_id}")
if not cv_file_info or len(cv_file_info) == 0:
raise HTTPException(
status_code=404, detail="CV not found for the specified user"
)
cv_file_name = cv_file_info[0]["name"]
cv_download = supabase.storage.from_("span").download(
f"resumes/{user_id}/{cv_file_name}"
)
pdf_text = extract_text_from_pdf(cv_download)
print("Extracted PDF text:", pdf_text)
user_profile_data = extract_profile_info(pdf_text)
print("Extracted user profile data:", json.dumps(user_profile_data, indent=2))
return update_user_profile(user_id, user_profile_data[0])
except Exception as e:
raise HTTPException(status_code=500, detail=f"Error processing CV: {str(e)}")
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=9092)
I set the build command for pip install from requirements.txt but what must I set the entry point as under Configuration?
TL;DR
The entrypoint for the Python cloud function code snippet provided should be set as `python -m your_script.main:app` under Configuration.Recommended threads
- API key without database.read/write
I had some issues with my previous API key and I deleted it then I wanted to create a new one and discovered the database checkbook has no database.read/write j...
- dynamic key missing scopes for database ...
Here are the scopes listed, I get permission errors for reading row and document. Appears to be missing since last time i checked. Database 6 Scopes policies....
- Worker functions stuck on "Fetched 0 fun...
Appwrite Version: 1.9.0 Bug Description: The appwrite-worker-functions container gets stuck in an infinite loop logging "Fetched 0 functions..." while scheduled...