mirror of
https://git.freebsd.org/ports.git
synced 2025-07-06 20:09:14 -04:00
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
13 lines
640 B
Text
13 lines
640 B
Text
aiofiles is an Apache2 licensed library, written in Python, for handling local
|
|
disk files in asyncio applications.
|
|
|
|
Ordinary local file IO is blocking, and cannot easily and portably made
|
|
asynchronous. This means doing file IO may interfere with asyncio applications,
|
|
which shouldn't block the executing thread. aiofiles helps with this by
|
|
introducing asynchronous versions of files that support delegating operations to
|
|
a separate thread pool.
|
|
|
|
Features:
|
|
- a file API very similar to Python's standard, blocking API
|
|
- support for buffered and unbuffered binary files, and buffered text files
|
|
- support for async/await (PEP 492) constructs
|