Tuesday, September 2, 2025

FastAPI: The Modern Python Web Framework

 

Introduction to FastAPI: The Modern Python Web Framework

The world of web frameworks has always been competitive — from Django and Flask in Python to Ruby on Rails, Express.js, and Spring Boot. But in recent years, FastAPI has emerged as one of the fastest-growing Python frameworks.

So what makes FastAPI special? Why are developers choosing it for APIs, microservices, and AI-powered apps? Let’s explore.


What is FastAPI?

FastAPI is a modern, high-performance web framework for building APIs with Python 3.6+ based on standard Python type hints.

It was created by SebastiΓ‘n RamΓ­rez and quickly gained popularity for its speed, ease of use, and developer-friendly features.

πŸ‘‰ Think of it as Flask + Django REST + automatic docs — but faster.


Key Features of FastAPI

  1. Blazing Fast Performance

    • Built on ASGI (Asynchronous Server Gateway Interface).

    • Powered by Starlette (web parts) and Pydantic (data validation).

    • Comparable to Node.js and Go in terms of API performance.

  2. Automatic API Documentation

    • Generates Swagger UI and ReDoc automatically.

    • No extra setup needed — docs update as you code.

  3. Data Validation & Serialization

    • Uses Pydantic for request validation and response models.

    • Strong type checking → fewer bugs.

  4. Asynchronous Support

    • First-class support for async/await.

    • Handles thousands of requests concurrently.

  5. Easy to Learn, Easy to Use

    • Minimal boilerplate (like Flask).

    • Clear, Pythonic syntax.


Getting Started with FastAPI

Step 1: Install FastAPI and Uvicorn

pip install fastapi uvicorn

Step 2: Create Your First App

# main.py from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"} @app.get("/items/{item_id}") def read_item(item_id: int, q: str = None): return {"item_id": item_id, "q": q}

Step 3: Run the Server

uvicorn main:app --reload
  • Open http://127.0.0.1:8000 → API is live.

  • Open http://127.0.0.1:8000/docs → Swagger UI (auto docs).


When to Use FastAPI

✅ Building REST APIs & microservices.
✅ AI/ML model serving (popular in data science).
✅ High-performance backend systems.
✅ Applications requiring async operations (chat apps, real-time APIs).

Not ideal for:
❌ Heavy full-stack apps (use Django or Rails instead).
❌ When you need batteries-included features like admin panels, auth, ORM (Django is better here).


FastAPI vs Django vs Flask

FeatureFastAPIDjangoFlask
Speed (async)⚡ Very Fast🐒 Slower (sync)πŸ‡ Fast
Type Safety✅ Built-in❌ Limited❌ Limited
Auto Docs✅ Yes (Swagger)❌ No❌ No
Learning CurveEasyMediumEasy
Best ForAPIs, ML appsFull-stack appsSimple APIs

Final Thoughts

FastAPI is quickly becoming the go-to framework for modern Python APIs. Its speed, automatic documentation, async support, and Pythonic design make it a favorite for developers building microservices, ML model backends, and high-performance systems.

If you’re coming from Flask, you’ll love the simplicity with extra power.
If you’re coming from Django, you’ll appreciate how lightweight and fast it is for APIs.

πŸ‘‰ In short: If you’re building APIs in Python today, FastAPI is one of the best choices available.

Friday, August 29, 2025

Ruby on Rails Developer to Python/Django Developer

 

πŸ”„ Transition from Ruby on Rails Developer to Python/Django Developer

If you’re a Ruby on Rails developer, you might have noticed how Python and Django are booming in today’s tech market — especially with the rise of AI, Machine Learning, and Data Science. While Rails remains a powerful and productive framework, many developers are looking to expand their skill set and enter the Python/Django ecosystem.

The good news? If you already know Rails, moving to Django is easier than you think. In this guide, I’ll walk you through how to successfully make the transition.


🐍 Step 1: Learn Python Basics

Since you already know Ruby, Python will feel simple. Focus on:

  • Python syntax (functions, classes, loops).

  • Package management (pip, pipenv, poetry).

  • Virtual environments (venv).

  • Python coding style (PEP8).

πŸ‘‰ Spend a couple of weeks writing small Python scripts to get comfortable.


🌐 Step 2: Map Rails Concepts to Django

Django was inspired by Rails, so many ideas are familiar.

Ruby on RailsDjango
rails new appdjango-admin startproject app
MVC (Model-View-Controller)MTV (Model-Template-View)
ActiveRecord ORMDjango ORM
config/routes.rburls.py
ERB / Haml templatesDjango Templates (Jinja-like)
rake db:migratepython manage.py migrate
Gems (Bundler)Pip packages / requirements.txt
Sidekiq / ActiveJobCelery / Django-Q

