File: __init__.py

package info (click to toggle)
python-async-property 0.2.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 288 kB
  • sloc: python: 765; makefile: 87; sh: 6
file content (12 lines) | stat: -rw-r--r-- 323 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
__author__ = """Ryan Anguiano"""
__email__ = 'ryan.anguiano@gmail.com'
__version__ = '0.2.2'


from .base import async_property
from .cached import async_cached_property
from .loader import AwaitLoader
from .proxy import AwaitableOnly


__all__ = ['async_property', 'async_cached_property', 'AwaitLoader', 'AwaitableOnly']