<?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: Kalainithi sekar</title>
    <description>The latest articles on DEV Community by Kalainithi sekar (@kalainithi_sekar).</description>
    <link>https://dev.to/kalainithi_sekar</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%2F4073377%2Fa9ccd335-caed-444d-89d2-9c3a121ea035.png</url>
      <title>DEV Community: Kalainithi sekar</title>
      <link>https://dev.to/kalainithi_sekar</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kalainithi_sekar"/>
    <language>en</language>
    <item>
      <title>Day 7 &amp; 8: Python Full Stack Development</title>
      <dc:creator>Kalainithi sekar</dc:creator>
      <pubDate>Wed, 26 Aug 2026 15:20:11 +0000</pubDate>
      <link>https://dev.to/kalainithi_sekar/day-7-8-python-full-stack-development-28pn</link>
      <guid>https://dev.to/kalainithi_sekar/day-7-8-python-full-stack-development-28pn</guid>
      <description>&lt;p&gt;Day 7 &amp;amp; 8 of learning Python Full Stack Development, yesterday and today I have started taking an notes for my project ideas and studying about API. As I'm going to started my project, reading some SRS, architecture and features involving in my project and side by side I was learning fastAPI&lt;/p&gt;

</description>
      <category>fastapi</category>
      <category>project</category>
    </item>
    <item>
      <title>Day 6: Python Full Stack Development Learning</title>
      <dc:creator>Kalainithi sekar</dc:creator>
      <pubDate>Sun, 23 Aug 2026 09:27:20 +0000</pubDate>
      <link>https://dev.to/kalainithi_sekar/day-6-python-full-stack-development-learning-5e11</link>
      <guid>https://dev.to/kalainithi_sekar/day-6-python-full-stack-development-learning-5e11</guid>
      <description>&lt;p&gt;Today, its in-depth learning for API concept like working, uses and importants API. And now i can write an code for API in Python using FastAPI likely:&lt;br&gt;
installing the fastAPI &lt;br&gt;
"pip install fastapi uvicorn"&lt;br&gt;
create a file called "main.py"&lt;/p&gt;

&lt;p&gt;from fastapi import FastAPI&lt;/p&gt;

&lt;p&gt;app = FastAPI()&lt;/p&gt;

&lt;p&gt;@app.get("/")&lt;br&gt;
def home():&lt;br&gt;
    return {"message": "Welcome to my first API"}&lt;/p&gt;

&lt;p&gt;@app.get("/student")&lt;br&gt;
def get_student():&lt;br&gt;
    return {&lt;br&gt;
        "id": 1,&lt;br&gt;
        "name": "Kavin",&lt;br&gt;
        "age": 21,&lt;br&gt;
        "department": "Computer Science"&lt;br&gt;
    } &lt;br&gt;