πŸ‘‰ Once you learn the syntax differences, the core concepts feel like home.


πŸ› ️ Step 3: Build Your First Django Project

Start small:

pip install django django-admin startproject blog cd blog python manage.py runserver

Then create your first app:

python manage.py startapp posts

This is similar to Rails engines/modules.


πŸ“¦ Step 4: Learn Django Ecosystem

To be market-ready, you’ll also need:

  • Django Rest Framework (DRF): APIs, like Rails API mode.

  • Celery: Background jobs, like Sidekiq.

  • Gunicorn + Nginx: Like Puma/Passenger for production.

  • pytest: For testing, similar to RSpec.

  • Poetry/Pipenv: Like Bundler for managing dependencies.


πŸ”— Step 5: Explore Python Beyond Web

Unlike Ruby, Python dominates multiple fields:

  • Data Science & AI → Pandas, NumPy, PyTorch, TensorFlow.

  • Automation & DevOps → Ansible, Fabric, scripts.

  • APIs → FastAPI (great complement to Django).

πŸ‘‰ This makes you not just a web developer, but a multi-domain Python developer.


πŸš€ Step 6: Transition Plan

  • Rebuild a Rails app in Django (blog, task manager, e-commerce cart).

  • Contribute to open-source Django projects.

  • Take small freelance projects in Django to build confidence.

  • Market yourself as a full-stack developer with Rails + Django expertise.


πŸ“… Suggested Timeline

  • Month 1: Python basics + scripts.

  • Month 2: Django core (models, views, templates, forms, auth).

  • Month 3: REST APIs with DRF + deployment (Heroku, Docker, AWS).

  • Month 4+: Celery, testing with pytest, async (FastAPI).

By 3–4 months, a Rails developer can confidently transition into a Python/Django developer.

Python Feel “Hot” While Ruby on Rails Feels “Dead”

 

Why Does Python Feel “Hot” While Ruby on Rails Feels “Dead”?

If you’ve been following tech trends, you’ve probably noticed something: Python is everywhere — data science, AI, automation, scripting, backend development. Meanwhile, people often say “Rails is dead”.

But is that really true? Let’s explore why Python seems to dominate the conversation while Rails quietly powers some of the biggest apps in the world.


πŸš€ Python: The Language of the Hype Cycle

Python’s growth story is incredible. Here’s why it feels “hot”:

  • AI & Machine Learning: Libraries like TensorFlow, PyTorch, Pandas, and NumPy made Python the default for AI research, startups, and now Generative AI.

  • Universities & Education: Python is taught as the first programming language in most schools, creating a constant pipeline of new developers.

  • Multiple Domains: Web apps (Django, Flask, FastAPI), scripting, DevOps, data engineering, AI — Python is everywhere.

πŸ‘‰ Python isn’t just a language anymore, it’s an ecosystem that touches every part of the industry.


🌐 Ruby on Rails: The Specialist

Ruby on Rails, on the other hand, stayed focused: web development.

  • It’s still one of the fastest ways to build SaaS, marketplaces, and e-commerce platforms.

  • Rails apps power Shopify, GitHub, Basecamp, Hey.com, Airbnb (early years) and countless startups.

  • Rails developers can build production-grade apps in weeks, not months.

πŸ‘‰ Rails chose depth over breadth — it’s not everywhere, but it’s very strong where it plays.


πŸ’Ό Market Trends: Jobs and Perception

Why does it feel like Python = opportunity, and Rails = old news?

  • Python jobs exploded because of AI/ML hype and funding.

  • Rails jobs are concentrated in SaaS companies and established businesses.

  • Startups today often default to Node.js + React (because of frontend dominance) or Python + FastAPI (because of AI integration).

πŸ‘‰ This creates the perception that Rails is dead — but in reality, it’s just not riding the AI hype wave.


πŸ“£ Community Energy

Another key difference:

  • Python community is academic, research-heavy, and hype-driven → always publishing papers, open-source models, tools.

  • Rails community is pragmatic, product-driven, and quieter → people are busy building businesses with Rails.

πŸ‘‰ Rails lacks the buzz, but not the impact.


πŸ”₯ Rails 8: The Quiet Comeback

Rails 8 proves the framework is far from dead:

  • Kamal → built-in Docker-based deployment (no PaaS required).

  • Solid Queue → native job system (no Redis needed).

  • Solid Cache → built-in caching with ActiveRecord.

  • Propshaft → modern replacement for Sprockets.

