aiomcache 0.8.1-2 source package in Ubuntu

Changelog

aiomcache (0.8.1-2) unstable; urgency=medium

  * Drop doc file leftover during previous upload.

 -- Gianfranco Costamagna <email address hidden>  Sun, 12 Feb 2023 13:28:33 +0100

Upload details

Uploaded by:
Gianfranco Costamagna
Uploaded to:
Sid
Original maintainer:
Gianfranco Costamagna
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
aiomcache_0.8.1-2.dsc 1.8 KiB af5b85acd916bb3ed93de488b95d93b3d6df355a1db406da74bd02ae9f98a97e
aiomcache_0.8.1.orig.tar.gz 15.1 KiB ef7dede44ccb4bbe386ff4958c45c4a17e66476c801594489ba45408adb13b7b
aiomcache_0.8.1-2.debian.tar.xz 2.1 KiB 5cd25d34b40fbefcfeb05a217210eaebdf9ac24fadf8c25aa828ff32fb2dd6e7

Available diffs

No changes file available.

Binary packages built by this source

python3-aiomcache: Minimal pure python memcached client

 memcached client for asyncio
 The API looks very similar to the other memcache clients:
 .
  .. code:: python
 .
     import asyncio
     import aiomcache
 .
     async def hello_aiomcache():
         mc = aiomcache.Client("127.0.0.1", 11211)
         await mc.set(b"some_key", b"Some value")
         value = await mc.get(b"some_key")
         print(value)
         values = await mc.multi_get(b"some_key", b"other_key")
         print(values)
         await mc.delete(b"another_key")
 .
     asyncio.run(hello_aiomcache())
 .
 .
 Version 0.8 introduces `FlagClient` which allows registering callbacks to
 set or process flags. See `examples/simple_with_flag_handler.py`