C#调用Python的URL接口的示例

时间:2021-05-20

VS2013的简单WInForm控件,通过WebRequest,WebResponse来访问,接收:

private void btn_interface_Click(object sender, EventArgs e) { string url = "http://127.0.0.1:5000"; WebRequest wRequest = WebRequest.Create(url); wRequest.Method = "GET"; wRequest.ContentType = "text/html;charset=UTF-8"; WebResponse wResponse = wRequest.GetResponse(); Stream stream = wResponse.GetResponseStream(); StreamReader reader = new StreamReader(stream, System.Text.Encoding.Default); string str = reader.ReadToEnd(); //url返回的值 reader.Close(); wResponse.Close(); }

Python 简易接口:http://127.0.0.1:5000

from flask import Flask#创建flask对象app = Flask(__name__)#创建路由'/'@app.route('/')def home(): return "Hello,World!"#当用户请求'/'资源时,回传"Hello,World!"#启动flask,并设定端口为5000app.run(port = 5000)

基于这种访问方式,就可以用C#调用机器学习等人工智能及其它python业务接口了...

以上就是C#调用Python的URL接口的示例的详细内容,更多关于C#调用Python的URL接口的资料请关注其它相关文章!

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章