如何将文件发布到multipart/formdata?

2024-10-05 15:26:03 发布

您现在位置:Python中文网/ 问答频道 /正文

我想上传并提交文件到http://www.broadinstitute.org/cmap/newQuery?servletAction=querySetup&queryType=quick上的表单(需要登录)。表单如下所示

<form name="form1" enctype="multipart/form-data" method="post" action="newQuery">
    <input type="hidden" name="servletAction" value="quickQuery">
        <div class="formTable">
            <div class="row">
                <span class="label" style="width: 100px;">up tag file:</span>
                <span class="field"><input type="file" name="ups" size="30" accept="grp"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font size="-1"><a href="#" onClick="window.open('help_topics_frames.jsp?topic=tag list', 'helpTopicsWindow', 'scrollbars,resizable,height=600,width=700')">tag file help</a></font></span>
            </div>
            <div class="row">
                <span class="label" style="width: 100px;">down tag file:</span>
                <span class="field"><input type="file" name="dns" size="30" accept="grp"></span>
            </div>
            <div class="row">
                <span class="label" style="width: 100px;">&nbsp;</span>
                <span class="navigation"><input type="button" onClick="submitForm()" name="submitButton" value="execute query"></span>
            </div>
        </div>
</form>

首先,从答案https://stackoverflow.com/a/22547541/651779得到带有登录凭据的cookie

^{pr2}$

这是正确的。现在我想把文件发到表单上。我试着用这个答案https://stackoverflow.com/a/12385661/651779

# changed after Brett Lempereur's answer
values = {'ups':open(r'path\to\up.grp','rb'),
          'dns':open(r'path\to\down.grp','rb')}

submit_signature_url = 'http://www.broadinstitute.org/cmap/newQuery?servletAction=querySetup&queryType=quick'
req = requests.post(submit_signature_url, files=values, cookies=cj)
soup = BeautifulSoup(req.text)
print(soup.prettify())

这个指纹

Requested URL:  http://www.broadinstitute.org/cmap/newQuery
java.lang.NullPointerException

如果您登录并在浏览器中转到http://www.broadinstitute.org/cmap/newQuery,则会得到相同的结果。如果我在请求.post:req = requests.post(submit_signature_url, data=values, cookies=cj),它打印包含表单的页面的html,因此它不发布表单。在

如何发布到多部分/表单数据?在


对于一个示例up文件,将以下内容复制到一个文件a file中并调用它向上.grp在

205258_at
221369_at
205751_at
212954_at
219914_at
206703_at
207352_s_at
203548_s_at
203549_s_at
210382_at
212110_at
213805_at
213935_at
218739_at
219737_s_at
219738_s_at
204131_s_at
204132_s_at
210655_s_at
217399_s_at
206791_s_at
206792_x_at
211818_s_at
221523_s_at
221524_s_at

对于一个示例down文件,将以下内容复制到一个文件中并调用它向下.grp在

204725_s_at
211063_s_at
219921_s_at
200618_at
219701_at
220342_x_at
220926_s_at
201323_at
204692_at
221956_at
222017_x_at
90610_at
217755_at
207843_x_at
209366_x_at
215726_s_at
201827_at
201185_at
212411_at
201692_at
214484_s_at
202910_s_at
202381_at
200663_at
201459_at
219770_at
220853_at
201349_at
207015_s_at
207016_s_at
212338_at
220330_s_at

Tags: 文件nameorgdivhttp表单wwwat
1条回答
网友
1楼 · 发布于 2024-10-05 15:26:03

为了冒险猜测,请求模块的当前版本要求其参数具有以下格式之一:

files = {"name": file-handle, ...}
files = {"name": (file-name, file-handle, content-type,), ...}

您是否尝试过将创建的文件字典替换为类似以下内容的内容:

^{pr2}$

您的代码在技术上是正确的,但语义上不正确,因为一些文件数据将被发送到站点,但实际上它将是字符串文本r'path\to的内容\向上.grp'. 在

从阅读表单开始,还应该将dictionary {"servletAction": "quickQuery"}作为数据参数传递给requests.post调用。另外,您发布到的URL应该是http://www.broadinstitute.org/cmap/newQuery,没有您在原始代码中使用的当前查询字符串。在

相关问题 更多 >