async_property icon indicating copy to clipboard operation
async_property copied to clipboard

Python decorator for async properties.

Results 9 async_property issues
Sort by recently updated
recently updated
newest added

* async_property version: 0.2.1 * Python version: 3.8.2 * Operating System: Ubuntu ### Description I'm trying to use `async_property` on an async generator. The goal is to allow using a...

* async_property version: 0.2.1 * Python version: 3.8.1 * Operating System: OS X 10.14.6 * iPython version: 7.11.1 ### Description Trying to test the output of a cached attribute from...

* async_property version: 0.2.2 * Python version: 3.10 * Operating System: Windows ### Description I am having problems with pyright because of the types. when I try to await an...

Bumps [certifi](https://github.com/certifi/python-certifi) from 2023.5.7 to 2023.7.22. Commits 8fb96ed 2023.07.22 afe7722 Bump actions/setup-python from 4.6.1 to 4.7.0 (#230) 2038739 Bump dessant/lock-threads from 3.0.0 to 4.0.1 (#229) 44df761 Hash pin Actions and...

dependencies

* async_property version: 0.2.2 * Python version: 3.11.9 * Operating System: Windows 11 ### Description I created an async property. It needed a setter, so I made a synchronous setter...

After the cache value is loaded, the asyncio.Lock is not used again. This PR pops it from the instance state after loading to keep resource consumption to a minimum.

The code of a cached_property can run more than once in the following situation: 1: current_task awaits a long running method decorated with async_cached_property 2: second_task also awaits the same...