<?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: Kasra Khaksar</title>
    <description>The latest articles on DEV Community by Kasra Khaksar (@kasrakhaksar).</description>
    <link>https://dev.to/kasrakhaksar</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%2F3991103%2Fa8e34f38-eb86-4d2e-be74-86b0a6904a36.jpg</url>
      <title>DEV Community: Kasra Khaksar</title>
      <link>https://dev.to/kasrakhaksar</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kasrakhaksar"/>
    <language>en</language>
    <item>
      <title>Introducing Py-Auto-Migrate: Database Migration Made Simple</title>
      <dc:creator>Kasra Khaksar</dc:creator>
      <pubDate>Thu, 18 Jun 2026 15:08:39 +0000</pubDate>
      <link>https://dev.to/kasrakhaksar/introducing-py-auto-migrate-database-migration-made-simple-1oke</link>
      <guid>https://dev.to/kasrakhaksar/introducing-py-auto-migrate-database-migration-made-simple-1oke</guid>
      <description>&lt;p&gt;Honestly, sometimes migrating between databases during a project is difficult.&lt;/p&gt;

&lt;p&gt;For example, transferring tables between relational databases or transferring data between a relational database and a NoSQL database.&lt;/p&gt;

&lt;p&gt;That's why I built &lt;strong&gt;Py-Auto-Migrate&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Py-Auto-Migrate?
&lt;/h2&gt;

&lt;p&gt;Py-Auto-Migrate is an open source tool that automatically transfers data between different database systems.&lt;/p&gt;

&lt;p&gt;Simply provide a &lt;strong&gt;source&lt;/strong&gt; and &lt;strong&gt;target&lt;/strong&gt; database, and the tool will:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Detect schemas automatically&lt;/li&gt;
&lt;li&gt;Map data types between databases&lt;/li&gt;
&lt;li&gt;Create missing tables and databases&lt;/li&gt;
&lt;li&gt;Migrate data with minimal configuration&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Installation
&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;py-auto-migrate
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;py-auto-migrate migrate &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--source&lt;/span&gt; &lt;span class="s2"&gt;"mongodb://user:pass@localhost:27017/source_db"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--target&lt;/span&gt; &lt;span class="s2"&gt;"mysql://user:pass@localhost:3306/target_db"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Supports SQL and NoSQL databases&lt;/li&gt;
&lt;li&gt;Automatic schema detection and creation&lt;/li&gt;
&lt;li&gt;Migrate a single table or an entire database&lt;/li&gt;
&lt;li&gt;AI-powered filtering and querying using natural language (only relational databases)&lt;/li&gt;
&lt;li&gt;Web dashboard&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Supported Databases
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;MySQL&lt;/li&gt;
&lt;li&gt;PostgreSQL&lt;/li&gt;
&lt;li&gt;Oracle&lt;/li&gt;
&lt;li&gt;SQL Server&lt;/li&gt;
&lt;li&gt;MariaDB&lt;/li&gt;
&lt;li&gt;SQLite&lt;/li&gt;
&lt;li&gt;MongoDB&lt;/li&gt;
&lt;li&gt;Redis&lt;/li&gt;
&lt;li&gt;DynamoDB&lt;/li&gt;
&lt;li&gt;Elasticsearch&lt;/li&gt;
&lt;li&gt;ClickHouse&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Web Dashboard
&lt;/h2&gt;

&lt;p&gt;For users who prefer a GUI, Py-Auto-Migrate includes a dashboard:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;py-auto-migrate dashboard
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;⚠️ &lt;strong&gt;Py-Auto-Migrate is still in its early stages and should not be considered a fully stable release yet.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Project links :
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/kasrakhaksar/py-auto-migrate" rel="noopener noreferrer"&gt;https://github.com/kasrakhaksar/py-auto-migrate&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;PyPI:&lt;/strong&gt; &lt;a href="https://pypi.org/project/py-auto-migrate/" rel="noopener noreferrer"&gt;https://pypi.org/project/py-auto-migrate/&lt;/a&gt;&lt;/p&gt;

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