随着Flash的结束,传统文件类型将在2020年12月消失。为避免中断,请开始将文件过渡到下一代。 学到更多

Upload a single file with Python

1

评论

1 条评论

  • Benji4

    The issue is easily resolved by specifying the MIME-type of the file:

    files = {
        'file': (file_name, file_to_upload, 'text/csv')
    }

    1

请先登录再写评论。