--- id: types-tabulate version: "0.10.0.20260508" license: Apache-2.0 license_treatment: permissive maintenance: active --- # types-tabulate — Typing stubs for tabulate License: permissive · Maintenance: active · Downloads: 16.0M/mo ## What it is and what it does types-tabulate is a type stub package that provides static type annotations for the tabulate library, which formats data into human-readable tables. It is part of the typeshed project and allows type checkers to understand the types and signatures of tabulate's functions and classes without modifying tabulate itself. When installed alongside tabulate, this package enables mypy, pyright, and other compatible type checkers to validate calls to tabulate functions at development time. It targets tabulate version 0.10.* and has been tested against mypy 1.20.0 and pyright 1.1.408. Since it contains no runtime code, it adds no overhead to your application. Use it for: - Enable mypy or pyright to catch type errors in code that calls tabulate functions before runtime. - Provide IDE autocomplete and inline type hints for tabulate's API in editors that support type stubs. - Ensure type safety in data formatting pipelines that use tabulate to generate reports or CLI output. - Validate that table data structures passed to tabulate match expected column and row types. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Provides type hints for the tabulate package, enabling static type checkers like mypy and pyright to validate code that formats data into tables. Yes, if you use tabulate and run a static type checker. It has no runtime cost, low install friction, and is actively maintained. Install it only if you are already using tabulate and want type checking; it is not useful on its own. ## Install pip install types-tabulate uv add types-tabulate poetry add types-tabulate ## Installing types-tabulate Before you install: Low friction install with no runtime dependencies. Actively maintained as part of typeshed; last commit 2026-08-14. Tested against mypy 1.20.0 and pyright 1.1.408. License in practice: Apache-2.0 permissive license; no restrictions on use or modification in most contexts. Quickstart: pip install types-tabulate # In your code using tabulate: import tabulate data = [["Name", "Age"], ["Alice", "Bob"]] print(tabulate.tabulate(data)) Requires Python 3.10 or later. Verify before relying: - Whether these stubs are compatible with tabulate versions outside the 0.10.* series - Whether the stubs cover the full public API surface of tabulate 0.10.* ## Package facts - License: Apache-2.0 (permissive) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 16.0M/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags type stubs for tabulate, tabulate type hints, mypy stubs tabulate, static typing table formatting, pyright tabulate annotations, type-stubs, static-typing [View on SkillFed](https://skillfed.io/packages/types-tabulate) · [View on PyPI](https://pypi.org/project/types-tabulate/)