Thanks to visit codestin.com
Credit goes to www.libhunt.com

Python Pydantic

Open-source Python projects categorized as Pydantic

Top 23 Python Pydantic Projects

  1. fastapi

    FastAPI framework, high performance, easy to learn, fast to code, ready for production

    Project mention: Show HN: FastAPI LSP/VSCode Extension POC | news.ycombinator.com | 2025-11-11
  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. pydantic

    Data validation using Python type hints

    Project mention: I built binary serializer for Pydantic models that's up to 7× smaller than JSON | news.ycombinator.com | 2025-10-25

    Found in issue where maintainer answered that they are only going to support JSON

    https://github.com/pydantic/pydantic/discussions/4097

  4. sqlmodel

    SQL databases in Python, designed for simplicity, compatibility, and robustness.

    Project mention: Architecture Patterns with Python | news.ycombinator.com | 2025-03-28

    an SQLModel entity backed by a database table doesn't validate its fields on creation, which is the point of Pydantic.

    https://github.com/fastapi/sqlmodel/issues/52#issuecomment-1...

  5. pydantic-ai

    GenAI Agent Framework, the Pydantic way

    Project mention: Structured Outputs on the Claude Developer Platform (API) | news.ycombinator.com | 2025-11-14
  6. FastUI

    Build better UIs faster.

    Project mention: Show HN: Next.js-like Python web framework, built for Htmx with FastAPI | news.ycombinator.com | 2025-10-01

    Would be cool if it was opiniated with ready to use and interactive components like in FastUI (https://github.com/pydantic/FastUI)

    If you do this, i'll use it. But maybe that's not the goal?

    That’s how I like to use them framework to quickly bootstrap a project in Python only.

    I've started working on a FastAPI with HTMX wrapper also 4 days ago, it's not as advanced as your projects tho. There's not much there yet, but here's the link: https://github.com/lakonguina/devanture

  7. django-ninja

    💨 Fast, Async-ready, Openapi, type hints based framework for building APIs

    Project mention: Django 5.2 Released | news.ycombinator.com | 2025-04-02

    If you're looking for a mixture of the two, there's Django Ninja: https://django-ninja.dev

  8. litestar

    Light, flexible and extensible ASGI framework | Built to scale

    Project mention: Hyperflask – Full stack Flask and Htmx framework | news.ycombinator.com | 2025-10-16

    A lot of people in this thread mentioning the limitations of Flask and “why not FastAPI” etc - but I’ve found Litestar to be the best alternative and it has htmx support out of the box.

    https://litestar.dev/

  9. Stream

    Stream - Scalable APIs for Chat, Feeds, Moderation, & Video. Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.

    Stream logo
  10. logfire

    Uncomplicated Observability for Python and beyond! 🪵🔥

  11. datamodel-code-generator

    Pydantic model and dataclasses.dataclass generator for easy conversion of JSON, OpenAPI, JSON Schema, and YAML data sources.

  12. vizro

    Vizro is a low-code toolkit for building high-quality data visualization apps.

  13. rocketry

    Modern scheduling library for Python

  14. tracecat

    All-in-one AI automation platform (workflows, agents, cases, tables) for security, IT, and infra teams.

    Project mention: N8n added native persistent storage with DataTables | news.ycombinator.com | 2025-10-02
  15. opyrator

    🪄 Turns your machine learning code into microservices with web API, interactive GUI, and more.

  16. docarray

    Represent, send, store and search multimodal data

  17. uvicorn-gunicorn-fastapi-docker

    Docker image with Uvicorn managed by Gunicorn for high-performance FastAPI web applications in Python with performance auto-tuning.

  18. beanie

    Asynchronous Python ODM for MongoDB

  19. magentic

    Seamlessly integrate LLMs as Python functions

    Project mention: Using LLMs in 3 lines of Python | dev.to | 2025-06-30

    #!/usr/bin/env -S uv run --script # /// script # requires-python = ">=3.10" # dependencies = [ # "fire", # "magentic", # "pydantic", # ] # /// from fire import Fire from magentic import chatprompt, AssistantMessage, SystemMessage, UserMessage from pydantic import BaseModel # this is a modified version of magentic's example chatprompt code # https://magentic.dev/#chatprompt class Quote(BaseModel): quote: str character: str @chatprompt( SystemMessage("You are a movie buff."), UserMessage("What is your favorite quote from Harry Potter?"), AssistantMessage( Quote( quote="It does not do to dwell on dreams and forget to live.", character="Albus Dumbledore", ) ), UserMessage("What is your favorite quote from {movie}?"), ) def get_movie_quote(movie: str) -> Quote: ... if __name__=="__main__": Fire(get_movie_quote)

  20. ormar

    python async orm with fastapi in mind and pydantic validation

  21. pydantic-core

    Core validation logic for pydantic written in rust

  22. fastcrud

    FastCRUD is a Python package for FastAPI, offering robust async CRUD operations and flexible endpoint creation utilities.

    Project mention: This Week In Python | dev.to | 2025-01-10

    fastcrud - CRUD operations for FastAPI

  23. polyfactory

    Simple and powerful factories for mock data generation

  24. redis-om-python

    Object mapping, and more, for Redis and Python

  25. pydantic-settings

    Settings management using pydantic

    Project mention: This Week In Python | dev.to | 2025-01-17

    pydantic-settings – Settings management using pydantic

  26. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

Python Pydantic discussion

Log in or Post with

Python Pydantic related posts

  • Structured Outputs on the Claude Developer Platform (API)

    7 projects | news.ycombinator.com | 14 Nov 2025
  • Show HN: rstructor, Pydantic+instructor for Rust

    2 projects | news.ycombinator.com | 31 Oct 2025
  • Hyperflask – Full stack Flask and Htmx framework

    12 projects | news.ycombinator.com | 16 Oct 2025
  • Show HN: Next.js-like Python web framework, built for Htmx with FastAPI

    4 projects | news.ycombinator.com | 1 Oct 2025
  • Build a Frontend for your ADK Agents with AG-UI

    3 projects | dev.to | 25 Sep 2025
  • Structured Outputs in LLMs

    8 projects | news.ycombinator.com | 23 Sep 2025
  • Building Production-Ready AI Agents with Pydantic AI and Amazon Bedrock AgentCore

    1 project | dev.to | 15 Sep 2025
  • A note from our sponsor - InfluxDB
    www.influxdata.com | 16 Nov 2025
    InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now. Learn more →

Index

What are some of the best open-source Pydantic projects in Python? This list will help you:

# Project Stars
1 fastapi 91,739
2 pydantic 25,768
3 sqlmodel 17,122
4 pydantic-ai 13,287
5 FastUI 8,907
6 django-ninja 8,696
7 litestar 7,636
8 logfire 3,751
9 datamodel-code-generator 3,579
10 vizro 3,469
11 rocketry 3,361
12 tracecat 3,341
13 opyrator 3,135
14 docarray 3,110
15 uvicorn-gunicorn-fastapi-docker 2,810
16 beanie 2,489
17 magentic 2,379
18 ormar 1,781
19 pydantic-core 1,722
20 fastcrud 1,384
21 polyfactory 1,333
22 redis-om-python 1,269
23 pydantic-settings 1,141

Sponsored
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com

Did you know that Python is
the 2nd most popular programming language
based on number of references?