Skip to main content
Python Python is a concise and elegant programming language widely used in web development, data analysis, and AI.

Backend Frameworks

FastAPI

A modern, high-performance Python web framework with async support and auto-generated API docs.
from fastapi import FastAPI

app = FastAPI()

@app.get("/")
async def root():
    return {"message": "Hello World"}

FastAPI Details

Route params, request bodies, dependency injection, middleware, and auth.

Flask

A lightweight web framework for quick prototyping of small applications.

Django

A full-stack web framework with built-in ORM, admin panel, and more.

Web Scraping

Scraping Guide

From basics to advanced techniques, anti-scraping strategies and real cases.

Library Index

Notes on httpx, matplotlib, wordcloud, PyTorch, and more.

Resources

Last modified on April 17, 2026