Metadata-Version: 2.4
Name: fastdown
Version: 0.1.2
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Rust
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: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS
License-File: LICENSE
Summary: fast-down 的 python 接口:
Keywords: downloader,multithreaded,rust,asyncio
Author-email: share121 <me@s121.top>
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Homepage, https://github.com/fast-down/fast-down-py
Project-URL: Issues, https://github.com/fast-down/fast-down-py/issues
Project-URL: Repository, https://github.com/fast-down/fast-down-py.git

# fastdown

[![GitHub last commit](https://img.shields.io/github/last-commit/fast-down/fast-down-py/main)](https://github.com/fast-down/fast-down-py/commits/main)
[![CI](https://github.com/fast-down/fast-down-py/workflows/CI/badge.svg)](https://github.com/fast-down/fast-down-py/actions)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/fast-down/fast-down-py/blob/main/LICENSE)

`fastdown` 是一个特别快下载器，封装自 [fast-down-ffi](https://github.com/fast-down/ffi)，由 Rust 驱动，简洁易用。

## 示例

```py
import fastdown

task = await fastdown.prefetch("https://example.com/test.zip");
await task.start(task.info.filename());
```

[查看更多示例](https://github.com/fast-down/fast-down-py/blob/main/example)

