<?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>Forem: Caspel26</title>
    <description>The latest articles on Forem by Caspel26 (@caspel26).</description>
    <link>https://forem.com/caspel26</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%2F3592739%2Ffdb31217-766d-4d44-b2ff-4b0baa18221a.png</url>
      <title>Forem: Caspel26</title>
      <link>https://forem.com/caspel26</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/caspel26"/>
    <language>en</language>
    <item>
      <title>Stop Writing CRUD Boilerplate: Introducing Django Ninja AIO CRUD</title>
      <dc:creator>Caspel26</dc:creator>
      <pubDate>Sun, 01 Feb 2026 10:42:47 +0000</pubDate>
      <link>https://forem.com/caspel26/stop-writing-crud-boilerplate-introducing-django-ninja-aio-crud-1p8p</link>
      <guid>https://forem.com/caspel26/stop-writing-crud-boilerplate-introducing-django-ninja-aio-crud-1p8p</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;TL;DR: I built a framework that turns Django models into complete async REST APIs with filtering, pagination, auth, and relationship support—in ~10 lines of code.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  The Boilerplate Problem
&lt;/h2&gt;

&lt;p&gt;If you've built Django REST APIs, you know the drill:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Define your model&lt;/li&gt;
&lt;li&gt;Create serializer classes (input, output, update)&lt;/li&gt;
&lt;li&gt;Write view functions or ViewSets&lt;/li&gt;
&lt;li&gt;Add filtering logic&lt;/li&gt;
&lt;li&gt;Configure pagination&lt;/li&gt;
&lt;li&gt;Set up authentication&lt;/li&gt;
&lt;li&gt;Handle M2M relationships&lt;/li&gt;
&lt;li&gt;Repeat for every model&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;For a simple &lt;code&gt;Book&lt;/code&gt; model with CRUD operations, you're looking at &lt;strong&gt;150-200 lines&lt;/strong&gt; of mostly boilerplate code.&lt;/p&gt;

&lt;h2&gt;
  
  
  What if it could be 10 lines?
&lt;/h2&gt;

&lt;p&gt;That's the question that led me to build &lt;strong&gt;Django Ninja AIO CRUD&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;[Rest of the article follows the Reddit post structure but with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;More detailed code examples&lt;/li&gt;
&lt;li&gt;Step-by-step tutorial sections&lt;/li&gt;
&lt;li&gt;Architecture explanations&lt;/li&gt;
&lt;li&gt;Comparison tables&lt;/li&gt;
&lt;li&gt;Performance benchmark visualizations&lt;/li&gt;
&lt;li&gt;Migration guide from DRF&lt;/li&gt;
&lt;li&gt;Real-world use case examples]&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Django Ninja AIO CRUD is my attempt to solve the CRUD boilerplate problem while maintaining Django's philosophy of being explicit and flexible.&lt;/p&gt;

&lt;p&gt;It's &lt;strong&gt;not&lt;/strong&gt; trying to be a magic framework that handles everything. It's focused on one thing: eliminating repetitive CRUD patterns while staying out of your way for custom logic.&lt;/p&gt;

&lt;h3&gt;
  
  
  Try it out:
&lt;/h3&gt;

&lt;p&gt;📦 &lt;code&gt;pip install django-ninja-aio-crud&lt;/code&gt;&lt;br&gt;
📚 &lt;a href="https://django-ninja-aio.com" rel="noopener noreferrer"&gt;Documentation&lt;/a&gt;&lt;br&gt;
🐙 &lt;a href="https://github.com/caspel26/django-ninja-aio-crud" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;If you find it useful, consider:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;⭐ Starring the repo&lt;/li&gt;
&lt;li&gt;🐛 Reporting issues&lt;/li&gt;
&lt;li&gt;💡 Suggesting features&lt;/li&gt;
&lt;li&gt;🔀 Contributing code&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Thanks for reading! Happy to answer questions in the comments.&lt;/p&gt;

</description>
      <category>django</category>
      <category>python</category>
      <category>webdev</category>
      <category>api</category>
    </item>
    <item>
      <title>Django Ninja AIO CRUD REST Framework v2.5.0</title>
      <dc:creator>Caspel26</dc:creator>
      <pubDate>Mon, 12 Jan 2026 14:53:20 +0000</pubDate>
      <link>https://forem.com/caspel26/django-ninja-aio-crud-rest-framework-v250-3kd5</link>
      <guid>https://forem.com/caspel26/django-ninja-aio-crud-rest-framework-v250-3kd5</guid>
      <description>&lt;p&gt;Introducing Ninja AIO: a lightweight, async-first framework for building clean, maintainable APIs with Django. It focuses on low-latency performance, clear patterns, and developer-friendly tooling to speed up backend development.&lt;br&gt;
Key features:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Async-first architecture for scalable APIs&lt;/li&gt;
&lt;li&gt;Type-safe request/response handling&lt;/li&gt;
&lt;li&gt;Built-in auth, pagination, and exception handling&lt;/li&gt;
&lt;li&gt;Flexible parsers/renderers (JSON and more)&lt;/li&gt;
&lt;li&gt;Simple model utilities for CRUD&lt;/li&gt;
&lt;li&gt;Dynamic Model Schemas and CRUD operations&lt;/li&gt;
&lt;li&gt;Easy integration into existing Django projects&lt;/li&gt;
&lt;li&gt;Well-structured docs, examples, and tutorials
Why it matters:&lt;/li&gt;
&lt;li&gt;Faster iteration with minimal boilerplate&lt;/li&gt;
&lt;li&gt;Safer code via explicit types and errors&lt;/li&gt;
&lt;li&gt;Production-ready for microservices and APIs&lt;/li&gt;
&lt;li&gt;Clean abstractions and test coverage
Get started:&lt;/li&gt;
&lt;li&gt;GitHub: &lt;a href="https://github.com/caspel26/django-ninja-aio-crud/" rel="noopener noreferrer"&gt;https://github.com/caspel26/django-ninja-aio-crud/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Docs &amp;amp; site: &lt;a href="https://django-ninja-aio.com/" rel="noopener noreferrer"&gt;https://django-ninja-aio.com/&lt;/a&gt;
Open to contributions, feedback, and community discussion.&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>django</category>
      <category>restapi</category>
    </item>
    <item>
      <title>Django Ninja Aio Crud - REST framework</title>
      <dc:creator>Caspel26</dc:creator>
      <pubDate>Sat, 01 Nov 2025 23:07:27 +0000</pubDate>
      <link>https://forem.com/caspel26/django-ninja-aio-crud-rest-framework-5hej</link>
      <guid>https://forem.com/caspel26/django-ninja-aio-crud-rest-framework-5hej</guid>
      <description>&lt;p&gt;Hi everyone, i want to show you my github repo. I created a framework based on Django and Django Ninja that works with asynchronous operations (only them right now) and make you able to create REST api and CRUD operations with a really simple code implementation. Check it on &lt;a href="https://github.com/caspel26/django-ninja-aio-crud" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt; and, if you like, please leave here a comment and a star on github and give it a shot, i will appreciate it a lot.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>django</category>
      <category>backend</category>
      <category>python</category>
    </item>
  </channel>
</rss>
