从python多次运行可执行文件的最快方法

时间:2018-05-16 06:54:39

标签: python algorithm optimization process subprocess

我正在使用ngIf模块从python执行外部可执行文件。每次我使用子进程的ngOnInit() { this.reportService.GetReportsPermissions().subscribe(result => { this.reportsPersmissions = result; // Iterate over the reports and calculate the isVisible variable here }, error => { console.log(error)}); } *ngIf="report.isVisible" 方法将输入发送到可执行文件。

subprocess

显然我想为我的项目执行数千到数十万次相同的exe。什么是最快或最好的方法

  • 我想向它发送输入而不用担心输出。
  • 我想多次执行它,输入每次都在变化。

1 个答案:

答案 0 :(得分:0)

考虑使用带有{{3}}函数的asyncio库中的协同程序。