Metadata-Version: 2.4
Name: types-ibapi
Version: 10.26.3
Summary: This is the Python package types-ibapi.
Project-URL: Homepage, https://github.com/hktonylee/ibapi_stubs
Project-URL: Repository, https://github.com/hktonylee/ibapi_stubs
Author-email: Tony Lee <iamtonylee@gmail.com>
License: MIT
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Typing :: Stubs Only
Requires-Python: >=3.8
Provides-Extra: dev
Requires-Dist: pytest; extra == 'dev'
Description-Content-Type: text/markdown

# Welcome

This is the Python package types-ibapi. This adds type stubs for the `ibapi` package for more reliable type checking.

## Usage

You can use this package in your project by adding the following to your pre-commit hooks or `mypy.ini` file:

```yaml
  - repo: https://github.com/pre-commit/mirrors-mypy
    rev: v1.15.0
    hooks:
      - id: mypy
        args: []
        additional_dependencies:
          - pytest
          - numpy
          - types-ibapi  # <---------
```
