


{"id":397811,"date":"2024-12-18T00:09:54","date_gmt":"2024-12-18T00:09:54","guid":{"rendered":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/397811\/"},"modified":"2024-12-18T00:09:54","modified_gmt":"2024-12-18T00:09:54","slug":"397811","status":"publish","type":"reply","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/397811\/","title":{"rendered":"Reply To: Location of results when using python or cmd to call ls-run to calculate k files"},"content":{"rendered":"<p>&lt;p&gt;Hello,&lt;\/p&gt;&lt;p&gt;You can use the timeout= option with the subprocess.run() method. I tested it and it seems to work.&lt;\/p&gt;&lt;p&gt;I Googled &#8220;How to set a maximum running time with subprocess.run() Python?&#8221; to find the solution.&lt;\/p&gt;&lt;p&gt;&#8221;&lt;\/p&gt;&lt;div class=&#8221;WaaZC&#8221;&gt;&lt;div class=&#8221;RJPOee EIJn2&#8243;&gt;&lt;div class=&#8221;rPeykc&#8221; data-hveid=&#8221;CAQQAQ&#8221; data-ved=&#8221;2ahUKEwjRx7WOgrCKAxWeEVkFHRuXEbcQo_EKegQIBBAB&#8221;&gt;&lt;span data-huuid=&#8221;7004591764334546449&#8243;&gt;You can set a maximum running time (timeout) for&nbsp;&lt;code class=&#8221;mv6bHd&#8221;&gt;subprocess.run()<\/code>&nbsp;using the&nbsp;&lt;code class=&#8221;mv6bHd&#8221;&gt;timeout<\/code>&nbsp;parameter:&lt;\/span&gt;&lt;\/div&gt;&lt;\/div&gt;&lt;\/div&gt;&lt;div class=&#8221;WaaZC&#8221;&gt;&lt;div class=&#8221;RJPOee EIJn2&#8243;&gt;&lt;div&gt;&lt;div class=&#8221;ecCNFc&#8221;&gt;&lt;div class=&#8221;zYSUYd&#8221;&gt;&lt;div class=&#8221;FS7GEb&#8221;&gt;&lt;div class=&#8221;dDrxod&#8221;&gt;&lt;div class=&#8221;x7ndcb&#8221;&gt;Python&lt;\/div&gt;&lt;div class=&#8221;WDoJJe&#8221; aria-live=&#8221;polite&#8221;&gt;&lt;div&gt;&nbsp;&lt;\/div&gt;&lt;button class=&#8221;hqI3tf B4zsNc&#8221; tabindex=&#8221;0&#8243; title=&#8221;Copy&#8221; role=&#8221;button&#8221; aria-label=&#8221;Copy code to clipboard&#8221; data-ved=&#8221;2ahUKEwjRx7WOgrCKAxWeEVkFHRuXEbcQ9MILegQIAhAN&#8221;&gt;&lt;\/button&gt;&lt;\/div&gt;&lt;\/div&gt;&lt;\/div&gt;&lt;\/div&gt;&lt;div class=&#8221;QQjpRc&#8221;&gt;&lt;div class=&#8221;FS7GEb&#8221;&gt;<\/p>\n<pre>&lt;code data-ved=\"2ahUKEwjRx7WOgrCKAxWeEVkFHRuXEbcQjZIMegQIAhAP\"&gt;&lt;span class=\"VSzkzc\"&gt;import&lt;\/span&gt; &lt;span class=\"mFP83e\"&gt;subprocess&lt;\/span&gt;&lt;br aria-hidden=\"true\"&gt;&lt;br aria-hidden=\"true\"&gt;&lt;span class=\"VSzkzc\"&gt;try&lt;\/span&gt;:&lt;br aria-hidden=\"true\"&gt;    &lt;span class=\"mFP83e\"&gt;result&lt;\/span&gt; = subprocess.run(&lt;br aria-hidden=\"true\"&gt;        [&lt;span class=\"rQeGvc\"&gt;\"&lt;\/span&gt;&lt;span class=\"rQeGvc\"&gt;command&lt;\/span&gt;&lt;span class=\"rQeGvc\"&gt;\"&lt;\/span&gt;, &lt;span class=\"rQeGvc\"&gt;\"&lt;\/span&gt;&lt;span class=\"rQeGvc\"&gt;arg1&lt;\/span&gt;&lt;span class=\"rQeGvc\"&gt;\"&lt;\/span&gt;, &lt;span class=\"rQeGvc\"&gt;\"&lt;\/span&gt;&lt;span class=\"rQeGvc\"&gt;arg2&lt;\/span&gt;&lt;span class=\"rQeGvc\"&gt;\"&lt;\/span&gt;],&lt;br aria-hidden=\"true\"&gt;        timeout=&lt;span class=\"Bkvjgc\"&gt;5&lt;\/span&gt;,  &lt;span class=\"a7yfkb\"&gt;# Timeout in seconds&lt;\/span&gt;&lt;br aria-hidden=\"true\"&gt;        capture_output=&lt;span class=\"VSzkzc\"&gt;True&lt;\/span&gt;,&lt;br aria-hidden=\"true\"&gt;        text=&lt;span class=\"VSzkzc\"&gt;True&lt;\/span&gt;&lt;br aria-hidden=\"true\"&gt;    )&lt;br aria-hidden=\"true\"&gt;    print(&lt;span class=\"rQeGvc\"&gt;\"&lt;\/span&gt;&lt;span class=\"rQeGvc\"&gt;Output:&lt;\/span&gt;&lt;span class=\"rQeGvc\"&gt;\"&lt;\/span&gt;, result.stdout)&lt;br aria-hidden=\"true\"&gt;&lt;span class=\"VSzkzc\"&gt;except&lt;\/span&gt; subprocess.TimeoutExpired:&lt;br aria-hidden=\"true\"&gt;    print(&lt;span class=\"rQeGvc\"&gt;\"&lt;\/span&gt;&lt;span class=\"rQeGvc\"&gt;Command timed out&lt;\/span&gt;&lt;span class=\"rQeGvc\"&gt;\"&lt;\/span&gt;)<\/code><\/pre>\n<p>&lt;\/div&gt;&lt;div&gt;&nbsp;&lt;\/div&gt;&lt;\/div&gt;&lt;\/div&gt;&lt;\/div&gt;&lt;\/div&gt;&lt;\/div&gt;&lt;div class=&#8221;WaaZC&#8221;&gt;&lt;div class=&#8221;RJPOee EIJn2&#8243;&gt;&lt;div class=&#8221;rPeykc pyPiTc&#8221; data-hveid=&#8221;CA0QAQ&#8221; data-ved=&#8221;2ahUKEwjRx7WOgrCKAxWeEVkFHRuXEbcQo_EKegQIDRAB&#8221;&gt;&lt;span data-huuid=&#8221;7004591764334543842&#8243;&gt;Explanation:&lt;\/span&gt;&lt;\/div&gt;&lt;\/div&gt;&lt;\/div&gt;&lt;div class=&#8221;WaaZC&#8221;&gt;&lt;div class=&#8221;RJPOee EIJn2&#8243;&gt;&lt;ul data-hveid=&#8221;CBcQAQ&#8221; data-ved=&#8221;2ahUKEwjRx7WOgrCKAxWeEVkFHRuXEbcQm_YKegQIFxAB&#8221;&gt;<\/p>\n<li>&lt;span data-huuid=&#8221;7004591764334543131&#8243;&gt;&lt;code class=&#8221;mv6bHd&#8221;&gt;timeout<\/code>:&nbsp;&lt;\/span&gt;&lt;span data-huuid=&#8221;7004591764334542894&#8243;&gt;The&nbsp;&lt;code class=&#8221;mv6bHd&#8221;&gt;timeout<\/code>&nbsp;parameter takes a float value representing the maximum number of seconds you want the process to run.&lt;\/span&gt;<\/li>\n<li>&lt;span data-huuid=&#8221;7004591764334546516&#8243;&gt;&lt;code class=&#8221;mv6bHd&#8221;&gt;capture_output=True<\/code>:&nbsp;&lt;\/span&gt;&lt;span data-huuid=&#8221;7004591764334546279&#8243;&gt;This captures the standard output and standard error of the subprocess, making them available in&nbsp;&lt;code class=&#8221;mv6bHd&#8221;&gt;result.stdout<\/code>&nbsp;and&nbsp;&lt;code class=&#8221;mv6bHd&#8221;&gt;result.stderr<\/code>.&lt;\/span&gt;<\/li>\n<li>&lt;span data-huuid=&#8221;7004591764334545805&#8243;&gt;&lt;code class=&#8221;mv6bHd&#8221;&gt;text=True<\/code>:&nbsp;&lt;\/span&gt;&lt;span data-huuid=&#8221;7004591764334545568&#8243;&gt;This decodes the output as text (if possible).&lt;\/span&gt;<\/li>\n<\/ul>\n<p>&lt;\/div&gt;&lt;\/div&gt;&lt;div class=&#8221;WaaZC&#8221;&gt;&lt;div class=&#8221;RJPOee EIJn2&#8243;&gt;&lt;div class=&#8221;rPeykc pyPiTc&#8221; data-hveid=&#8221;CAsQAQ&#8221; data-ved=&#8221;2ahUKEwjRx7WOgrCKAxWeEVkFHRuXEbcQo_EKegQICxAB&#8221;&gt;&lt;span data-huuid=&#8221;7004591764334545094&#8243;&gt;If the subprocess exceeds the timeout:&lt;\/span&gt;&lt;\/div&gt;&lt;\/div&gt;&lt;\/div&gt;&lt;div class=&#8221;WaaZC&#8221;&gt;&lt;div class=&#8221;RJPOee EIJn2&#8243;&gt;&lt;div class=&#8221;rPeykc&#8221; data-hveid=&#8221;CAoQAQ&#8221; data-ved=&#8221;2ahUKEwjRx7WOgrCKAxWeEVkFHRuXEbcQo_EKegQIChAB&#8221;&gt;&lt;span data-huuid=&#8221;7004591764334543435&#8243;&gt;A subprocess.TimeoutExpired exception will be raised and The subprocess will be terminated.&#8221;&lt;\/span&gt;&lt;\/div&gt;&lt;div class=&#8221;rPeykc&#8221; data-hveid=&#8221;CAoQAQ&#8221; data-ved=&#8221;2ahUKEwjRx7WOgrCKAxWeEVkFHRuXEbcQo_EKegQIChAB&#8221;&gt;&nbsp;&lt;\/div&gt;&lt;div class=&#8221;rPeykc&#8221; data-hveid=&#8221;CAoQAQ&#8221; data-ved=&#8221;2ahUKEwjRx7WOgrCKAxWeEVkFHRuXEbcQo_EKegQIChAB&#8221;&gt;&lt;span data-huuid=&#8221;7004591764334543435&#8243;&gt;https:\/\/docs.python.org\/3\/library\/subprocess.html#subprocess.TimeoutExpired&lt;\/span&gt;&lt;\/div&gt;&lt;div class=&#8221;rPeykc&#8221; data-hveid=&#8221;CAoQAQ&#8221; data-ved=&#8221;2ahUKEwjRx7WOgrCKAxWeEVkFHRuXEbcQo_EKegQIChAB&#8221;&gt;&nbsp;&lt;\/div&gt;&lt;div class=&#8221;rPeykc&#8221; data-hveid=&#8221;CAoQAQ&#8221; data-ved=&#8221;2ahUKEwjRx7WOgrCKAxWeEVkFHRuXEbcQo_EKegQIChAB&#8221;&gt;&lt;span data-huuid=&#8221;7004591764334543435&#8243;&gt;Let me know how it goes.&lt;\/span&gt;&lt;\/div&gt;&lt;div class=&#8221;rPeykc&#8221; data-hveid=&#8221;CAoQAQ&#8221; data-ved=&#8221;2ahUKEwjRx7WOgrCKAxWeEVkFHRuXEbcQo_EKegQIChAB&#8221;&gt;&nbsp;&lt;\/div&gt;&lt;div class=&#8221;rPeykc&#8221; data-hveid=&#8221;CAoQAQ&#8221; data-ved=&#8221;2ahUKEwjRx7WOgrCKAxWeEVkFHRuXEbcQo_EKegQIChAB&#8221;&gt;&nbsp;&lt;\/div&gt;&lt;div class=&#8221;rPeykc&#8221; data-hveid=&#8221;CAoQAQ&#8221; data-ved=&#8221;2ahUKEwjRx7WOgrCKAxWeEVkFHRuXEbcQo_EKegQIChAB&#8221;&gt;&lt;span data-huuid=&#8221;7004591764334543435&#8243;&gt;Reno.&lt;\/span&gt;&lt;\/div&gt;&lt;\/div&gt;&lt;\/div&gt;<\/p>\n","protected":false},"template":"","class_list":["post-397811","reply","type-reply","status-publish","hentry"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Hello,You can use the timeout= option with the subprocess.run() method. I tested it and it seems to work.I Googled &quot;How to set a maximum running time with subprocess.run() Python?&quot; to find the solution.&quot;You can set a maximum running time (timeout) for subprocess.run() using the timeout parameter:\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/397811\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Ansys Learning Forum | Ansys Innovation Space\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Reply To: Location of results when using python or cmd to call ls-run to calculate k files | Ansys Learning Forum\" \/>\n\t\t<meta property=\"og:description\" content=\"Hello,You can use the timeout= option with the subprocess.run() method. I tested it and it seems to work.I Googled &quot;How to set a maximum running time with subprocess.run() Python?&quot; to find the solution.&quot;You can set a maximum running time (timeout) for subprocess.run() using the timeout parameter:\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/397811\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-12-18T00:09:54+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-12-18T00:09:54+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Reply To: Location of results when using python or cmd to call ls-run to calculate k files | Ansys Learning Forum\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Hello,You can use the timeout= option with the subprocess.run() method. I tested it and it seems to work.I Googled &quot;How to set a maximum running time with subprocess.run() Python?&quot; to find the solution.&quot;You can set a maximum running time (timeout) for subprocess.run() using the timeout parameter:\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/reply\\\/397811\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/reply\\\/397811\\\/#listItem\",\"name\":\"Reply To: Location of results when using python or cmd to call ls-run to calculate k files\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/reply\\\/397811\\\/#listItem\",\"position\":2,\"name\":\"Reply To: Location of results when using python or cmd to call ls-run to calculate k files\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum#listItem\",\"name\":\"Home\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/#organization\",\"name\":\"Ansys Learning Forum\",\"description\":\"Ansys Innovation Space\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/reply\\\/397811\\\/#webpage\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/reply\\\/397811\\\/\",\"name\":\"Reply To: Location of results when using python or cmd to call ls-run to calculate k files | Ansys Learning Forum\",\"description\":\"Hello,You can use the timeout= option with the subprocess.run() method. I tested it and it seems to work.I Googled \\\"How to set a maximum running time with subprocess.run() Python?\\\" to find the solution.\\\"You can set a maximum running time (timeout) for subprocess.run() using the timeout parameter:\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/forums\\\/reply\\\/397811\\\/#breadcrumblist\"},\"datePublished\":\"2024-12-18T00:09:54+00:00\",\"dateModified\":\"2024-12-18T00:09:54+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/#website\",\"url\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/\",\"name\":\"Ansys Learning Forum\",\"description\":\"Ansys Innovation Space\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/innovationspace.ansys.com\\\/forum\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Reply To: Location of results when using python or cmd to call ls-run to calculate k files | Ansys Learning Forum","description":"Hello,You can use the timeout= option with the subprocess.run() method. I tested it and it seems to work.I Googled \"How to set a maximum running time with subprocess.run() Python?\" to find the solution.\"You can set a maximum running time (timeout) for subprocess.run() using the timeout parameter:","canonical_url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/397811\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/397811\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum#listItem","position":1,"name":"Home","item":"https:\/\/innovationspace.ansys.com\/forum","nextItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/397811\/#listItem","name":"Reply To: Location of results when using python or cmd to call ls-run to calculate k files"}},{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/397811\/#listItem","position":2,"name":"Reply To: Location of results when using python or cmd to call ls-run to calculate k files","previousItem":{"@type":"ListItem","@id":"https:\/\/innovationspace.ansys.com\/forum#listItem","name":"Home"}}]},{"@type":"Organization","@id":"https:\/\/innovationspace.ansys.com\/forum\/#organization","name":"Ansys Learning Forum","description":"Ansys Innovation Space","url":"https:\/\/innovationspace.ansys.com\/forum\/"},{"@type":"WebPage","@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/397811\/#webpage","url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/397811\/","name":"Reply To: Location of results when using python or cmd to call ls-run to calculate k files | Ansys Learning Forum","description":"Hello,You can use the timeout= option with the subprocess.run() method. I tested it and it seems to work.I Googled \"How to set a maximum running time with subprocess.run() Python?\" to find the solution.\"You can set a maximum running time (timeout) for subprocess.run() using the timeout parameter:","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/#website"},"breadcrumb":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/397811\/#breadcrumblist"},"datePublished":"2024-12-18T00:09:54+00:00","dateModified":"2024-12-18T00:09:54+00:00"},{"@type":"WebSite","@id":"https:\/\/innovationspace.ansys.com\/forum\/#website","url":"https:\/\/innovationspace.ansys.com\/forum\/","name":"Ansys Learning Forum","description":"Ansys Innovation Space","inLanguage":"en-US","publisher":{"@id":"https:\/\/innovationspace.ansys.com\/forum\/#organization"}}]},"og:locale":"en_US","og:site_name":"Ansys Learning Forum | Ansys Innovation Space","og:type":"article","og:title":"Reply To: Location of results when using python or cmd to call ls-run to calculate k files | Ansys Learning Forum","og:description":"Hello,You can use the timeout= option with the subprocess.run() method. I tested it and it seems to work.I Googled &quot;How to set a maximum running time with subprocess.run() Python?&quot; to find the solution.&quot;You can set a maximum running time (timeout) for subprocess.run() using the timeout parameter:","og:url":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/397811\/","article:published_time":"2024-12-18T00:09:54+00:00","article:modified_time":"2024-12-18T00:09:54+00:00","twitter:card":"summary_large_image","twitter:title":"Reply To: Location of results when using python or cmd to call ls-run to calculate k files | Ansys Learning Forum","twitter:description":"Hello,You can use the timeout= option with the subprocess.run() method. I tested it and it seems to work.I Googled &quot;How to set a maximum running time with subprocess.run() Python?&quot; to find the solution.&quot;You can set a maximum running time (timeout) for subprocess.run() using the timeout parameter:"},"aioseo_meta_data":{"post_id":"397811","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2025-10-17 21:36:31","updated":"2026-08-14 17:21:34","ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/innovationspace.ansys.com\/forum\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tReply To: Location of results when using python or cmd to call ls-run to calculate k files\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/innovationspace.ansys.com\/forum"},{"label":"Reply To: Location of results when using python or cmd to call ls-run to calculate k files","link":"https:\/\/innovationspace.ansys.com\/forum\/forums\/reply\/397811\/"}],"acf":[],"_links":{"self":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/replies\/397811","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/replies"}],"about":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/types\/reply"}],"version-history":[{"count":0,"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/replies\/397811\/revisions"}],"wp:attachment":[{"href":"https:\/\/innovationspace.ansys.com\/forum\/wp-json\/wp\/v2\/media?parent=397811"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}