skillfed

types-aiofiles

Typing stubs for aiofiles

types-aiofiles v25.1.0.20260518 17.4M downloads/30d#1,120 on PyPI37
Permissive license Apache-2.0 Active released

What it is and what it does

types-aiofiles is a type stub package that provides type annotations for the aiofiles async file I/O library. It allows static type checkers like mypy and pyright to understand and validate code that uses aiofiles, catching type errors before runtime. The stubs are maintained as part of the typeshed project and are generated to match aiofiles 25.1.* releases.

This package has no runtime dependencies and is purely for development-time type checking. It's installed alongside aiofiles in projects that use type checking as part of their development workflow. The stubs were tested against mypy 2.1.0 and pyright 1.1.409.

Use it for:

  • Enable mypy or pyright to type-check async file operations in aiofiles-based code.
  • Catch type mismatches in file I/O calls (e.g., wrong argument types) before running tests.
  • Provide IDE autocomplete and type hints for aiofiles methods in editors that support type stubs.
  • Ensure type safety in projects using aiofiles for concurrent file handling.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Provides type hints for the aiofiles async file I/O library, enabling type checkers like mypy and pyright to validate code that uses aiofiles.

Yes, if you use aiofiles and run type checking in your project. Install it alongside aiofiles to enable static type validation. If you don't use a type checker, it provides no value. No known vulnerabilities, low friction, and actively maintained.

Install

types-aiofiles on PyPI

pip

pip install types-aiofiles

uv

uv add types-aiofiles

poetry

poetry add types-aiofiles

Installing types-aiofiles

Before you install

Low install friction with no runtime dependencies. Actively maintained as part of typeshed; last commit 2026-08-14 with release 88 days prior.

License in practice

Licensed under Apache-2.0 (permissive), imposing no restrictions on use or redistribution in most contexts.

Quickstart

pip install types-aiofiles

# In your code, type checkers will now understand aiofiles imports:
import aiofiles

async def read_file(path: str) -> str:
    async with aiofiles.open(path) as f:
        return await f.read()

Requires Python 3.10 or later. Type checking requires mypy 2.1.0, pyright 1.1.409, or compatible type checker.

Verify before relying

  • Whether types-aiofiles is automatically installed as a dependency of aiofiles or must be installed separately.
  • Coverage completeness for aiofiles 25.1.* API surface beyond what was tested with mypy 2.1.0 and pyright 1.1.409.

Package facts

License Apache-2.0 (permissive)
Python support supports the current Python release (>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies none
Maintenance actively maintained — 88 days since the last release
Last repo commit
First released
Downloads 17,405,533/month — #1,120 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: types_aiofiles-25.1.0.20260518-py3-none-any.whl

Programming Language :: Python :: 3Typing :: Stubs Only

Tags

type stubs aiofilesaiofiles type hintsasync file io typingmypy aiofilespyright type checking
type-stubstype-checking

More Software Development packages