Metadata-Version: 2.4
Name: types-libtorrent
Version: 2.0.11.20250816
Summary: Type stubs for python-libtorrent
Author-email: David White <david@runonflux.io>
License-Expression: MIT
Project-URL: Homepage, https://github.com/python/typeshed
Project-URL: Repository, https://github.com/python/typeshed
Keywords: typing,stubs,libtorrent,bittorrent
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet :: File Transfer Protocol (FTP)
Classifier: Topic :: System :: Networking
Classifier: Typing :: Stubs Only
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# types-libtorrent

Type stubs for [python-libtorrent](https://pypi.org/project/python-libtorrent/) 2.0.11

This package provides type stubs for the python-libtorrent library, enabling static type checking and improved IDE support when working with libtorrent in Python.

## Installation

```bash
pip install types-libtorrent
```

## Usage

After installation, type checkers like mypy, PyCharm, or VS Code will automatically use these stubs when working with the `libtorrent` module.

```python
import libtorrent as lt

# Now with full type support
session = lt.session()
```

## Compatibility

This stub package is compatible with:
- python-libtorrent 2.0.11.*
- Python 3.8+

## Version Scheme

The version number follows the pattern: `{libtorrent_version}.{stub_date}`
- `2.0.11` - Compatible with libtorrent 2.0.11.*
- `20250815` - Stubs created/updated on August 15, 2025

## License

MIT License
