<?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: Wilfredo Argumedo</title>
    <description>The latest articles on DEV Community by Wilfredo Argumedo (@willargumedo).</description>
    <link>https://dev.to/willargumedo</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4135294%2Fd83fcb39-c29d-457f-a7df-6c6a7e7b6fe7.jpg</url>
      <title>DEV Community: Wilfredo Argumedo</title>
      <link>https://dev.to/willargumedo</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/willargumedo"/>
    <language>en</language>
    <item>
      <title>I built a free pack of 8 dependency-free Python CLI tools (MIT) — the whole freebie inside</title>
      <dc:creator>Wilfredo Argumedo</dc:creator>
      <pubDate>Mon, 21 Sep 2026 08:32:28 +0000</pubDate>
      <link>https://dev.to/willargumedo/i-built-a-free-pack-of-8-dependency-free-python-cli-tools-mit-the-whole-freebie-inside-5fh9</link>
      <guid>https://dev.to/willargumedo/i-built-a-free-pack-of-8-dependency-free-python-cli-tools-mit-the-whole-freebie-inside-5fh9</guid>
      <description>&lt;p&gt;I keep needing the same little utilities in every project: slugs, log parsing, JWT inspection... So I packaged the ones I use most into &lt;strong&gt;PyToolkit Free&lt;/strong&gt; — 8 Python CLI tools with &lt;strong&gt;zero dependencies&lt;/strong&gt; (Python 3.8+ stdlib only), each with &lt;code&gt;--help&lt;/code&gt;, docstrings and self-tests.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's inside
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Tool&lt;/th&gt;
&lt;th&gt;What it does&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;slugify.py&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;URL-safe slugs from any text&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;roman.py&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Integers ↔ Roman numerals (and back)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;jwt_decode.py&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Inspect JWT header/payload (no signature verification — debug only)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;parse_logs.py&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Apache/Nginx access logs → JSON lines&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;csv2json.py&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;CSV ↔ JSON conversion&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;urlencode.py&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;URL encode/decode, query-string handling&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;jsonpath_lite.py&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Minimal JSONPath-style queries&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;croncheck.py&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;cron expression explainer/validator&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Quick taste:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;echo&lt;/span&gt; &lt;span class="s2"&gt;"Hello World!"&lt;/span&gt; | python slugify.py        &lt;span class="c"&gt;# -&amp;gt; hello-world&lt;/span&gt;
python roman.py 2026                            &lt;span class="c"&gt;# -&amp;gt; MMXXVI&lt;/span&gt;
python parse_logs.py access.log &lt;span class="o"&gt;&amp;gt;&lt;/span&gt; events.jsonl  &lt;span class="c"&gt;# logs -&amp;gt; JSON lines&lt;/span&gt;
python croncheck.py &lt;span class="s2"&gt;"*/5 * * * *"&lt;/span&gt;               &lt;span class="c"&gt;# human-readable cron&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Get it (free, MIT)
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Download:&lt;/strong&gt; &lt;a href="https://argumedo5.gumroad.com/l/nrwkiv" rel="noopener noreferrer"&gt;PyToolkit Free — $0+ (pay what you want)&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It includes the 8 tools, cheat sheets for each one, and smoke tests. If it saves you time, the &lt;a href="https://argumedo5.gumroad.com/l/pmhzi" rel="noopener noreferrer"&gt;full 15-tool pack is $9&lt;/a&gt; and there's a &lt;a href="https://argumedo5.gumroad.com/l/sjjxt" rel="noopener noreferrer"&gt;cheat-sheet-only bundle for $3&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;I also do custom web scraping / data-pipeline work: &lt;a href="https://www.fiverr.com/willargumedo/scrape-any-website-and-deliver-clean-excel-or-csv-data" rel="noopener noreferrer"&gt;scraping gig on Fiverr&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Feedback welcome — what utility would you add next?&lt;/p&gt;

</description>
      <category>python</category>
      <category>showdev</category>
      <category>opensource</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
