Поиск…


Вступление

Документация обеспечивает примерную реализацию межпроцессного взаимодействия между сценариями C # и Python.

замечания

Обратите внимание, что в приведенном выше примере данные сериализуются с использованием библиотеки MongoDB.Bson, которая может быть установлена ​​с помощью менеджера NuGet.

В противном случае вы можете использовать любую библиотеку сериализации JSON по вашему выбору.


Ниже приведены шаги внедрения межпроцессного взаимодействия:

  • Входные аргументы сериализуются в строку JSON и сохраняются во временном текстовом файле:

     BsonDocument argsBson = BsonDocument.Parse("{ 'x' : '1', 'y' : '2' }"); 
     string argsFile = string.Format("{0}\\{1}.txt", Path.GetDirectoryName(pyScriptPath), Guid.NewGuid());
    
  • Python-интерпретатор python.exe запускает скрипт python, который считывает строку JSON из временного текстового файла и аргументы ввода-вывода:

     filename = sys.argv[ 1 ]
     with open( filename ) as data_file:  
        input_args = json.loads( data_file.read() )
    
     x, y = [ float(input_args.get( key )) for key in [ 'x', 'y' ] ]
    
  • Выполняется скрипт Python, а выходной словарь сериализуется в строку JSON и печатается в окне команд:

     print json.dumps( { 'sum' : x + y , 'subtract' : x - y } )
    

    введите описание изображения здесь

  • Чтение строки JSON из приложения C #:

     using (StreamReader myStreamReader = process.StandardOutput)
     {
        outputString = myStreamReader.ReadLine();
        process.WaitForExit();
     }
    

введите описание изображения здесь

Я использую межпроцессную связь между сценариями C # и Python в одном из моих проектов, который позволяет вызывать скрипты Python непосредственно из электронных таблиц Excel.

В проекте используется надстройка ExcelDNA для привязки C # - Excel.

Исходный код хранится в репозитории GitHub.

Ниже приведены ссылки на страницы вики, в которых содержится обзор проекта и помощь в запуске в 4 простых шага .

Надеюсь, вы найдете пример и проект полезными.


Сценарий Python, который вызывается приложением C #

import sys
import json

# load input arguments from the text file
filename = sys.argv[ 1 ]
with open( filename ) as data_file:   
    input_args = json.loads( data_file.read() )

# cast strings to floats
x, y = [ float(input_args.get( key )) for key in [ 'x', 'y' ] ]

print json.dumps( { 'sum' : x + y , 'subtract' : x - y } )

Код C #, вызывающий скрипт Python

using MongoDB.Bson;
using System;
using System.Diagnostics;
using System.IO;

namespace python_csharp
{
    class Program
    {
        static void Main(string[] args)
        {
            // full path to .py file
            string pyScriptPath = "...../sum.py";
            // convert input arguments to JSON string
            BsonDocument argsBson = BsonDocument.Parse("{ 'x' : '1', 'y' : '2' }");

            bool saveInputFile = false;
        
            string argsFile = string.Format("{0}\\{1}.txt", Path.GetDirectoryName(pyScriptPath), Guid.NewGuid());

            string outputString = null;
            // create new process start info 
            ProcessStartInfo prcStartInfo = new ProcessStartInfo
            {
                // full path of the Python interpreter 'python.exe'
                FileName = "python.exe", // string.Format(@"""{0}""", "python.exe"),
                UseShellExecute = false,
                RedirectStandardOutput = true,
                CreateNoWindow = false
            };

            try
            {    
                // write input arguments to .txt file 
                using (StreamWriter sw = new StreamWriter(argsFile))
                {
                    sw.WriteLine(argsBson);
                    prcStartInfo.Arguments = string.Format("{0} {1}", string.Format(@"""{0}""", pyScriptPath), string.Format(@"""{0}""", argsFile));
                }
                // start process
                using (Process process = Process.Start(prcStartInfo))
                {
                    // read standard output JSON string
                    using (StreamReader myStreamReader = process.StandardOutput)
                    {
                        outputString = myStreamReader.ReadLine();
                        process.WaitForExit();
                    }
                }
            }
            finally
            {
                // delete/save temporary .txt file 
                if (!saveInputFile)
                {
                    File.Delete(argsFile);
                }
            }
            Console.WriteLine(outputString);
        }
    }
}


Modified text is an extract of the original Stack Overflow Documentation
Лицензировано согласно CC BY-SA 3.0
Не связан с Stack Overflow