to run this code, go to the folder containing "main.py" and similar to "Uvicorn running on http://" running , opening through browser and returns the message as "Welcome to my first API "&lt;br&gt;
output:&lt;br&gt;
{&lt;br&gt;
    "id": 1,&lt;br&gt;
    "name": "Kavin",&lt;br&gt;
    "age": 21,&lt;br&gt;
    "department": "Computer Science"&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;let's know what happened behind the code&lt;/p&gt;

&lt;p&gt;Browser&lt;br&gt;
   |&lt;br&gt;
   | GET /student&lt;br&gt;
   ↓&lt;br&gt;
FastAPI&lt;br&gt;
   |&lt;br&gt;
   ↓&lt;br&gt;
get_student()&lt;br&gt;
   |&lt;br&gt;
   ↓&lt;br&gt;
Student data&lt;br&gt;
   |&lt;br&gt;
   ↓&lt;br&gt;
JSON Response&lt;br&gt;
   |&lt;br&gt;
   ↓&lt;br&gt;
Browser&lt;/p&gt;

&lt;p&gt;At the end of this I could understand how could API can connect though the server.&lt;/p&gt;

&lt;p&gt;Strengthening Learning Skills&lt;/p&gt;

</description>
      <category>api</category>
      <category>backend</category>
      <category>python</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Day 5: Python Full Stack Development</title>
      <dc:creator>Kalainithi sekar</dc:creator>
      <pubDate>Thu, 20 Aug 2026 16:42:56 +0000</pubDate>
      <link>https://dev.to/kalainithi_sekar/day-5-python-full-stack-development-57ob</link>
      <guid>https://dev.to/kalainithi_sekar/day-5-python-full-stack-development-57ob</guid>
      <description>&lt;p&gt;Day 5 of learning Python Full Stack Development &lt;br&gt;
Today it start with API , In real world applications, API connect the frontend , backend, databases, mobile apps and external services. Starting with how to use an API - client /consumer and how to create an API -API developer/provider .It officially covers query parameter, validation, authentication-related features and testing.&lt;/p&gt;

&lt;p&gt;The API receives the request, Python processes it, gets the data from the database and sends the response back. Real world example like weather application. And now I have understood, why do we need API's, Architecture Important like frontend to backend application and more.&lt;/p&gt;

&lt;p&gt;Second concept In Python, routers and factories are design patterns and architectural tools used to organize code, manage control flow, and create objects efficiently. They are highly prevalent in web frameworks like FastAPI, Flask, and Django, as well as in general software development.&lt;/p&gt;

&lt;p&gt;Combining Both: A Real-World Architecture In a professional Python application, routers and factories often work together. A Factory creates the application instance, and Routers are then attached to that instance to organize the endpoints.&lt;/p&gt;

&lt;p&gt;"SkillForge💥"&lt;/p&gt;

</description>
      <category>api</category>
      <category>router</category>
      <category>factory</category>
      <category>ai</category>
    </item>
    <item>
      <title>Day 4:My Python Full Stack Development Learning Journey</title>
      <dc:creator>Kalainithi sekar</dc:creator>
      <pubDate>Wed, 19 Aug 2026 15:32:29 +0000</pubDate>
      <link>https://dev.to/kalainithi_sekar/day-4my-python-full-stack-development-learning-journey-300h</link>
      <guid>https://dev.to/kalainithi_sekar/day-4my-python-full-stack-development-learning-journey-300h</guid>
      <description>&lt;p&gt;Day 4 of learning Python Full Stack Development, &lt;br&gt;
Today its starts with learning NLP concept like  that helps computers understand, process, analyze and generate human language ,its important NLP and working process .Added on Natural Language Processing libraries like NLTK(Natural Language Toolkit),NLP libraries and application.&lt;/p&gt;

&lt;p&gt;Second topic FastAPI , fast python web framework used to build APIs(Application Programming Interfaces), useful for backend technology and responding. HTTP Methods  like GET,  POST, DELETE and path , query parameters. &lt;br&gt;
Frontend sends text to FastAPI → FastAPI processes it with an NLP/ML model → returns the prediction to the frontend.&lt;/p&gt;

&lt;p&gt;added on some libraries in python like Pandas and SciPy are important libraries used in different platform like Data science ,ML etc,...&lt;/p&gt;

&lt;p&gt;I'm excited learn further topics in upcoming sessions&lt;/p&gt;

&lt;p&gt;learning, Practicing, and strengthening !&lt;/p&gt;

</description>
      <category>libraries</category>
      <category>nlp</category>
      <category>fastapi</category>
      <category>strengtheningprocess</category>
    </item>
    <item>
      <title>My Python Full Stack Development Learning Journey</title>
      <dc:creator>Kalainithi sekar</dc:creator>
      <pubDate>Tue, 18 Aug 2026 16:55:09 +0000</pubDate>
      <link>https://dev.to/kalainithi_sekar/my-python-full-stack-development-learning-journey-pka</link>
      <guid>https://dev.to/kalainithi_sekar/my-python-full-stack-development-learning-journey-pka</guid>
      <description>&lt;p&gt;Day 2 &amp;amp; 3: My Python Full Stack Development Learning Journey 🐍💻&lt;/p&gt;

&lt;p&gt;My journey in **Python Full Stack Development continues! 🚀&lt;/p&gt;

&lt;p&gt;During Day 2 and Day 3, I learned several important Python basics, including variables, data types, operators, conditional statements, and taking input from the user.&lt;/p&gt;

&lt;p&gt;To strengthen my understanding, I practiced simple programs such as:&lt;/p&gt;

&lt;p&gt;Checking whether a number is positive, negative, or zero&lt;br&gt;
Checking whether a number is odd or even&lt;br&gt;
Creating a simple calculator using if-else conditions&lt;br&gt;
Working with different data types and user inputs&lt;/p&gt;

&lt;p&gt;These practice programs helped me understand how Python works in real situations rather than just learning the concepts theoretically.&lt;/p&gt;

&lt;p&gt;By the end of these sessions, I felt more confident and gained a stronger understanding of the concepts I practiced. I’m excited to continue learning, practicing, and improving my Python skills step by step.&lt;/p&gt;

&lt;p&gt;Day 2 &amp;amp; 3 — Learning, Practicing, and Growing! 💪&lt;/p&gt;

</description>
      <category>codingjourney</category>
      <category>learningpython</category>
    </item>
    <item>
      <title>From Today, I Started My Journey in Python Full Stack Development</title>
      <dc:creator>Kalainithi sekar</dc:creator>
      <pubDate>Thu, 13 Aug 2026 12:33:13 +0000</pubDate>
      <link>https://dev.to/kalainithi_sekar/from-today-i-started-my-journey-in-python-full-stack-development-j55</link>
      <guid>https://dev.to/kalainithi_sekar/from-today-i-started-my-journey-in-python-full-stack-development-j55</guid>
      <description>&lt;p&gt;Today, I started my journey in Python Full Stack Development.&lt;br&gt;
It was my first class, and we began with a simple self-introduction.&lt;br&gt;
My mentor then explained the basics of Python programming.&lt;br&gt;
I practiced simple programs like addition, subtraction, and multiplication.&lt;br&gt;
I also created a small program to display student information using variables.&lt;br&gt;
I realized that strong basics are important for becoming a good developer.&lt;br&gt;
This is just the beginning, and I am excited to learn more in the coming days.&lt;br&gt;
Every expert was once a beginner.&lt;br&gt;
Today, I started my journey.&lt;/p&gt;

</description>
      <category>learning</category>
      <category>python</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
