├── .github ├── FUNDING.yml └── workflows │ └── python-package.yml ├── .gitignore ├── AUTHORS.md ├── CONTRIBUTING.md ├── HISTORY.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── cached_property.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── test_async_cached_property.py ├── test_cached_property.py └── test_coroutine_cached_property.py └── tox.ini /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/cached-property/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/cached-property/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/cached-property/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/cached-property/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/cached-property/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/cached-property/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/cached-property/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/cached-property/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/cached-property/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/cached-property/HEAD/README.md -------------------------------------------------------------------------------- /cached_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/cached-property/HEAD/cached_property.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/cached-property/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 0 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/cached-property/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_async_cached_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/cached-property/HEAD/tests/test_async_cached_property.py -------------------------------------------------------------------------------- /tests/test_cached_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/cached-property/HEAD/tests/test_cached_property.py -------------------------------------------------------------------------------- /tests/test_coroutine_cached_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/cached-property/HEAD/tests/test_coroutine_cached_property.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydanny/cached-property/HEAD/tox.ini --------------------------------------------------------------------------------