<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: DezF</title>
    <description>The latest articles on DEV Community by DezF (@lthreec).</description>
    <link>https://dev.to/lthreec</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3834174%2Fb31ae486-d6dd-4317-9a71-87ffe73b001b.png</url>
      <title>DEV Community: DezF</title>
      <link>https://dev.to/lthreec</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/lthreec"/>
    <language>en</language>
    <item>
      <title>pyruns: a local-first Web UI for running and organizing Python experiments</title>
      <dc:creator>DezF</dc:creator>
      <pubDate>Thu, 19 Mar 2026 19:13:35 +0000</pubDate>
      <link>https://dev.to/lthreec/pyruns-a-local-first-web-ui-for-running-and-organizing-python-experiments-2l44</link>
      <guid>https://dev.to/lthreec/pyruns-a-local-first-web-ui-for-running-and-organizing-python-experiments-2l44</guid>
      <description>&lt;p&gt;If you often do things like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;tweak a few parameters and rerun the same script over and over&lt;/li&gt;
&lt;li&gt;keep shell commands in terminal history and lose track of what actually worked&lt;/li&gt;
&lt;li&gt;run multiple experiments at once and end up with mixed, unreadable logs&lt;/li&gt;
&lt;li&gt;want lightweight experiment management without pushing your workflow into a heavyweight cloud platform&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;then &lt;strong&gt;Pyruns&lt;/strong&gt; might be worth a look.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it is
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Pyruns&lt;/strong&gt; is a local-first experiment workspace for Python scripts and shell tasks.&lt;/p&gt;

&lt;p&gt;It is built around a simple idea:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;experiment tooling should stay close to the way people already work&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That means:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;keep using your own scripts&lt;/li&gt;
&lt;li&gt;keep using your own terminal and conda environment&lt;/li&gt;
&lt;li&gt;keep everything local&lt;/li&gt;
&lt;li&gt;keep task configs, logs, notes, and run history on disk in a predictable workspace&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What it does
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;visual parameter editing for Python script workflows&lt;/li&gt;
&lt;li&gt;batch task generation in form mode&lt;/li&gt;
&lt;li&gt;YAML-based single-task editing&lt;/li&gt;
&lt;li&gt;shell task management with host-terminal semantics&lt;/li&gt;
&lt;li&gt;task search, filtering, rerun, delete, pin, and notes&lt;/li&gt;
&lt;li&gt;terminal-style live logs in the browser&lt;/li&gt;
&lt;li&gt;CSV export for recorded metrics&lt;/li&gt;
&lt;li&gt;one isolated config/log directory per task&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The main entrypoints
&lt;/h2&gt;

&lt;p&gt;The primary path is script-first:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pyr train.py
pyr train.py config.yaml
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This is the recommended first experience for most users.&lt;/p&gt;

&lt;p&gt;There is also a shell-first path:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pyr
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That opens a shell workspace for the current directory.&lt;br&gt;
It is useful when what you want to manage is a set of commands rather than a single Python script.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why it feels different
&lt;/h2&gt;

&lt;p&gt;Pyruns is not trying to replace your workflow with a platform.&lt;/p&gt;

&lt;p&gt;It feels more like a practical local workbench for people who already have:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Python scripts&lt;/li&gt;
&lt;li&gt;YAML configs&lt;/li&gt;
&lt;li&gt;shell commands&lt;/li&gt;
&lt;li&gt;local logs&lt;/li&gt;
&lt;li&gt;repeated experiment runs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;and simply want those pieces to become easier to generate, run, inspect, and revisit.&lt;/p&gt;

&lt;h2&gt;
  
  
  Current stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;React frontend&lt;/li&gt;
&lt;li&gt;FastAPI backend&lt;/li&gt;
&lt;li&gt;Home / Generator / Manager / Monitor UI flow&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Where it fits well
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;argparse&lt;/code&gt;-based training scripts&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;pyruns.load()&lt;/code&gt; / YAML-driven workflows&lt;/li&gt;
&lt;li&gt;local ML or automation experiments&lt;/li&gt;
&lt;li&gt;shell-heavy command workflows&lt;/li&gt;
&lt;li&gt;users who want local visibility without cloud lock-in&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;GitHub: &lt;a href="https://github.com/LthreeC/pyruns" rel="noopener noreferrer"&gt;https://github.com/LthreeC/pyruns&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Docs: &lt;a href="https://lthreec.github.io/pyruns/" rel="noopener noreferrer"&gt;https://lthreec.github.io/pyruns/&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Install
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pip &lt;span class="nb"&gt;install &lt;/span&gt;pyruns
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Start
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pyr train.py
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>programming</category>
      <category>python</category>
      <category>machinelearning</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