Rails is positioning itself as:

“The fastest way for small teams to go from idea → production without DevOps headaches.”

That’s powerful.


🎯 Final Thoughts

So why does Python feel hot while Rails feels dead?

  • Python = hype, breadth, and AI-driven growth.

  • Rails = stability, productivity, and shipping production apps fast.

Rails isn’t dead — it’s just mature and stable. It doesn’t chase every hype cycle, but it quietly powers some of the most important apps on the internet.

πŸ‘‰ If you want to build the next AI model, Python is a great choice.
πŸ‘‰ If you want to build the SaaS product that monetizes it, Rails is still one of the best bets.

New Feature in Ruby on Rails 8

 

What’s New in Ruby on Rails 8?

Ruby on Rails has always been about developer happiness and productivity. With the release of Rails 8, the framework takes another giant leap forward, making it easier than ever to build, deploy, and scale modern web applications.

In this post, we’ll explore the most exciting new features in Rails 8 and why it matters for developers and businesses.


🌟 1. Built-in Deployment with Kamal (No PaaS Needed)

Traditionally, deploying Rails apps required third-party services like Heroku or custom DevOps pipelines. Rails 8 changes this with Kamal (formerly “MRSK”), a first-class deployment tool included in Rails.

  • πŸš€ Deploy Rails apps to any cloud or VPS (AWS, GCP, DigitalOcean, etc.).

  • 🐳 Uses Docker under the hood for consistent environments.

  • πŸ”„ Rollbacks and zero-downtime deploys out-of-the-box.

πŸ‘‰ This means you can go from development to production without needing a PaaS provider.


🌟 2. Propshaft: The Next-Gen Asset Pipeline

Rails 8 introduces Propshaft, a modern replacement for Sprockets.

  • Simpler, faster, and more reliable.

  • Designed for modern JS & CSS tooling (ESBuild, Vite, Tailwind).

  • No more config-heavy asset management headaches.

πŸ‘‰ With Propshaft, assets are leaner and the pipeline plays nicely with today’s frontend workflows.


🌟 3. Solid Queue: Built-in Background Jobs

Rails has had Active Job for years, but you still needed a backend like Sidekiq or Resque. Rails 8 introduces Solid Queue — a native, database-backed job queue system.

  • πŸ“¦ No Redis required — works with just your database.

  • ✅ Great for small to medium apps that don’t need a dedicated queue.

  • πŸ”„ Still works with external job processors if you want.

πŸ‘‰ Background processing is now easier to set up and manage in any Rails app.


🌟 4. Solid Cache: Smarter Caching with Active Record

Caching has been supercharged in Rails 8 with Solid Cache:

  • Stores cache entries directly in the database.

  • Works well with horizontal scaling (multiple servers).

  • Provides visibility and management through ActiveRecord.

πŸ‘‰ Caching is now simpler and more reliable without needing extra infrastructure.


🌟 5. Rails Defaults 8.0

Every major release updates Rails defaults to modern best practices. In Rails 8, new apps come pre-configured with:

  • Latest security defaults.

  • Zeitwerk mode as the standard.

  • Propshaft instead of Sprockets.

  • Optimized configs for production-ready apps.

πŸ‘‰ Less time tweaking configs, more time building features.


🌟 6. General Improvements & Enhancements

  • Action Mailer improvements → better async delivery.

  • Stronger ActiveRecord performance optimizations.

  • Better support for Hotwire & Turbo out of the box.

  • Minor DX (developer experience) improvements across generators, configs, and logs.


🎯 Why Rails 8 Matters

Rails 8 isn’t just an upgrade — it’s a statement:

  • Developers get full-stack power without extra tools.

  • Small teams can ship production apps without DevOps complexity.

  • Rails remains one of the fastest ways to build modern web apps.

With Kamal, Propshaft, Solid Queue, and Solid Cache, Rails 8 gives developers the full power of a modern framework + deployment + infrastructure in one package.


✅ Final Thoughts

Rails 8 is all about simplicity, productivity, and independence. It removes external dependencies, makes deployment first-class, and improves the developer experience.

If you’re starting a new project, Rails 8.0.2.1 (latest stable) is the version you should be using. And if you’re on Rails 7, now’s the perfect time to plan an upgrade.

πŸ’‘ In short: Rails 8 makes it easier than ever to go from idea → production with minimal friction.

Thursday, August 28, 2025

Using GenAI in Ruby on Rails

 

🧠 What is GenAI?

Generative AI (GenAI) refers to AI systems that can generate content — like text, images, code, or even audio — rather than just analyzing or classifying data. Popular examples include ChatGPT, DALL·E, and Stable Diffusion.

