Fast API Tutorial, Part 17: Request Files

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 ธ.ค. 2024

ความคิดเห็น • 3

  • @DreamsAPI
    @DreamsAPI 10 หลายเดือนก่อน +1

    Another excellent video

  • @BharathReddyMaram-g9r
    @BharathReddyMaram-g9r ปีที่แล้ว

    the final error is because you were is hitting "/upload files/" instead of "/uploadfile/" in

  • @MuhammadTalha-w8m
    @MuhammadTalha-w8m 9 หลายเดือนก่อน

    @app.post("/upload_files")
    async def upload_file(file: UploadFile):
    try:
    if not os.path.exists("uploads"):
    os.mkdir("uploads")
    if os.path.exists(f"uploads/{file.filename}"):
    return {"file_exist": "file already in folder"}
    with open(f"uploads/{file.filename}", 'wb') as f:
    f.write(file.file.read())
    except Exception as e:
    return {"Other Error": str(e)}
    check my endpoint for file upload