Patra0o
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
- Need help with createExecution function
Hi, Need some help understanding createExecution. When requesting function execution via createExecution, the function handler arguments are incorrect and rese...
- Need Help with Google OAuth2 in Expo usi...
I'm learning React Native with Expo and trying to set up Google OAuth2 with Appwrite. I couldn't find any good docs or tutorials for this and my own attempt did...
- Got message for auto payment of 15usd fo...
how did this happen? 1. i claimed my 50usd credits via jsm hackathon - https://hackathon.jsmastery.pro/ 2. it asked me which org. to apply the credits on, i se...