Skip to content

Instantly share code, notes, and snippets.

@honghuynhit
Last active June 15, 2022 09:24
Show Gist options
  • Save honghuynhit/450c24c9dadc35c186bca2f02ef705a1 to your computer and use it in GitHub Desktop.
Save honghuynhit/450c24c9dadc35c186bca2f02ef705a1 to your computer and use it in GitHub Desktop.
[FASTAPI]: Post File qua lại giữa các api trong
# Request:
thumb=Form(..., description='thumb'),
# Nhận request và chỉnh sửa lại file
up = {'thumb': (str(thumb.filename), await thumb.read())}
# Gửi qua api,
response = requests.post('url-endpoint',
data=data, files=up
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment