معرفی شرکت ها


asynctempfile-0.5.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Async version of tempfile
ویژگی مقدار
سیستم عامل -
نام فایل asynctempfile-0.5.0
نام asynctempfile
نسخه کتابخانه 0.5.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده github.com/alemigo
ایمیل نویسنده -
آدرس صفحه اصلی https://github.com/alemigo/asynctempfile
آدرس اینترنتی https://pypi.org/project/asynctempfile/
مجوز -
# asynctempfile Async interface for the standard tempfile module. Implements the following 4 classes: - TemporaryFile - NamedTemporaryFile - SpooledTemporaryFile - TemporaryDirectory Blocking methods are delegated to threadpools using loop.run_in_executor(). Non-blocking methods and properties retain a sync interface. SpooledTemporaryFile only delegates if the in-memory stream is rolled to disk. New instances of the above classes return wrapped with a context manager allowing use with async with and async for. ### Installation pip install asynctempfile ### Credit An extension of github.com/Tinche/aiofiles ### Examples ``` import asynctempfile async with asynctempfile.TemporaryFile('wb+') as f: await f.write(b'Hello, World!') ``` ``` import asynctempfile async with asynctempfile.NamedTemporaryFile('wb+') as f: await f.write(b'Line1\n Line2') await f.seek(0) async for line in f: print(line) ``` ### Dependencies aiofiles ### Release Notes **0.5.0** * Adjusted TemporaryDirectory to return its path as opposed to the object when used with a context manager, aligning behaviour with the sync library (thank you to hellocoldworld). * Fixed name attribute for TemporaryFile as this property is now included in the aiofiles wrapper.


نیازمندی

مقدار نام
>=0.6.0 aiofiles


نحوه نصب


نصب پکیج whl asynctempfile-0.5.0:

    pip install asynctempfile-0.5.0.whl


نصب پکیج tar.gz asynctempfile-0.5.0:

    pip install asynctempfile-0.5.0.tar.gz