Type stubs for openpyxl


Keywords
utility, mypy, stubs, openpyxl, python, types, typing
License
MIT
Install
pip install openpyxl-stubs==0.1.19

Documentation

PyPI version Code on Github Code style: black GitHub last commit

openpyxl-stubs

Add types for openpyxl for mypy.

Installation

$ pip install openpyxl-stubs

Usage

Mypy will automatically use the type annotations in this package, once it is installed. You just need to annotate your code:

from typing import Optional
from flask_httpauth import HTTPAuth, Authorization


def foo(bar: HTTPAuth) -> Optional[Authorization]:
    return bar.get_auth()

For general hints how to use type annotations, please read Type Annotations in Python 3.8