• C#调用python


    参考资料:
    https://codefying.com/2015/10/02/executing-a-python-script-from-a-c-program/

    demo:
    https://github.com/zLulus/NotePractice/tree/dev3/Console/CSharpUsingPythonDemo

    代码
    ```C#
    string progToRun = "test.py";
    char[] spliter = { ' ' };

    Process proc = new Process();
    proc.StartInfo.FileName = "python.exe";
    proc.StartInfo.RedirectStandardOutput = true;
    proc.StartInfo.UseShellExecute = false;

    string psw = "123456";
    string parameters2 = "haha";
    //文件路径+参数集合
    proc.StartInfo.Arguments = string.Concat(progToRun, " ", psw.ToString()," ", parameters2.ToString());
    proc.Start();

    StreamReader sReader = proc.StandardOutput;
    string[] output = sReader.ReadToEnd().Split(spliter);

    foreach (string s in output)
    Console.WriteLine(s);

    proc.WaitForExit();

    //取出计算结果
    Console.WriteLine(output[0]);

    Console.Read();
    ```

    ```python
    import base64
    import hmac
    import hashlib
    import urllib
    import urlparse
    import json
    import urllib
    import sys

    def _auth_data():
    psw=sys.argv[1]
    parameters2=sys.argv[2]
    md5 = hashlib.md5()
    md5.update(psw.encode('utf-8'))
    md5.update('hello'.encode('utf-8'))
    s = json.dumps({"assetPwd": md5.hexdigest()})
    r=urllib.quote(s, safe='')
    print r
    return r

    if __name__ == '__main__':
    _auth_data()
    ```

    需要注意的是:
    (1)保证已安装任意版本的python,并将其添加到环境变量(或者拷贝python.exe至bin目录根目录)
    (2)示例的python版本是2.7,可以用python3,这个和你的环境有关
    学习过程中遇到的比较揪心的问题也是“python2找不到python3的库、方法”之类的问题,保证环境一致并且正确啊╮(╯_╰)╭
    (3)python基本语法问题,缩进要么是空格,要么是tab,保持一致,否则VS会报错

    #### 其他方式
    1.InronPython:注意只支持到Python 2.x
    [C#调用Python脚本并使用Python的第三方模块](https://www.cnblogs.com/jason2004/p/6182995.html)
    2.可以把内容封装成api,发布python的站点,C#通过http调用
    即将问题从“C#调用Python”转换为“C#调用Web接口”

  • 相关阅读:
    Jenkins调用selenium找不到webdriver:selenium.common.exceptions.WebDriverException: Message: unknown error: cannot find Chrome binary
    列表的基本操作
    jenkins集成发送测试报告的常见问题解决
    Chrome 浏览器前端调试技巧大揭秘
    搭建Redis三主三从集群
    Jenkins安装
    python中hasattr()、getattr()、setattr()函数的使用
    python单元测试之unittest框架
    python环境配置详细步骤
    Android:EditText 设置弹出数字输入法键盘
  • 原文地址:https://www.cnblogs.com/Lulus/p/7872184.html
Copyright © 2020-2023  润新知