Html 刮削数据的刮削请求表

Html 刮削数据的刮削请求表,html,web-crawler,scrapy,Html,Web Crawler,Scrapy,我正在使用此代码和url= 按要求将表格数据发送给我,但给出错误信息 raise ValueError("No <form> element found in %s" % response) exceptions.ValueError: No <form> element found in <200 http://money.moneygram.com.au/forex-tools/currency-converter-widget-part> raise

我正在使用此代码和url=

按要求将表格数据发送给我,但给出错误信息

raise ValueError("No <form> element found in %s" % response)
exceptions.ValueError: No <form> element found in <200 http://money.moneygram.com.au/forex-tools/currency-converter-widget-part> 
raisevalueerror(“在%s”%响应中未找到元素)
exceptions.ValueError:在中找不到元素

如何将美元转换为印度卢比?

您提到的页面不是有效的HTML。看起来它是一个SSI块,应该是另一个页面的一部分

由于此页面大量使用Javascript,您可能会遇到此错误。它没有一个 尝试使用现有表单发出请求,但表单不存在

您可以使用整个页面,也可以制作
FormRequest
手动填写属性,然后从整个页面提交到URL。

这是现在的链接。请告诉我如何将表格传递到印度。请帮助我提取汇率。。
raise ValueError("No <form> element found in %s" % response)
exceptions.ValueError: No <form> element found in <200 http://money.moneygram.com.au/forex-tools/currency-converter-widget-part>