Skip to main content

Provides decorators that are inspired by and work closely with cachetools' for caching asyncio functions and methods.

Project description

cachetools_async

Latest pypi version Test Coverage License

This module provides decorators for Python asyncio coroutine functions to support memoization. These are compatible, and can be considered extending the functionality of cachetools.

from cachetools import LRUCache, TTLCache
from cachetools_async import cached

# Dependencies for our examples
import aiohttp
import python_weather

# cache least recently used Python Enhancement Proposals
@cached(cache=LRUCache(maxsize=32))
async def get_pep(num: int):
    pep_url = 'http://www.python.org/dev/peps/pep-%04d/' % num
    async with aiohttp.ClientSession() as session:
        async with session.get(pep_url) as response:
            return await response.text()


# cache weather data for no longer than ten minutes
@cached(cache=TTLCache(maxsize=1024, ttl=600))
async def get_weather(place):
    async with python_weather.Client(unit=python_weather.METRIC) as client:
        return await client.get(place)

This module supports the same definition of a cache as cachetools does - a mutable mapping of a fixed maximum size. The cache itself is not asynchronous, even when the functions that are being cached are.

Note that once you call a function once, subsequent calls before the initial call completes will wait until the first complete. To help understand this, take the example from before. However, let's imagine we need to get weather for multiple locations at once, too.

from cachetools import LRUCache, TTLCache
from cachetools_async import cached
import asyncio
import python_weather

@cached(cache=TTLCache(maxsize=1024, ttl=600))
async def get_weather(place):
    async with python_weather.Client(unit=python_weather.METRIC) as client:
        return await client.get(place)

async def get_multiple_weather(places):
    return await asyncio.gather(
        get_weather(place)
        for place in places
    )

get_multiple_weather([
    "New York",
    "London",
    "London",
    "Miami",
    "New York",
    "Miami",
    "London",
    "New York",
])

Even though they all occur in parallel with 8 weather reports, the cached decorator will ensure only 3 requests for weather would actually be made.

Installation

cachetools_async is available via PyPi and can be installed as such in your package manager of choice.

Poetry

poetry add cachetools_async

Rye

rye add "cachetools_async"

Pip

pip install cachetools_async

License

Licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cachetools_async-0.0.5.tar.gz (24.8 kB view details)

Uploaded Source

Built Distribution

cachetools_async-0.0.5-py3-none-any.whl (4.8 kB view details)

Uploaded Python 3

File details

Details for the file cachetools_async-0.0.5.tar.gz.

File metadata

  • Download URL: cachetools_async-0.0.5.tar.gz
  • Upload date:
  • Size: 24.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.7.12

File hashes

Hashes for cachetools_async-0.0.5.tar.gz
Algorithm Hash digest
SHA256 e99ec8f3a78e82b4f524e78f01d15b8746531481d862ac4f2d8af2a686e1c571
MD5 0d288e8c573288ca7b9a8aff63cfb4ff
BLAKE2b-256 596d01404fffea95b33d186a4d921b141918c0daf3ff74b6a715c0ac2de8f42e

See more details on using hashes here.

File details

Details for the file cachetools_async-0.0.5-py3-none-any.whl.

File metadata

File hashes

Hashes for cachetools_async-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 8f690c8bc291718a652395832e90afa797195c838e98d6a9e530dc1de66fbc34
MD5 e8a9ecf7f2fb1ab950810226eaeb1a16
BLAKE2b-256 b5fa136f97313ab298286725fc8004d44f5fc352ea416c2b874b7a91e83df66a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page