In a Ruby on Rails project, you can use GenAI to:

  • Build chatbots for customer support.

  • Generate product descriptions or blog posts dynamically.

  • Enhance search features with natural language understanding.

  • Create summaries of long documents.

  • Automate email replies or notifications.


⚙️ Using GenAI in Ruby on Rails

The most common way is to connect Rails with OpenAI’s API (or other GenAI providers like Anthropic, Cohere, Stability AI).

Example: Text Generation with OpenAI (GPT-4o-mini)

# app/services/genai_service.rb require "openai" class GenaiService def initialize @client = OpenAI::Client.new(access_token: Rails.application.credentials.dig(:openai, :api_key)) end def generate_text(prompt) response = @client.chat( parameters: { model: "gpt-4o-mini", messages: [{ role: "user", content: prompt }], temperature: 0.7 } ) response.dig("choices", 0, "message", "content") end end

Usage in a controller:

class GenaiController < ApplicationController def create prompt = params[:prompt] ai = GenaiService.new render json: { result: ai.generate_text(prompt) } end end

Example: Image Generation with DALL·E

def generate_image(prompt) response = @client.images.generate( parameters: { prompt: prompt, size: "512x512" } ) response.dig("data", 0, "url") end

πŸš€ Benefits of GenAI in Rails Apps

✅ Saves time by automating repetitive tasks.
✅ Improves user experience with natural conversations.
✅ Personalizes content for users.
✅ Adds innovative features that differentiate your app.

Integrating OpenAI with Ruby on Rails

 

Integrating OpenAI with Ruby on Rails: A Step-by-Step Guide

Artificial Intelligence is transforming how modern web applications are built, and OpenAI’s models can be seamlessly integrated into your Ruby on Rails projects to add natural language processing, chatbots, content generation, and more. In this guide, we’ll walk through how to set up OpenAI in a Rails application.


πŸ”§ Step 1: Add the OpenAI Gem

First, install the ruby-openai gem. This gem provides a simple wrapper around OpenAI’s API.

# Gemfile gem "ruby-openai"

Run:

bundle install

πŸ”‘ Step 2: Configure API Key

Set your OpenAI API key as an environment variable (best practice is to use dotenv-rails or Rails credentials).

export OPENAI_ACCESS_TOKEN="your_api_key_here"

Or inside Rails credentials:

EDITOR="nano" bin/rails credentials:edit
openai: api_key: your_api_key_here

πŸ’» Step 3: Initialize OpenAI Client

Create a service file for handling OpenAI requests, for example:

# app/services/openai_service.rb require "openai" class OpenaiService def initialize @client = OpenAI::Client.new(access_token: Rails.application.credentials.dig(:openai, :api_key)) end def chat(prompt) response = @client.chat( parameters: { model: "gpt-4o-mini", messages: [{ role: "user", content: prompt }], temperature: 0.7 } ) response.dig("choices", 0, "message", "content") end end

πŸš€ Step 4: Use OpenAI in a Controller

Example controller to call the service:

# app/controllers/ai_controller.rb class AiController < ApplicationController def generate prompt = params[:prompt] ai_service = OpenaiService.new @response = ai_service.chat(prompt) render json: { response: @response } end end

And add a route:

# config/routes.rb post "ai/generate", to: "ai#generate"

🌐 Step 5: Test the Endpoint

Send a POST request with a prompt:

curl -X POST http://localhost:3000/ai/generate \ -H "Content-Type: application/json" \ -d '{"prompt":"Explain Ruby on Rails in simple terms."}'

Response:

{ "response": "Ruby on Rails is a web framework that helps developers build web apps quickly..." }

πŸ“Š Possible Use Cases in Rails

  • Customer support chatbots

  • Blog/content generation

  • Code suggestions in developer tools

  • Semantic search & recommendations

  • Automating routine text tasks


✅ Final Thoughts

Integrating OpenAI with Ruby on Rails is straightforward using the ruby-openai gem. By following the steps above, you can add powerful AI-driven features to your Rails app and create a more interactive, intelligent experience for users.

Thursday, July 6, 2017

datepicker with nested form field

Indeed, you will have to retrigger the datepicker plugin. You are probably doing something like
$('datepicker').some_function_to_do_your_datepicker_styling();
But of course, the dynamically added elements are not yet in the DOM.
So do something like:
$('form').on('cocoon:after-insert', function() {
  /* apply datepicker styling */ 
});

FastAPI: The Modern Python Web Framework

  Introduction to FastAPI: The Modern Python Web Framework The world of web frameworks has always been competitive — from Django and Flask ...