<?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: Yasin Islam</title>
    <description>The latest articles on DEV Community by Yasin Islam (@yasliu).</description>
    <link>https://dev.to/yasliu</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%2F3892924%2F6c91627c-5892-41cd-81a5-5951f2b6c544.png</url>
      <title>DEV Community: Yasin Islam</title>
      <link>https://dev.to/yasliu</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/yasliu"/>
    <language>en</language>
    <item>
      <title>I built a CLI tool to quickly sanity-check CSV files (tidypeek)</title>
      <dc:creator>Yasin Islam</dc:creator>
      <pubDate>Wed, 22 Apr 2026 17:45:45 +0000</pubDate>
      <link>https://dev.to/yasliu/i-built-a-cli-tool-to-quickly-sanity-check-csv-files-tidypeek-1do5</link>
      <guid>https://dev.to/yasliu/i-built-a-cli-tool-to-quickly-sanity-check-csv-files-tidypeek-1do5</guid>
      <description>&lt;p&gt;Working with CSV files is annoying.&lt;/p&gt;

&lt;p&gt;You load a dataset and immediately start wondering:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Are there missing values?&lt;/li&gt;
&lt;li&gt;Are there duplicate rows?&lt;/li&gt;
&lt;li&gt;Which column is the actual ID?&lt;/li&gt;
&lt;li&gt;Is this dataset even clean enough to work with?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I found myself doing the same basic checks over and over again — so I built a small CLI tool to speed it up.&lt;/p&gt;




&lt;h2&gt;
  
  
  Introducing tidypeek
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;tidypeek&lt;/strong&gt; is a lightweight command-line tool that gives you a quick sanity check of any CSV file.&lt;/p&gt;

&lt;p&gt;You can install it with:&lt;/p&gt;

&lt;p&gt;pip install tidypeek&lt;/p&gt;

&lt;p&gt;and run:&lt;/p&gt;

&lt;p&gt;tidypeek yourfile.csv&lt;/p&gt;




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

&lt;p&gt;It analyzes your dataset and shows:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;total rows and columns&lt;/li&gt;
&lt;li&gt;column types&lt;/li&gt;
&lt;li&gt;missing values&lt;/li&gt;
&lt;li&gt;duplicate rows&lt;/li&gt;
&lt;li&gt;likely identifier columns&lt;/li&gt;
&lt;li&gt;duplicate IDs&lt;/li&gt;
&lt;li&gt;simple insights about your data&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Example output
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F715w699vsf687whpfjaz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F715w699vsf687whpfjaz.png" alt="An example screenshot of how the output will look like" width="800" height="626"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Why I built it
&lt;/h2&gt;

&lt;p&gt;Most tools are either:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;too heavy (full profiling libraries)&lt;/li&gt;
&lt;li&gt;or too manual (writing the same pandas code every time)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I wanted something:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;fast&lt;/li&gt;
&lt;li&gt;simple&lt;/li&gt;
&lt;li&gt;terminal-based&lt;/li&gt;
&lt;li&gt;useful before real analysis&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Some example insights it gives
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;“4 columns have high missing values”&lt;/li&gt;
&lt;li&gt;“Column ‘name’ appears to be an identifier but contains duplicates”&lt;/li&gt;
&lt;li&gt;“12 columns have low uniqueness — useful for grouping”&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Thoughts
&lt;/h2&gt;

&lt;p&gt;This is still v1, but already useful for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;quick dataset inspection&lt;/li&gt;
&lt;li&gt;data cleaning workflows&lt;/li&gt;
&lt;li&gt;learning data analysis&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  GitHub
&lt;/h2&gt;

&lt;p&gt;[&lt;a href="https://github.com/Yasliu/TidyPeek" rel="noopener noreferrer"&gt;https://github.com/Yasliu/TidyPeek&lt;/a&gt;]&lt;/p&gt;

&lt;h2&gt;
  
  
  PyPI
&lt;/h2&gt;

&lt;p&gt;[&lt;a href="https://pypi.org/project/tidypeek/" rel="noopener noreferrer"&gt;https://pypi.org/project/tidypeek/&lt;/a&gt;]&lt;/p&gt;




&lt;p&gt;If you work with CSVs a lot, would love feedback on what else to add.&lt;/p&gt;

</description>
      <category>python</category>
      <category>cli</category>
      <category>data</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
